Prechádzať zdrojové kódy

Not warning on incomplete translation during silent installation

Source commit: 20044fcf0e66f7d2e307f95009740733671199be
Martin Prikryl 9 rokov pred
rodič
commit
28a6f60b36
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      deployment/winscpsetup.iss

+ 1 - 1
deployment/winscpsetup.iss

@@ -939,7 +939,7 @@ begin
   end;
 
   Completeness := LanguageCompleteness(ActiveLanguage);
-  if Completeness < 100 then
+  if (Completeness < 100) and (not WizardSilent) then
   begin
     ShowMessage(FmtMessage(CustomMessage('IncompleteTranslation'), [IntToStr(Completeness)]));
   end;