1.1.1 -> 1.1.2 第6次更新

This commit is contained in:
Space Time 2024-06-26 00:48:27 +08:00
parent 9e284e1a6a
commit 334f8a56a2
6 changed files with 18 additions and 18 deletions

View File

@ -13,5 +13,5 @@ internal class AboutConst : AboutMultilangConst
public static string RepositoryButtonUrl => "https://github.com/SpaceTimee/Sheas-Cealer"; public static string RepositoryButtonUrl => "https://github.com/SpaceTimee/Sheas-Cealer";
public static string PolicyButtonUrl => "https://thoughts.teambition.com/share/6264eda98adeb10041b92fda#title=Sheas_Cealer_隐私政策"; public static string PolicyButtonUrl => "https://thoughts.teambition.com/share/6264eda98adeb10041b92fda#title=Sheas_Cealer_隐私政策";
public static string TermsButtonUrl => "https://thoughts.teambition.com/share/6264edd78adeb10041b92fdb#title=Sheas_Cealer_使用协议"; public static string AgreementButtonUrl => "https://thoughts.teambition.com/share/6264edd78adeb10041b92fdb#title=Sheas_Cealer_使用协议";
} }

View File

@ -69,6 +69,15 @@ namespace Sheas_Cealer.Consts {
} }
} }
/// <summary>
/// 查找类似 EULA 的本地化字符串。
/// </summary>
public static string AgreementButtonContent {
get {
return ResourceManager.GetString("AgreementButtonContent", resourceCulture);
}
}
/// <summary> /// <summary>
/// 查找类似 Dev. Space Time 的本地化字符串。 /// 查找类似 Dev. Space Time 的本地化字符串。
/// </summary> /// </summary>
@ -114,15 +123,6 @@ namespace Sheas_Cealer.Consts {
} }
} }
/// <summary>
/// 查找类似 ToS 的本地化字符串。
/// </summary>
public static string TermsButtonContent {
get {
return ResourceManager.GetString("TermsButtonContent", resourceCulture);
}
}
/// <summary> /// <summary>
/// 查找类似 Ver. 的本地化字符串。 /// 查找类似 Ver. 的本地化字符串。
/// </summary> /// </summary>

View File

@ -117,6 +117,9 @@
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<data name="AgreementsButtonContent" xml:space="preserve">
<value>EULA</value>
</data>
<data name="DeveloperButtonContent" xml:space="preserve"> <data name="DeveloperButtonContent" xml:space="preserve">
<value>Dev. Space Time</value> <value>Dev. Space Time</value>
</data> </data>
@ -132,9 +135,6 @@
<data name="RepositoryButtonContent" xml:space="preserve"> <data name="RepositoryButtonContent" xml:space="preserve">
<value>Repo</value> <value>Repo</value>
</data> </data>
<data name="TermsButtonContent" xml:space="preserve">
<value>ToS</value>
</data>
<data name="VersionButtonLabelContent" xml:space="preserve"> <data name="VersionButtonLabelContent" xml:space="preserve">
<value>Ver.</value> <value>Ver.</value>
</data> </data>

View File

@ -97,6 +97,9 @@
<resheader name="writer"> <resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader> </resheader>
<data name="AgreementsButtonContent" xml:space="preserve">
<value>使用协议</value>
</data>
<data name="DeveloperButtonContent" xml:space="preserve"> <data name="DeveloperButtonContent" xml:space="preserve">
<value>开发者: Space Time</value> <value>开发者: Space Time</value>
</data> </data>
@ -112,9 +115,6 @@
<data name="RepositoryButtonContent" xml:space="preserve"> <data name="RepositoryButtonContent" xml:space="preserve">
<value>开源地址</value> <value>开源地址</value>
</data> </data>
<data name="TermsButtonContent" xml:space="preserve">
<value>使用协议</value>
</data>
<data name="VersionButtonLabelContent" xml:space="preserve"> <data name="VersionButtonLabelContent" xml:space="preserve">
<value>版本号:</value> <value>版本号:</value>
</data> </data>

View File

@ -47,7 +47,7 @@
<Button Grid.Row="0" Grid.Column="3" Margin="5" Content="{Binding Source={x:Static consts:AboutConst.PolicyButtonContent}, Mode=OneTime}" ToolTip="{Binding Source={x:Static consts:AboutConst.PolicyButtonUrl}, Mode=OneTime}" <Button Grid.Row="0" Grid.Column="3" Margin="5" Content="{Binding Source={x:Static consts:AboutConst.PolicyButtonContent}, Mode=OneTime}" ToolTip="{Binding Source={x:Static consts:AboutConst.PolicyButtonUrl}, Mode=OneTime}"
Click="AboutButton_Click" /> Click="AboutButton_Click" />
<Button Grid.Row="1" Grid.Column="3" Margin="5" Content="{Binding Source={x:Static consts:AboutConst.TermsButtonContent}, Mode=OneTime}" ToolTip="{Binding Source={x:Static consts:AboutConst.TermsButtonUrl}, Mode=OneTime}" <Button Grid.Row="1" Grid.Column="3" Margin="5" Content="{Binding Source={x:Static consts:AboutConst.AgreementButtonContent}, Mode=OneTime}" ToolTip="{Binding Source={x:Static consts:AboutConst.AgreementButtonUrl}, Mode=OneTime}"
Click="AboutButton_Click" /> Click="AboutButton_Click" />
</Grid> </Grid>
</Window> </Window>