From 93b45bdc2dc167030f06fade2b8fa29ed358a0e7 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Wed, 8 Nov 2023 15:01:20 +0100 Subject: [PATCH] FTP: changed reset all emulators message --- tools/configurator.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/configurator.sh b/tools/configurator.sh index f9ddc809..0656a12e 100644 --- a/tools/configurator.sh +++ b/tools/configurator.sh @@ -989,7 +989,7 @@ configurator_reset_dialog() { --window-icon="/app/share/icons/hicolor/scalable/apps/net.retrodeck.retrodeck.svg" --width=1200 --height=720 \ --column="Choice" --column="Action" \ "Reset Specific Emulator" "Reset only one specific emulator to default settings" \ - "Reset All Emulators" "Reset all emulators to default settings" \ + "Reset All Emulators" "Reset all emulators and FTP server to their default settings" \ "Reset RetroDECK" "Reset RetroDECK to default settings" ) case $choice in @@ -1044,7 +1044,7 @@ configurator_reset_dialog() { ;; "Reset All Emulators" ) - if [[ $(configurator_reset_confirmation_dialog "all emulators" "Are you sure you want to reset all emulators to default settings?\n\nThis process cannot be undone.") == "true" ]]; then + if [[ $(configurator_reset_confirmation_dialog "all emulators" "Are you sure you want to reset all emulators and FTP server to their default settings?\n\nThis process cannot be undone.") == "true" ]]; then ( prepare_emulator "reset" "all" ) |