From 65db4e4141d5b23a6982d14a7830cbef28a603bc Mon Sep 17 00:00:00 2001 From: Jeremy Date: Tue, 25 Oct 2022 08:18:03 +1100 Subject: [PATCH] add translation for file browser window title --- Flow.Launcher/Languages/en.xaml | 3 ++- Flow.Launcher/SettingWindow.xaml.cs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml index 5b31f26c9..0b7b58e78 100644 --- a/Flow.Launcher/Languages/en.xaml +++ b/Flow.Launcher/Languages/en.xaml @@ -58,6 +58,7 @@ Setting for New Tab, New Window, Private Mode. Python Directory Node.js Path + Please select the Node.js executable Auto Update Select Hide Flow Launcher on startup @@ -251,7 +252,7 @@ Please wait... - + Checking for new update You already have the latest Flow Launcher version Update found diff --git a/Flow.Launcher/SettingWindow.xaml.cs b/Flow.Launcher/SettingWindow.xaml.cs index 283cdb2f2..0ea846304 100644 --- a/Flow.Launcher/SettingWindow.xaml.cs +++ b/Flow.Launcher/SettingWindow.xaml.cs @@ -104,7 +104,7 @@ namespace Flow.Launcher Multiselect = false, CheckFileExists = true, CheckPathExists = true, - Title = $"Please select the Node.js executable" + Title = InternationalizationManager.Instance.GetTranslation("selectNodeExecutable") }; var result = dlg.ShowDialog();