From da794f2127ca56df534b0af6e6af3c1584dc2771 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Pasteau?= <4895034+ClementPasteau@users.noreply.github.com> Date: Tue, 1 Sep 2026 15:17:48 +0200 Subject: [PATCH] Fix wording for save actions --- Extensions/SaveState/JsExtension.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Extensions/SaveState/JsExtension.js b/Extensions/SaveState/JsExtension.js index aa7111d2b893..922dafaea914 100644 --- a/Extensions/SaveState/JsExtension.js +++ b/Extensions/SaveState/JsExtension.js @@ -226,7 +226,7 @@ module.exports = { 'CheckSaveExistsInStorage', _('Check if a save exists in device storage'), _( - 'Check if a save with the given name exists in the device storage, and store the result (yes/no) in a variable. The check is asynchronous: use the condition "Save existence check completed" to know when the result is available.' + 'Check if a save with the given name exists in the device storage, and store the result (true/false) in a variable. The check is asynchronous: use the condition "Save existence check completed" to know when the result is available.' ), _( 'Check if save _PARAM1_ exists in device storage (result in _PARAM2_)' @@ -239,7 +239,7 @@ module.exports = { .addParameter('string', _('Storage name of the save to check'), '', false) .addParameter( 'variable', - _('Variable where to store the result (yes/no)'), + _('Variable where to store the result (true/false)'), '', false )