重命名和补回i18n

This commit is contained in:
PrefacedCorg
2026-04-05 17:27:00 +08:00
parent 04a8224484
commit ceb99cea2b
6 changed files with 21 additions and 9 deletions
+6
View File
@@ -2577,4 +2577,10 @@ Hide</value>
<data name="Startup_UIAccessTopMostHint_1" xml:space="preserve"> <data name="Startup_UIAccessTopMostHint_1" xml:space="preserve">
<value>Use UIA method to achieve topmost, requires administrator privileges</value> <value>Use UIA method to achieve topmost, requires administrator privileges</value>
</data> </data>
<data name="Canvas_LaunchSeewoVideoShowcaseForWhiteboardBooth" xml:space="preserve">
<value>Whiteboard booth opens Seewo Video Showcase</value>
</data>
<data name="Canvas_LaunchSeewoVideoShowcaseForWhiteboardBoothHint" xml:space="preserve">
<value>When enabled, the whiteboard toolbar Booth button launches Seewo Video Showcase (must be installed). When disabled, the built-in booth is used.</value>
</data>
</root> </root>
+6
View File
@@ -2620,4 +2620,10 @@
<data name="Startup_UIAccessTopMostHint_1" xml:space="preserve"> <data name="Startup_UIAccessTopMostHint_1" xml:space="preserve">
<value>使用UIA方式实现置顶,需要管理员权限</value> <value>使用UIA方式实现置顶,需要管理员权限</value>
</data> </data>
<data name="Canvas_LaunchSeewoVideoShowcaseForWhiteboardBooth" xml:space="preserve">
<value>白板展台按钮启动希沃视频展台</value>
</data>
<data name="Canvas_LaunchSeewoVideoShowcaseForWhiteboardBoothHint" xml:space="preserve">
<value>开启后,点击白板工具栏「展台」将打开希沃视频展台(需已安装);关闭则使用内置展台。</value>
</data>
</root> </root>
@@ -1,4 +1,4 @@
<Page x:Class="Ink_Canvas.Windows.SettingsViews2.Pages.NewSettingStartup" <Page x:Class="Ink_Canvas.Windows.SettingsViews2.Pages.StartupPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
@@ -5,19 +5,19 @@ using System.Windows.Controls;
namespace Ink_Canvas.Windows.SettingsViews2.Pages namespace Ink_Canvas.Windows.SettingsViews2.Pages
{ {
/// <summary> /// <summary>
/// NewSettingStartup.xaml 的交互逻辑 /// StartupPage.xaml 的交互逻辑
/// </summary> /// </summary>
public partial class NewSettingStartup : Page public partial class StartupPage : Page
{ {
private bool _isLoaded = false; private bool _isLoaded = false;
public NewSettingStartup() public StartupPage()
{ {
InitializeComponent(); InitializeComponent();
Loaded += NewSettingStartup_Loaded; Loaded += StartupPage_Loaded;
} }
private void NewSettingStartup_Loaded(object sender, RoutedEventArgs e) private void StartupPage_Loaded(object sender, RoutedEventArgs e)
{ {
LoadSettings(); LoadSettings();
_isLoaded = true; _isLoaded = true;
@@ -136,7 +136,7 @@
</ui:NavigationViewItem.Icon> </ui:NavigationViewItem.Icon>
<ui:NavigationViewItem.MenuItems> <ui:NavigationViewItem.MenuItems>
<ui:NavigationViewItem <ui:NavigationViewItem
x:Name="NewSettingStartupItem" x:Name="StartupPageItem"
Content="启动" Content="启动"
Tag="StartupPage" Tag="StartupPage"
ToolTipService.ToolTip="启动设置"> ToolTipService.ToolTip="启动设置">
@@ -58,7 +58,7 @@ namespace Ink_Canvas.Windows.SettingsViews2
{ "ThemePage", typeof(ThemePage) }, { "ThemePage", typeof(ThemePage) },
{ "ColorsPage", typeof(ColorsPage) }, { "ColorsPage", typeof(ColorsPage) },
{ "FontsPage", typeof(FontsPage) }, { "FontsPage", typeof(FontsPage) },
{ "StartupPage", typeof(NewSettingStartup) }, { "StartupPage", typeof(StartupPage) },
{ "AboutPage", typeof(AboutPage) }, { "AboutPage", typeof(AboutPage) },
{ "Settings", typeof(SettingsPage) } { "Settings", typeof(SettingsPage) }
}; };