@@ -360,7 +360,7 @@ private async Task ImportActiveX(ErrorDelegate errorDelegate) {
360360 fullPath = Path . GetFullPath ( TemplateName ) ;
361361 } catch ( Exception ex ) {
362362 LogExceptionToLauncher ( ex ) ;
363- errorDelegate ( String . Format ( Properties . Resources . GameIsMissingFiles , TemplateName ) ) ;
363+ errorDelegate ( String . Format ( Properties . Resources . GameIsMissingFile , TemplateName ) ) ;
364364 throw new ActiveXImportFailedException ( "The ActiveX Import failed because getting the Full Path failed." ) ;
365365 }
366366
@@ -382,7 +382,7 @@ private async Task ImportActiveX(ErrorDelegate errorDelegate) {
382382 throw new ActiveXImportFailedException ( "The ActiveX Import failed because the DLL is not an ActiveX Control." ) ;
383383 } catch ( Exception ex ) {
384384 LogExceptionToLauncher ( ex ) ;
385- errorDelegate ( String . Format ( Properties . Resources . GameIsMissingFiles , fullPath ) ) ;
385+ errorDelegate ( String . Format ( Properties . Resources . GameIsMissingFile , fullPath ) ) ;
386386 throw new ActiveXImportFailedException ( "The ActiveX Import failed because the DLL was not found." ) ;
387387 }
388388
@@ -894,7 +894,7 @@ private async Task ActivateModificationsAsync(TemplateElement templateElement, E
894894 await downloadsBefore . ActivateAsync ( TemplateName , DownloadsBeforeModificationNames ) . ConfigureAwait ( true ) ;
895895 } catch ( DownloadFailedException ex ) {
896896 LogExceptionToLauncher ( ex ) ;
897- errorDelegate ( String . Format ( Properties . Resources . GameIsMissingFiles , String . Join ( ", " , DownloadsBeforeModificationNames ) ) ) ;
897+ errorDelegate ( String . Format ( Properties . Resources . GameIsMissingFile , String . Join ( ", " , DownloadsBeforeModificationNames ) ) ) ;
898898 } catch ( ConfigurationErrorsException ex ) {
899899 LogExceptionToLauncher ( ex ) ;
900900 errorDelegate ( Properties . Resources . ConfigurationUnableToLoad ) ;
@@ -918,7 +918,7 @@ private async Task ActivateModificationsAsync(TemplateElement templateElement, E
918918 AskLaunchAsAdministratorUser ( ) ;
919919 } catch ( ArgumentException ex ) {
920920 LogExceptionToLauncher ( ex ) ;
921- errorDelegate ( Properties . Resources . GameIsMissingFiles ) ;
921+ errorDelegate ( Properties . Resources . GameIsMissingFile ) ;
922922 } catch ( InvalidOperationException ex ) {
923923 LogExceptionToLauncher ( ex ) ;
924924 errorDelegate ( Properties . Resources . ModificationsUnableToLoadImport ) ;
@@ -1028,7 +1028,7 @@ private async Task DeactivateModificationsAsync(ErrorDelegate errorDelegate) {
10281028 AskLaunchAsAdministratorUser ( ) ;
10291029 } catch ( ArgumentException ex ) {
10301030 LogExceptionToLauncher ( ex ) ;
1031- errorDelegate ( Properties . Resources . GameIsMissingFiles ) ;
1031+ errorDelegate ( Properties . Resources . GameIsMissingFile ) ;
10321032 } catch ( InvalidOperationException ex ) {
10331033 LogExceptionToLauncher ( ex ) ;
10341034 errorDelegate ( Properties . Resources . ModificationsUnableToLoadImport ) ;
0 commit comments