mirror of
https://github.com/electronicarts/CNC_TS_and_RA2_Mission_Editor.git
synced 2025-07-18 04:06:42 -04:00
L10n/chinese translation (#5)
* hotkey tips using \t . * simplified edit menu translation (ZH_CN) * refactored GetLanguageStringACP and implemented 'TranslateDlgItem' and 'TranslateWindowCaption' helper function . --------- Co-authored-by: shuiping233 <49360196+shuiping233@users.noreply.github.com>
This commit is contained in:
parent
1672fd8901
commit
f0d808a912
45 changed files with 1162 additions and 533 deletions
|
@ -68,6 +68,8 @@ BOOL CNewRA2HouseDlg::OnInitDialog()
|
|||
{
|
||||
CDialog::OnInitDialog();
|
||||
|
||||
translateUI();
|
||||
|
||||
CComboBox* country = (CComboBox*)GetDlgItem(IDC_COUNTRY);
|
||||
|
||||
for (auto const& [seq, id] : rules[HOUSES]) {
|
||||
|
@ -81,3 +83,12 @@ BOOL CNewRA2HouseDlg::OnInitDialog()
|
|||
return TRUE; // return TRUE unless you set the focus to a control
|
||||
// EXCEPTION: OCX-Eigenschaftenseiten sollten FALSE zurückgeben
|
||||
}
|
||||
|
||||
void CNewRA2HouseDlg::translateUI()
|
||||
{
|
||||
TranslateWindowCaption(*this, "NewRA2HouseDlgCaption");
|
||||
|
||||
TranslateDlgItem(*this, IDC_NEWHOUSE_PARERNT, "NewRA2HouseDlgChooseParent");
|
||||
TranslateDlgItem(*this, IDOK, "OK");
|
||||
TranslateDlgItem(*this, IDCANCEL, "Cancel");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue