From 3ccf5d9e19239a85b84deb9c9cc84e56ad00fcbc Mon Sep 17 00:00:00 2001 From: buzzcode2007 <73412182+buzz_lightsnack_2007@users.noreply.github.com> Date: Wed, 3 Apr 2024 15:25:37 +0800 Subject: [PATCH] Update error message template in messages.json --- _locales/en/messages.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 75baca2..1bcbe47 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -176,12 +176,16 @@ } }, "error_msg_GUI": { - "message": "Unfortunately, an exception of type $error_code$ has occured. Click OK to terminate the script.", + "message": "Unfortunately, an exception of type $error_code$ has occured. $error_message$ Click OK to continue.", "description": "The error message template for a full graphical UI", "placeholders": { "error_code": { "content": "$1", "description": "The error code" + }, + "error_message": { + "content": "$2", + "description": "The error message" } } },