mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
- translation fixes for issue #342. (I hope)
This commit is contained in:
parent
3ac8ecdc5c
commit
d5f0ca6e01
BIN
out/boot.dol
BIN
out/boot.dol
Binary file not shown.
Before Width: | Height: | Size: 4.4 MiB After Width: | Height: | Size: 4.4 MiB |
@ -970,6 +970,7 @@ private:
|
||||
void _getSFlowBgTex();
|
||||
|
||||
// misc functions
|
||||
void listThemes(const char * path, vector<string> &themes);
|
||||
void _resetGCSettings(const string &id);
|
||||
void RemoveCover(const char *id);
|
||||
void _setPartition(s8 direction = 0, u8 partition = 0, u8 coverflow = 0);
|
||||
|
@ -39,7 +39,7 @@ void CMenu::_showBoot()
|
||||
if(cur_ios > 0)
|
||||
m_btnMgr.setText(m_configLbl2Val, wfmt(L"%i", cur_ios));
|
||||
else
|
||||
m_btnMgr.setText(m_configLbl2Val, _t("GC_Auto", L"AUTO"));// cIOS 249 unless the user changed it via the meta.xml
|
||||
m_btnMgr.setText(m_configLbl2Val, _t("GC_Auto", L"Auto"));// cIOS 249 unless the user changed it via the meta.xml
|
||||
m_btnMgr.setText(m_configBtn3, wfmt(L"%i", set_port));
|
||||
m_btnMgr.setText(m_configBtn4, m_cfg.getBool("GENERAL", "sd_only") ? _t("yes", L"Yes") : _t("no", L"No"));
|
||||
|
||||
|
@ -106,7 +106,7 @@ const CMenu::SOption CMenu::_vidModePatch[4] = {
|
||||
};
|
||||
|
||||
const CMenu::SOption CMenu::_hooktype[8] = {
|
||||
{ "hook_auto", L"AUTO" },
|
||||
{ "GC_Auto", L"Auto" },
|
||||
{ "hooktype1", L"VBI" },
|
||||
{ "hooktype2", L"KPAD read" },
|
||||
{ "hooktype3", L"Joypad" },
|
||||
@ -257,7 +257,7 @@ void CMenu::_showConfigGame()
|
||||
if(i > 0)
|
||||
m_btnMgr.setText(m_configLbl2Val, wfmt(L"%i", i));
|
||||
else
|
||||
m_btnMgr.setText(m_configLbl2Val, L"AUTO");
|
||||
m_btnMgr.setText(m_configLbl2Val, _t("GC_Auto", L"Auto"));
|
||||
|
||||
i = min(m_gcfg2.getUInt(id, "language", 0), ARRAY_SIZE(CMenu::_languages) - 1u);
|
||||
m_btnMgr.setText(m_configLbl3Val, _t(CMenu::_languages[i].id, CMenu::_languages[i].text));
|
||||
@ -604,7 +604,7 @@ void CMenu::_configGame(const dir_discHdr *hdr, bool disc)
|
||||
if(i > 0)
|
||||
m_btnMgr.setText(m_configLbl2Val, wfmt(L"%i", i));
|
||||
else
|
||||
m_btnMgr.setText(m_configLbl2Val, L"AUTO");
|
||||
m_btnMgr.setText(m_configLbl2Val, _t("GC_Auto", L"Auto"));
|
||||
}
|
||||
}
|
||||
else if(m_btnMgr.selected(m_configBtn3P) || m_btnMgr.selected(m_configBtn3M))
|
||||
|
@ -21,7 +21,7 @@ void AddLanguage(char *Path)
|
||||
languages_available.push_back(lng);
|
||||
}
|
||||
|
||||
void listThemes(const char * path, vector<string> &themes)
|
||||
void CMenu::listThemes(const char * path, vector<string> &themes)
|
||||
{
|
||||
DIR *d;
|
||||
struct dirent *dir;
|
||||
@ -43,7 +43,7 @@ void listThemes(const char * path, vector<string> &themes)
|
||||
closedir(d);
|
||||
}
|
||||
if(!def)
|
||||
themes.push_back("Default");
|
||||
themes.push_back(_t("def", L"Default").toUTF8());
|
||||
sort(themes.begin(), themes.end());
|
||||
}
|
||||
|
||||
|
@ -331,10 +331,12 @@ int CMenu::_NandEmuCfg(void)
|
||||
m_btnMgr.setText(m_nandfinLblDialog, wfmt(_fmt("cfgne14", L"Extracted: %d saves / %d files / %d folders"), m_nandexentry, m_filesdone, m_foldersdone));
|
||||
else
|
||||
m_btnMgr.setText(m_nandfinLblDialog, wfmt(_fmt("cfgne15", L"Extracted: %d files / %d folders"), m_filesdone, m_foldersdone));
|
||||
wstringEx total_size;
|
||||
if(m_dumpsize/0x400 > 0x270f)
|
||||
m_btnMgr.setText(m_nandemuLblDialog, wfmt(_fmt("cfgne16", L"Total size: %uMB (%d blocks)"), (m_dumpsize/0x100000), (m_dumpsize/0x8000)>>2));
|
||||
total_size = wfmt(_fmt("cfgne16", L"Total size: %uMB (%d blocks)"), (m_dumpsize/0x100000), (m_dumpsize/0x8000)>>2);
|
||||
else
|
||||
m_btnMgr.setText(m_nandemuLblDialog, wfmt(_fmt("cfgne17", L"Total size: %uKB (%d blocks)"), (m_dumpsize/0x400), (m_dumpsize/0x8000)>>2));
|
||||
total_size = wfmt(_fmt("cfgne17", L"Total size: %uKB (%d blocks)"), (m_dumpsize/0x400), (m_dumpsize/0x8000)>>2);
|
||||
m_btnMgr.setText(m_nandemuLblDialog, total_size);
|
||||
m_btnMgr.show(m_nandemuBtnBack);
|
||||
m_btnMgr.show(m_nandfinLblDialog);
|
||||
while(!m_exit)
|
||||
|
Loading…
Reference in New Issue
Block a user