From 899dfd83c8a2237d51e9df5e31f7d0ba0053a6b7 Mon Sep 17 00:00:00 2001 From: "xin.zhang" Date: Tue, 15 Apr 2025 15:12:02 +0800 Subject: [PATCH] ENH: update text jira: [STUDIO-11495] Change-Id: If19642be0a3f6d5d8e871b6457b400fe3696b3f6 (cherry picked from commit c94057306b2176a8e8a8a99e0b8bdbdb0255417d) --- src/slic3r/GUI/DeviceManager.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/slic3r/GUI/DeviceManager.cpp b/src/slic3r/GUI/DeviceManager.cpp index c570d798af..53c118e645 100644 --- a/src/slic3r/GUI/DeviceManager.cpp +++ b/src/slic3r/GUI/DeviceManager.cpp @@ -1770,11 +1770,11 @@ bool MachineObject::canEnableTimelapse(wxString &error_message) const if (sdcard_state != MachineObject::SdcardState::HAS_SDCARD_NORMAL) { if (sdcard_state == MachineObject::SdcardState::NO_SDCARD) { - error_message = _L("Timelapse is not supported while the SD card does not exist."); + error_message = _L("Timelapse is not supported while the storage does not exist."); } else if (sdcard_state == MachineObject::SdcardState::HAS_SDCARD_ABNORMAL) { - error_message = _L("Timelapse is not supported while the SD card is unavailable."); + error_message = _L("Timelapse is not supported while the storage is unavailable."); } else if (sdcard_state == MachineObject::SdcardState::HAS_SDCARD_READONLY) { - error_message = _L("Timelapse is not supported while the SD card is readonly."); + error_message = _L("Timelapse is not supported while the storage is readonly."); } return false;