GUI: Disable translations in the HelpDialog

MacFonts have only ASCII, not even accented characters, making
all of the translation renderings broken.
This commit is contained in:
Eugene Sandulenko 2023-12-31 09:49:36 +01:00
parent 7b0ea872e5
commit be1781ea40
No known key found for this signature in database
GPG key ID: 014D387312D34F08

View file

@ -130,7 +130,7 @@ _s(
void HelpDialog::addTabs(const char * const *tabData) {
while (*tabData) {
Common::U32String tabName(_(*tabData++));
Common::U32String tabName(*tabData++);
const char *imagePack = nullptr;
if (*tabData && **tabData)
@ -138,7 +138,7 @@ void HelpDialog::addTabs(const char * const *tabData) {
tabData++;
Common::U32String tabText(_(*tabData++));
Common::U32String tabText(*tabData++);
_tab->addTab(tabName, "HelpContentDialog", false);