Browse Source

Localize the string `Open Explorer`.

pull/3619/head
sonyps5201314 1 month ago
parent
commit
cfc5d2f248
  1. 3
      ILSpy/SolutionWriter.cs

3
ILSpy/SolutionWriter.cs

@ -28,6 +28,7 @@ using System.Threading.Tasks; @@ -28,6 +28,7 @@ using System.Threading.Tasks;
using ICSharpCode.Decompiler;
using ICSharpCode.Decompiler.Solution;
using ICSharpCode.Decompiler.Util;
using ICSharpCode.ILSpy.Properties;
using ICSharpCode.ILSpy.TextView;
using ICSharpCode.ILSpy.ViewModels;
using ICSharpCode.ILSpyX;
@ -187,7 +188,7 @@ namespace ICSharpCode.ILSpy @@ -187,7 +188,7 @@ namespace ICSharpCode.ILSpy
result.WriteLine();
result.WriteLine("Elapsed time: " + stopwatch.Elapsed.TotalSeconds.ToString("F1") + " seconds.");
result.WriteLine();
result.AddButton(null, "Open Explorer", delegate { ShellHelper.OpenFolderAndSelectItem(solutionFilePath); });
result.AddButton(null, Resources.OpenExplorer, delegate { ShellHelper.OpenFolderAndSelectItem(solutionFilePath); });
}
return result;

Loading…
Cancel
Save