File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ private static async Task DoSaveAs(IPersistedDocument persistedDocument)
138
138
if ( fileType != null )
139
139
filter = fileType . Name + "|*" + fileType . FileExtension + "|" ;
140
140
141
- filter += "All Files |*.*";
141
+ filter += Properties . Resources . AllFiles + " |*.*";
142
142
dialog . Filter = filter ;
143
143
144
144
if ( dialog . ShowDialog ( ) != true )
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ public override async Task Run(Command command)
27
27
{
28
28
var dialog = new OpenFileDialog ( ) ;
29
29
30
- dialog . Filter = "All Supported Files |" + string . Join ( ";" , _editorProviders
30
+ dialog . Filter = Properties . Resources . AllSupportedFiles + " |" + string . Join ( ";" , _editorProviders
31
31
. SelectMany ( x => x . FileTypes ) . Select ( x => "*" + x . FileExtension ) ) ;
32
32
33
33
dialog . Filter += "|" + string . Join ( "|" , _editorProviders
You can’t perform that action at this time.
0 commit comments