From a39b44ea2e25c24611b1e0b2863afd5aa0511f77 Mon Sep 17 00:00:00 2001 From: sourcegit-scm <85621660+sourcegit-scm@users.noreply.github.com> Date: Mon, 22 May 2023 18:32:23 +0800 Subject: [PATCH] fix: correct resource path in Preference.xaml.cs --- src/Views/Preference.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/Preference.xaml.cs b/src/Views/Preference.xaml.cs index 4ab5f34e..b207960f 100644 --- a/src/Views/Preference.xaml.cs +++ b/src/Views/Preference.xaml.cs @@ -100,7 +100,7 @@ namespace SourceGit.Views { private void SelectGPGExec(object sender, RoutedEventArgs e) { var dialog = new OpenFileDialog(); dialog.Filter = $"GPG Executable|gpg.exe"; - dialog.Title = App.Text("Text.GPG.Path.Placeholder"); + dialog.Title = App.Text("GPG.Path.Placeholder"); dialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles); dialog.CheckFileExists = true;