Feature: Add language support (beta, not completed)

This commit is contained in:
yuanyuanxiang
2026-01-27 21:48:46 +01:00
parent 02ce01d5e7
commit 05a11605a4
70 changed files with 3895 additions and 906 deletions

View File

@@ -220,7 +220,7 @@ void CSplashDlg::OnPaint()
// 绘制进度百分比
CString strPercent;
strPercent.Format(_T("%d%%"), m_nProgress);
strPercent.FormatL(_T("%d%%"), m_nProgress);
memDC.SetTextColor(RGB(100, 200, 255));
textRect = CRect(rect.Width() - 80, 150, rect.Width() - 30, 180);
memDC.DrawText(strPercent, textRect, DT_RIGHT | DT_SINGLELINE | DT_VCENTER);