summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2025-02-23 23:06:41 +0100
committerJosJuice <josjuice@gmail.com>2025-02-23 23:09:24 +0100
commit0f8359849377ff81968d6fb336042cf8db04b001 (patch)
tree1765b4fdc1d8a0d077196f836048b5e929d06013
parentddb0e1e309d176ea1ba9e8dc33cb76e47ff6681e (diff)
Common: Make SD pack/unpack strings translatable
Regression from adc5b81.
-rw-r--r--Source/Core/Common/FatFsUtil.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Core/Common/FatFsUtil.h b/Source/Core/Common/FatFsUtil.h
index beb6c98208..8c623d7496 100644
--- a/Source/Core/Common/FatFsUtil.h
+++ b/Source/Core/Common/FatFsUtil.h
@@ -5,12 +5,13 @@
#include <functional>
+#include "Common/Common.h"
#include "Common/CommonTypes.h"
namespace Common
{
-static constexpr auto SD_PACK_TEXT = "Pack SD Card Now";
-static constexpr auto SD_UNPACK_TEXT = "Unpack SD Card Now";
+static constexpr auto SD_PACK_TEXT = _trans("Pack SD Card Now");
+static constexpr auto SD_UNPACK_TEXT = _trans("Unpack SD Card Now");
bool SyncSDFolderToSDImage(const std::function<bool()>& cancelled, bool deterministic);
bool SyncSDImageToSDFolder(const std::function<bool()>& cancelled);