add translation for file browser window title

This commit is contained in:
Jeremy 2022-10-25 08:18:03 +11:00
parent acb6306511
commit 65db4e4141
2 changed files with 3 additions and 2 deletions

View file

@ -58,6 +58,7 @@
<system:String x:Key="defaultBrowserToolTip">Setting for New Tab, New Window, Private Mode.</system:String>
<system:String x:Key="pythonDirectory">Python Directory</system:String>
<system:String x:Key="nodeFilePath">Node.js Path</system:String>
<system:String x:Key="selectNodeExecutable">Please select the Node.js executable</system:String>
<system:String x:Key="autoUpdates">Auto Update</system:String>
<system:String x:Key="select">Select</system:String>
<system:String x:Key="hideOnStartup">Hide Flow Launcher on startup</system:String>
@ -251,7 +252,7 @@
<!-- General Notice -->
<system:String x:Key="pleaseWait">Please wait...</system:String>
<!-- update -->
<!-- Update -->
<system:String x:Key="update_flowlauncher_update_check">Checking for new update</system:String>
<system:String x:Key="update_flowlauncher_already_on_latest">You already have the latest Flow Launcher version</system:String>
<system:String x:Key="update_flowlauncher_update_found">Update found</system:String>

View file

@ -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();