Browse Source

Add option resource string

pull/3497/head
Siegfried Pammer 1 week ago
parent
commit
364c415d26
  1. 9
      ILSpy/Properties/Resources.Designer.cs
  2. 3
      ILSpy/Properties/Resources.resx
  3. 3
      ILSpy/Properties/Resources.zh-Hans.resx

9
ILSpy/Properties/Resources.Designer.cs generated

@ -1514,6 +1514,15 @@ namespace ICSharpCode.ILSpy.Properties { @@ -1514,6 +1514,15 @@ namespace ICSharpCode.ILSpy.Properties {
}
}
/// <summary>
/// Looks up a localized string similar to Use new T() instead of Activator.CreateInstance&lt;T&gt;.
/// </summary>
public static string DecompilerSettings_UseObjectCreationOfGenericTypeParameter {
get {
return ResourceManager.GetString("DecompilerSettings.UseObjectCreationOfGenericTypeParameter", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Use out variable declarations.
/// </summary>

3
ILSpy/Properties/Resources.resx

@ -525,6 +525,9 @@ Are you sure you want to continue?</value> @@ -525,6 +525,9 @@ Are you sure you want to continue?</value>
<data name="DecompilerSettings.UseNonTrailingNamedArguments" xml:space="preserve">
<value>Use non-trailing named arguments</value>
</data>
<data name="DecompilerSettings.UseObjectCreationOfGenericTypeParameter" xml:space="preserve">
<value>Use new T() instead of Activator.CreateInstance&lt;T&gt;</value>
</data>
<data name="DecompilerSettings.UseOutVariableDeclarations" xml:space="preserve">
<value>Use out variable declarations</value>
</data>

3
ILSpy/Properties/Resources.zh-Hans.resx

@ -492,6 +492,9 @@ @@ -492,6 +492,9 @@
<data name="DecompilerSettings.UseNonTrailingNamedArguments" xml:space="preserve">
<value>使用非尾随命名参数</value>
</data>
<data name="DecompilerSettings.UseObjectCreationOfGenericTypeParameter" xml:space="preserve">
<value />
</data>
<data name="DecompilerSettings.UseOutVariableDeclarations" xml:space="preserve">
<value>使用 out 变量声明</value>
</data>

Loading…
Cancel
Save