-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Closed as not planned
Labels
Milestone
Description
This bug only appear when the language of VS is Chinese.
Version Used: VS2017 15.9.6
Steps to Reproduce:
- Create a WinForm project, and open Resources.Designer.cs, if the language is English, the summary of Culture property is:
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
If the language is Chinese, the summary of Culture property is:
/// <summary>
/// 覆盖当前线程的 CurrentUICulture 属性
/// 使用此强类型的资源类的资源查找。
/// </summary>
- Double click Resources.resx, and write any thing in String1.
Expected Behavior:
If the language is English, the summary doesn't change, but If the language is Chinese, it will become to:
/// <summary>
/// 重写当前线程的 CurrentUICulture 属性
/// 重写当前线程的 CurrentUICulture 属性。
/// </summary>
There're same text in 2 lines.
Actual Behavior: Don't change, keep:
/// <summary>
/// 覆盖当前线程的 CurrentUICulture 属性
/// 使用此强类型的资源类的资源查找。
/// </summary>