From 3d2c4a35e3390a0ba4843c9536a330e76c16f44b Mon Sep 17 00:00:00 2001 From: Matthew Date: Sun, 2 Jun 2024 09:00:57 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=96=87=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/cpp/PhoneDevice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/cpp/PhoneDevice.cpp b/app/src/main/cpp/PhoneDevice.cpp index ab88b879..a303882b 100644 --- a/app/src/main/cpp/PhoneDevice.cpp +++ b/app/src/main/cpp/PhoneDevice.cpp @@ -389,7 +389,7 @@ bool CPhoneDevice::SelfTest(std::string& result) fs::space_info si = fs::space("/data"); double fr = ((double)si.available * 100.0f) / ((double)si.capacity); - result += "存储剩余:"; + result += "可用存储:"; result += std::to_string((int)fr); result += "%%\r\n";