Browse Source

Chinese translation

pull/3076/head
Andrew Au 2 years ago
parent
commit
290be277c6
  1. 4
      ILSpy.ReadyToRun/Properties/Resources.Designer.cs
  2. 6
      ILSpy.ReadyToRun/Properties/Resources.resx
  3. 8
      ILSpy.ReadyToRun/Properties/Resources.zh-Hans.resx
  4. 2
      ILSpy.ReadyToRun/ReadyToRunOptionPage.xaml

4
ILSpy.ReadyToRun/Properties/Resources.Designer.cs generated

@ -90,9 +90,9 @@ namespace ILSpy.ReadyToRun.Properties {
/// <summary> /// <summary>
/// Looks up a localized string similar to Show Unwind Info. /// Looks up a localized string similar to Show Unwind Info.
/// </summary> /// </summary>
public static string ShowUnwindInfo { public static string ShowStackUnwindInfo {
get { get {
return ResourceManager.GetString("ShowUnwindInfo", resourceCulture); return ResourceManager.GetString("ShowStackUnwindInfo", resourceCulture);
} }
} }

6
ILSpy.ReadyToRun/Properties/Resources.resx

@ -126,10 +126,10 @@
<data name="ShowDebugInfo" xml:space="preserve"> <data name="ShowDebugInfo" xml:space="preserve">
<value>Show Debug Info</value> <value>Show Debug Info</value>
</data> </data>
<data name="ShowUnwindInfo" xml:space="preserve">
<value>Show Unwind Info</value>
</data>
<data name="ShowGCInfo" xml:space="preserve"> <data name="ShowGCInfo" xml:space="preserve">
<value>Show GC Info</value> <value>Show GC Info</value>
</data> </data>
<data name="ShowStackUnwindInfo" xml:space="preserve">
<value>Show Stack Unwind Info</value>
</data>
</root> </root>

8
ILSpy.ReadyToRun/Properties/Resources.zh-Hans.resx

@ -126,10 +126,10 @@
<data name="ShowDebugInfo" xml:space="preserve"> <data name="ShowDebugInfo" xml:space="preserve">
<value>显示调试信息</value> <value>显示调试信息</value>
</data> </data>
<data name="ShowUnwindInfo" xml:space="preserve">
<value>显示展开信息</value>
</data>
<data name="ShowGCInfo" xml:space="preserve"> <data name="ShowGCInfo" xml:space="preserve">
<value>?</value> <value>显示垃圾回收信息</value>
</data>
<data name="ShowStackUnwindInfo" xml:space="preserve">
<value>显示堆栈展开信息</value>
</data> </data>
</root> </root>

2
ILSpy.ReadyToRun/ReadyToRunOptionPage.xaml

@ -15,7 +15,7 @@
</Grid.RowDefinitions> </Grid.RowDefinitions>
<TextBlock Margin="3" Text="{x:Static properties:Resources.DisassemblyFormat}" /> <TextBlock Margin="3" Text="{x:Static properties:Resources.DisassemblyFormat}" />
<ComboBox Grid.Column="1" Margin="3" ItemsSource="{Binding DisassemblyFormats}" SelectedItem="{Binding DisassemblyFormat}" /> <ComboBox Grid.Column="1" Margin="3" ItemsSource="{Binding DisassemblyFormats}" SelectedItem="{Binding DisassemblyFormat}" />
<TextBlock Grid.Row="1" Margin="3" Text="{x:Static properties:Resources.ShowUnwindInfo}"/> <TextBlock Grid.Row="1" Margin="3" Text="{x:Static properties:Resources.ShowStackUnwindInfo}"/>
<CheckBox Grid.Row="1" Grid.Column="1" Margin="3" IsChecked="{Binding IsShowUnwindInfo}" /> <CheckBox Grid.Row="1" Grid.Column="1" Margin="3" IsChecked="{Binding IsShowUnwindInfo}" />
<TextBlock Grid.Row="2" Margin="3" Text="{x:Static properties:Resources.ShowDebugInfo}"/> <TextBlock Grid.Row="2" Margin="3" Text="{x:Static properties:Resources.ShowDebugInfo}"/>
<CheckBox Grid.Row="2" Grid.Column="1" Margin="3" IsChecked="{Binding IsShowDebugInfo}" /> <CheckBox Grid.Row="2" Grid.Column="1" Margin="3" IsChecked="{Binding IsShowDebugInfo}" />

Loading…
Cancel
Save