Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add chinese translation #337

Merged
merged 6 commits into from
Jul 16, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2256,6 +2256,9 @@
<data name="CloseOldInMemoryModules" xml:space="preserve">
<value>关闭过时的内存缓存模块</value>
</data>
<data name="CloseAllFrameworkAssembliesCommand" xml:space="preserve">
<value>关闭所有运行库框架程序集</value>
</data>
<data name="CloseAllMissingFilesCommand" xml:space="preserve">
<value>关闭所有已丢失的文件</value>
</data>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1324,6 +1324,15 @@
<data name="DbgSettings_EnableManagedDebuggingAssistants" xml:space="preserve">
<value>启用托管调试助手 (MDA)</value>
</data>
<data name="DbgSettings_EnableJustMyCodeDebugging" xml:space="preserve">
<value>启用"仅我的代码"</value>
</data>
<data name="DbgSettings_StepOverCodeInSystemModules" xml:space="preserve">
<value>跳过系统模块中的代码(系统自带程序集)</value>
</data>
<data name="DbgSettings_OnlyStepIntoCodeInPrimaryModule" xml:space="preserve">
<value>仅进入主模块中的代码</value>
</data>
<data name="DebugStepProcessError" xml:space="preserve">
<value>无法单步执行: {0}</value>
</data>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,16 +133,16 @@
<value>优化代码</value>
</data>
<data name="CompilerSettings_OptionCompareBinary" xml:space="preserve">
<value>Option Compare Binary</value>
<value>Option Compare Binary (以二进制方式进行字符比较)</value>
</data>
<data name="CompilerSettings_OptionExplicit" xml:space="preserve">
<value>Option Explicit</value>
<value>Option Explicit (强制显式声明变量)</value>
</data>
<data name="CompilerSettings_OptionInfer" xml:space="preserve">
<value>Option Infer</value>
<value>Option Infer (允许编译器推断数据类型)</value>
</data>
<data name="CompilerSettings_OptionStrict" xml:space="preserve">
<value>Option Strict</value>
<value>Option Strict (保证数值变量精度)</value>
</data>
<data name="CompilerSettings_PreprocessorSymbols" xml:space="preserve">
<value>条件编译符号</value>
Expand Down