1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-07-15 20:25:00 +03:00

Revert "Add Traditional Chinese language"

This reverts commit 450d073213.
This commit is contained in:
holoreimu
2015-05-20 00:09:51 +08:00
parent 450d073213
commit 4af19c46ff
13 changed files with 16 additions and 7477 deletions

View File

@ -329,10 +329,6 @@ UINT UpdateNoticeDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void
{
font_name = "Microsoft YaHei";
}
else if (_GETLANG() == 3)
{
font_name = "Microsoft JhengHei";
}
}
SetFont(hWnd, S_INFO, GetFont(font_name, 11, false, false, false, false));
@ -1670,10 +1666,6 @@ HFONT GetMeiryoFontEx2(UINT font_size, bool bold)
{
return GetFont("Microsoft YaHei", font_size, bold, false, false, false);
}
else if (_GETLANG() == 3)
{
return GetFont("Microsoft JhengHei", font_size, bold, false, false, false);
}
else
{
return GetFont(NULL, font_size, bold, false, false, false);
@ -2262,11 +2254,6 @@ UINT KakushiDlgProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam, void *par
SetFont(hWnd, S_INFO, GetFont("Microsoft YaHei", 11, false, false, false, false));
b = true;
}
else if (_GETLANG() == 3)
{
SetFont(hWnd, S_INFO, GetFont("Microsoft JhengHei", 11, false, false, false, false));
b = true;
}
}
if (b == false)
@ -2878,10 +2865,6 @@ HFONT GetDialogDefaultFontEx(bool meiryo)
{
default_font_name = "Microsoft YaHei";
}
if (_GETLANG() == 3)
{
default_font_name = "Microsoft JhengHei";
}
else
{
default_font_name = GetMeiryoFontName();