mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 05:51: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
|
@ -45,67 +45,67 @@ DebugPPCThreadsWindow::DebugPPCThreadsWindow(wxFrame& parent)
|
|||
// add columns
|
||||
wxListItem col0;
|
||||
col0.SetId(0);
|
||||
col0.SetText(_("Address"));
|
||||
col0.SetText("Address");
|
||||
col0.SetWidth(75);
|
||||
m_thread_list->InsertColumn(0, col0);
|
||||
wxListItem col1;
|
||||
col1.SetId(1);
|
||||
col1.SetText(_("Entry"));
|
||||
col1.SetText("Entry");
|
||||
col1.SetWidth(75);
|
||||
m_thread_list->InsertColumn(1, col1);
|
||||
wxListItem col2;
|
||||
col2.SetId(2);
|
||||
col2.SetText(_("Stack"));
|
||||
col2.SetText("Stack");
|
||||
col2.SetWidth(145);
|
||||
m_thread_list->InsertColumn(2, col2);
|
||||
wxListItem col3;
|
||||
col3.SetId(3);
|
||||
col3.SetText(_("PC"));
|
||||
col3.SetText("PC");
|
||||
col3.SetWidth(120);
|
||||
m_thread_list->InsertColumn(3, col3);
|
||||
wxListItem colLR;
|
||||
colLR.SetId(4);
|
||||
colLR.SetText(_("LR"));
|
||||
colLR.SetText("LR");
|
||||
colLR.SetWidth(75);
|
||||
m_thread_list->InsertColumn(4, colLR);
|
||||
wxListItem col4;
|
||||
col4.SetId(5);
|
||||
col4.SetText(_("State"));
|
||||
col4.SetText("State");
|
||||
col4.SetWidth(90);
|
||||
m_thread_list->InsertColumn(5, col4);
|
||||
wxListItem col5;
|
||||
col5.SetId(6);
|
||||
col5.SetText(_("Affinity"));
|
||||
col5.SetText("Affinity");
|
||||
col5.SetWidth(70);
|
||||
m_thread_list->InsertColumn(6, col5);
|
||||
wxListItem colPriority;
|
||||
colPriority.SetId(7);
|
||||
colPriority.SetText(_("Priority"));
|
||||
colPriority.SetText("Priority");
|
||||
colPriority.SetWidth(80);
|
||||
m_thread_list->InsertColumn(7, colPriority);
|
||||
wxListItem col6;
|
||||
col6.SetId(8);
|
||||
col6.SetText(_("SliceStart"));
|
||||
col6.SetText("SliceStart");
|
||||
col6.SetWidth(110);
|
||||
m_thread_list->InsertColumn(8, col6);
|
||||
wxListItem col7;
|
||||
col7.SetId(9);
|
||||
col7.SetText(_("SumWakeTime"));
|
||||
col7.SetText("SumWakeTime");
|
||||
col7.SetWidth(110);
|
||||
m_thread_list->InsertColumn(9, col7);
|
||||
wxListItem col8;
|
||||
col8.SetId(10);
|
||||
col8.SetText(_("ThreadName"));
|
||||
col8.SetText("ThreadName");
|
||||
col8.SetWidth(180);
|
||||
m_thread_list->InsertColumn(10, col8);
|
||||
wxListItem col9;
|
||||
col9.SetId(11);
|
||||
col9.SetText(_("GPR"));
|
||||
col9.SetText("GPR");
|
||||
col9.SetWidth(180);
|
||||
m_thread_list->InsertColumn(11, col9);
|
||||
wxListItem col10;
|
||||
col10.SetId(12);
|
||||
col10.SetText(_("Extra info"));
|
||||
col10.SetText("Extra info");
|
||||
col10.SetWidth(180);
|
||||
m_thread_list->InsertColumn(12, col10);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue