1
0
Fork 0
mirror of https://github.com/dolphin-emu/dolphin.git synced 2025-03-06 21:00:21 +01:00

Merge pull request #13370 from JosJuice/i18n-pack-sd

Common: Make SD pack/unpack strings translatable
This commit is contained in:
JosJuice 2025-02-24 18:57:55 +01:00 committed by GitHub
commit 7679b0e955
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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);