mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-05 14:31:17 +12:00
Additional localization fixes (#966)
This commit is contained in:
parent
c66ab0c51a
commit
96800c6f97
16 changed files with 68 additions and 123 deletions
|
@ -963,20 +963,20 @@ wxString wxTitleManagerList::GetTitleEntryText(const TitleEntry& entry, ItemColu
|
|||
return wxEmptyString;
|
||||
}
|
||||
|
||||
std::string wxTitleManagerList::GetTranslatedTitleEntryType(EntryType type)
|
||||
wxString wxTitleManagerList::GetTranslatedTitleEntryType(EntryType type)
|
||||
{
|
||||
switch (type)
|
||||
{
|
||||
case EntryType::Base:
|
||||
return _("base").utf8_string();
|
||||
return _("base");
|
||||
case EntryType::Update:
|
||||
return _("update").utf8_string();
|
||||
return _("update");
|
||||
case EntryType::Dlc:
|
||||
return _("DLC").utf8_string();
|
||||
return _("DLC");
|
||||
case EntryType::Save:
|
||||
return _("save").utf8_string();
|
||||
return _("save");
|
||||
case EntryType::System:
|
||||
return _("system").utf8_string();
|
||||
return _("system");
|
||||
default:
|
||||
return std::to_string(static_cast<std::underlying_type_t<EntryType>>(type));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue