mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 21:41:19 +12:00
Miscellaneous translatable strings improvements and fixes (#159)
* Make PPC threads/texture cache info window columns untranslatable * Make several window titles translatable * Make About window text translatable * Fix <profile name> placeholder not being recognized as translatable * Miscellaneous improvements to GUI strings * Add a few missing entries to gitignore * Adjust Italian translation of Linux files
This commit is contained in:
parent
1a1de370e4
commit
d22901be1c
24 changed files with 79 additions and 78 deletions
|
@ -166,13 +166,13 @@ GameUpdateWindow::GameUpdateWindow(wxWindow& parent, const fs::path& filePath)
|
|||
TitleIdParser tip(GetTitleId());
|
||||
|
||||
if (tip.GetType() == TitleIdParser::TITLE_TYPE::AOC)
|
||||
SetTitle(_("Installing DLC ..."));
|
||||
SetTitle(_("Installing DLC..."));
|
||||
else if (tip.GetType() == TitleIdParser::TITLE_TYPE::BASE_TITLE_UPDATE)
|
||||
SetTitle(_("Installing update ..."));
|
||||
SetTitle(_("Installing update..."));
|
||||
else if (tip.IsSystemTitle())
|
||||
SetTitle(_("Installing system title ..."));
|
||||
SetTitle(_("Installing system title..."));
|
||||
else
|
||||
SetTitle(_("Installing title ..."));
|
||||
SetTitle(_("Installing title..."));
|
||||
|
||||
m_processBar = new wxGauge(this, wxID_ANY, 100, wxDefaultPosition, wxSize(500, 20), wxGA_HORIZONTAL);
|
||||
m_processBar->SetValue(0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue