diff --git a/bin/lib/ant-contrib/ant-contrib.jar b/bin/lib/ant-contrib/ant-contrib.jar deleted file mode 100644 index 0625376..0000000 Binary files a/bin/lib/ant-contrib/ant-contrib.jar and /dev/null differ diff --git a/bin/lib/composer.phar b/bin/lib/composer.phar index 4fa5122..02740c5 100644 Binary files a/bin/lib/composer.phar and b/bin/lib/composer.phar differ diff --git a/bin/lib/hashmyfiles.zip b/bin/lib/hashmyfiles-x64.zip similarity index 100% rename from bin/lib/hashmyfiles.zip rename to bin/lib/hashmyfiles-x64.zip diff --git a/bin/lib/innoextract.zip b/bin/lib/innoextract-1.9-windows.zip similarity index 100% rename from bin/lib/innoextract.zip rename to bin/lib/innoextract-1.9-windows.zip diff --git a/bin/lib/innosetup-6.2.2.exe b/bin/lib/innosetup-6.2.2.exe new file mode 100644 index 0000000..d6429ca Binary files /dev/null and b/bin/lib/innosetup-6.2.2.exe differ diff --git a/bin/lib/innosetup.exe b/bin/lib/innosetup.exe deleted file mode 100644 index 84dbab3..0000000 Binary files a/bin/lib/innosetup.exe and /dev/null differ diff --git a/bin/lib/innosetup/Compil32.exe b/bin/lib/innosetup/Compil32.exe new file mode 100644 index 0000000..76991b0 Binary files /dev/null and b/bin/lib/innosetup/Compil32.exe differ diff --git a/bin/lib/innosetup/app/Default.isl b/bin/lib/innosetup/Default.isl similarity index 98% rename from bin/lib/innosetup/app/Default.isl rename to bin/lib/innosetup/Default.isl index 5ae790f..ce9b70e 100644 --- a/bin/lib/innosetup/app/Default.isl +++ b/bin/lib/innosetup/Default.isl @@ -1,4 +1,4 @@ -; *** Inno Setup version 6.4.0+ English messages *** +; *** Inno Setup version 6.1.0+ English messages *** ; ; To download user-contributed translations of this file, go to: ; https://jrsoftware.org/files/istrans/ @@ -222,13 +222,6 @@ ErrorFileHash2=Invalid file hash: expected %1, found %2 ErrorProgress=Invalid progress: %1 of %2 ErrorFileSize=Invalid file size: expected %1, found %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Extracting additional files... -ButtonStopExtraction=&Stop extraction -StopExtraction=Are you sure you want to stop the extraction? -ErrorExtractionAborted=Extraction aborted -ErrorExtractionFailed=Extraction failed: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Preparing to Install PreparingDesc=Setup is preparing to install [name] on your computer. diff --git a/bin/lib/innosetup/app/Examples/64Bit.iss b/bin/lib/innosetup/Examples/64Bit.iss similarity index 59% rename from bin/lib/innosetup/app/Examples/64Bit.iss rename to bin/lib/innosetup/Examples/64Bit.iss index d57d954..823f363 100644 --- a/bin/lib/innosetup/app/Examples/64Bit.iss +++ b/bin/lib/innosetup/Examples/64Bit.iss @@ -2,7 +2,7 @@ ; Demonstrates installation of a program built for the x64 (a.k.a. AMD64) ; architecture. ; To successfully run this installation and the program it installs, -; you must have a "x64" edition of Windows or Windows 11 on Arm. +; you must have a "x64" edition of Windows. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES! @@ -16,14 +16,13 @@ UninstallDisplayIcon={app}\MyProg.exe Compression=lzma2 SolidCompression=yes OutputDir=userdocs:Inno Setup Examples Output -; "ArchitecturesAllowed=x64compatible" specifies that Setup cannot run -; on anything but x64 and Windows 11 on Arm. -ArchitecturesAllowed=x64compatible -; "ArchitecturesInstallIn64BitMode=x64compatible" requests that the -; install be done in "64-bit mode" on x64 or Windows 11 on Arm, -; meaning it should use the native 64-bit Program Files directory and -; the 64-bit view of the registry. -ArchitecturesInstallIn64BitMode=x64compatible +; "ArchitecturesAllowed=x64" specifies that Setup cannot run on +; anything but x64. +ArchitecturesAllowed=x64 +; "ArchitecturesInstallIn64BitMode=x64" requests that the install be +; done in "64-bit mode" on x64, meaning it should use the native +; 64-bit Program Files directory and the 64-bit view of the registry. +ArchitecturesInstallIn64BitMode=x64 [Files] Source: "MyProg-x64.exe"; DestDir: "{app}"; DestName: "MyProg.exe" diff --git a/bin/lib/innosetup/Examples/64BitThreeArch.iss b/bin/lib/innosetup/Examples/64BitThreeArch.iss new file mode 100644 index 0000000..332b508 --- /dev/null +++ b/bin/lib/innosetup/Examples/64BitThreeArch.iss @@ -0,0 +1,53 @@ +; -- 64BitThreeArch.iss -- +; Demonstrates how to install a program built for three different +; architectures (x86, x64, ARM64) using a single installer. + +; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES! + +[Setup] +AppName=My Program +AppVersion=1.5 +WizardStyle=modern +DefaultDirName={autopf}\My Program +DefaultGroupName=My Program +UninstallDisplayIcon={app}\MyProg.exe +Compression=lzma2 +SolidCompression=yes +OutputDir=userdocs:Inno Setup Examples Output +; "ArchitecturesInstallIn64BitMode=x64 arm64" requests that the install +; be done in "64-bit mode" on x64 & ARM64, meaning it should use the +; native 64-bit Program Files directory and the 64-bit view of the +; registry. On all other architectures it will install in "32-bit mode". +ArchitecturesInstallIn64BitMode=x64 arm64 + +[Files] +; Install MyProg-x64.exe if running on x64, MyProg-ARM64.exe if +; running on ARM64, MyProg.exe otherwise. +; Place all x64 files here +Source: "MyProg-x64.exe"; DestDir: "{app}"; DestName: "MyProg.exe"; Check: InstallX64 +; Place all ARM64 files here, first one should be marked 'solidbreak' +Source: "MyProg-ARM64.exe"; DestDir: "{app}"; DestName: "MyProg.exe"; Check: InstallARM64; Flags: solidbreak +; Place all x86 files here, first one should be marked 'solidbreak' +Source: "MyProg.exe"; DestDir: "{app}"; Check: InstallOtherArch; Flags: solidbreak +; Place all common files here, first one should be marked 'solidbreak' +Source: "MyProg.chm"; DestDir: "{app}"; Flags: solidbreak +Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme + +[Icons] +Name: "{group}\My Program"; Filename: "{app}\MyProg.exe" + +[Code] +function InstallX64: Boolean; +begin + Result := Is64BitInstallMode and (ProcessorArchitecture = paX64); +end; + +function InstallARM64: Boolean; +begin + Result := Is64BitInstallMode and (ProcessorArchitecture = paARM64); +end; + +function InstallOtherArch: Boolean; +begin + Result := not InstallX64 and not InstallARM64; +end; diff --git a/bin/lib/innosetup/app/Examples/64BitTwoArch.iss b/bin/lib/innosetup/Examples/64BitTwoArch.iss similarity index 67% rename from bin/lib/innosetup/app/Examples/64BitTwoArch.iss rename to bin/lib/innosetup/Examples/64BitTwoArch.iss index 877038b..70a7fc2 100644 --- a/bin/lib/innosetup/app/Examples/64BitTwoArch.iss +++ b/bin/lib/innosetup/Examples/64BitTwoArch.iss @@ -2,8 +2,8 @@ ; Demonstrates how to install a program built for two different ; architectures (x86 and x64) using a single installer: on a "x86" ; edition of Windows the x86 version of the program will be -; installed but on a "x64" edition of Windows or Windows 11 on Arm -; the x64 version will be installed. +; installed but on a "x64" edition of Windows the x64 version will +; be installed. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES! @@ -17,17 +17,17 @@ WizardStyle=modern Compression=lzma2 SolidCompression=yes OutputDir=userdocs:Inno Setup Examples Output -; "ArchitecturesInstallIn64BitMode=x64compatible" requests that the -; install be done in "64-bit mode" on x64 or Windows 11 on Arm, -; meaning it should use the native 64-bit Program Files directory and -; the 64-bit view of the registry. +; "ArchitecturesInstallIn64BitMode=x64" requests that the install be +; done in "64-bit mode" on x64, meaning it should use the native +; 64-bit Program Files directory and the 64-bit view of the registry. ; On all other architectures it will install in "32-bit mode". -ArchitecturesInstallIn64BitMode=x64compatible -; Note: We don't set ArchitecturesAllowed because we want this -; installation to run on all architectures. +ArchitecturesInstallIn64BitMode=x64 +; Note: We don't set ProcessorsAllowed because we want this +; installation to run on all architectures (including Itanium, +; since it's capable of running 32-bit code too). [Files] -; Install MyProg-x64.exe if running in 64-bit mode (see above), and +; Install MyProg-x64.exe if running in 64-bit mode (x64; see above), ; MyProg.exe otherwise. ; Place all x64 files here Source: "MyProg-x64.exe"; DestDir: "{app}"; DestName: "MyProg.exe"; Check: Is64BitInstallMode diff --git a/bin/lib/innosetup/app/Examples/AllPagesExample.iss b/bin/lib/innosetup/Examples/AllPagesExample.iss similarity index 100% rename from bin/lib/innosetup/app/Examples/AllPagesExample.iss rename to bin/lib/innosetup/Examples/AllPagesExample.iss diff --git a/bin/lib/innosetup/app/Examples/CodeAutomation.iss b/bin/lib/innosetup/Examples/CodeAutomation.iss similarity index 82% rename from bin/lib/innosetup/app/Examples/CodeAutomation.iss rename to bin/lib/innosetup/Examples/CodeAutomation.iss index 494785f..e36a5d0 100644 --- a/bin/lib/innosetup/app/Examples/CodeAutomation.iss +++ b/bin/lib/innosetup/Examples/CodeAutomation.iss @@ -162,7 +162,7 @@ end; {--- MSXML ---} const - XMLURL = 'https://jrsoftware.github.io/issrc/ISHelp/isxfunc.xml'; + XMLURL = 'http://jrsoftware.github.io/issrc/ISHelp/isxfunc.xml'; XMLFileName = 'isxfunc.xml'; XMLFileName2 = 'isxfuncmodified.xml'; @@ -171,7 +171,7 @@ var XMLHTTP, XMLDoc, NewNode, RootNode: Variant; Path: String; begin - if MsgBox('Setup will now use MSXML to download XML file ''' + XMLURL + ''' and save it to the source folder.'#13#13'Setup will then load, modify and save this XML file. Do you want to continue?', mbInformation, mb_YesNo) = idNo then + if MsgBox('Setup will now use MSXML to download XML file ''' + XMLURL + ''' and save it to disk.'#13#13'Setup will then load, modify and save this XML file. Do you want to continue?', mbInformation, mb_YesNo) = idNo then Exit; { Create the main MSXML COM Automation object } @@ -275,46 +275,6 @@ begin MsgBox('Setup is now an authorized application for the current profile', mbInformation, mb_Ok); end; -{--- Unzip ---} - -const - ZipURL = 'https://jrsoftware.org/download.php/iscrypt.zip'; - ZipFileName = 'iscrypt.zip'; - ZipSHA256 = '0569ffe1677ba699d07063a902d48c2f92c8e88669bdc13118f5808c30e998bc'; - SHCONTCH_NOPROGRESSBOX = 4; - SHCONTCH_RESPONDYESTOALL = 16; - -procedure UnzipButtonOnClick(Sender: TObject); -var - Shell, ZipFolder, TargetFolder: Variant; - ZipPath, TargetPath: String; -begin - if MsgBox('Setup will now download Zip file ''' + ZipURL + ''' and save it to a temporary folder.'#13#13'Setup will then unzip this Zip file to the source folder. Do you want to continue?', mbInformation, mb_YesNo) = idNo then - Exit; - - { Download the Zip file } - DownloadTemporaryFile(ZipURL + '?dontcount=1', ZipFileName, ZipSHA256, nil); - ZipPath := ExpandConstant('{tmp}\' + ZipFileName); - - MsgBox('Downloaded the Zip file and saved it as ''' + ZipPath + '''.', mbInformation, mb_Ok); - - { Unzip the Zip file to the source folder } - Shell := CreateOleObject('Shell.Application'); - - ZipFolder := Shell.NameSpace(ZipPath); - if VarIsClear(ZipFolder) then - RaiseException(Format('Zip file ''%s'' does not exist or cannot be opened', [ZipPath])); - - TargetPath := ExpandConstant('{src}'); - TargetFolder := Shell.NameSpace(TargetPath); - if VarIsClear(TargetFolder) then - RaiseException(Format('Target ''%s'' does not exist', [TargetPath])); - - TargetFolder.CopyHere(ZipFolder.Items, SHCONTCH_NOPROGRESSBOX or SHCONTCH_RESPONDYESTOALL); - - MsgBox('Unzipped the Zip file to ''' + TargetPath + '''.', mbInformation, mb_Ok); -end; - {---} procedure CreateButton(ALeft, ATop: Integer; ACaption: String; ANotifyEvent: TNotifyEvent); @@ -348,6 +308,4 @@ begin CreateButton(Left, Top, '&MSXML...', @MSXMLButtonOnClick); Top := Top + TopInc; CreateButton(Left, Top, '&Word...', @WordButtonOnClick); - Top := Top + TopInc; - CreateButton(Left, Top, '&Unzip...', @UnzipButtonOnClick); end; \ No newline at end of file diff --git a/bin/lib/innosetup/app/Examples/CodeAutomation2.iss b/bin/lib/innosetup/Examples/CodeAutomation2.iss similarity index 99% rename from bin/lib/innosetup/app/Examples/CodeAutomation2.iss rename to bin/lib/innosetup/Examples/CodeAutomation2.iss index e061606..62f1d21 100644 --- a/bin/lib/innosetup/app/Examples/CodeAutomation2.iss +++ b/bin/lib/innosetup/Examples/CodeAutomation2.iss @@ -290,4 +290,9 @@ begin CreateButton(Left, Top, '&IShellLink...', @IShellLinkButtonOnClick); Top := Top + TopInc; CreateButton(Left, Top, '&ITaskScheduler...', @ITaskSchedulerButtonOnClick); -end; \ No newline at end of file +end; + + + + + diff --git a/bin/lib/innosetup/app/Examples/CodeClasses.iss b/bin/lib/innosetup/Examples/CodeClasses.iss similarity index 87% rename from bin/lib/innosetup/app/Examples/CodeClasses.iss rename to bin/lib/innosetup/Examples/CodeClasses.iss index 178efbf..4610cec 100644 --- a/bin/lib/innosetup/app/Examples/CodeClasses.iss +++ b/bin/lib/innosetup/Examples/CodeClasses.iss @@ -105,16 +105,6 @@ begin end; end; -procedure LinkLabelOnLinkClick(Sender: TObject; const Link: string; LinkType: TSysLinkType); -var - ErrorCode: Integer; -begin - if (LinkType = sltID) and (Link = 'jrsoftware') then - ShellExecAsOriginalUser('open', 'https://jrsoftware.org', '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode) - else if LinkType = sltURL then - ShellExecAsOriginalUser('open', Link, '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode); -end; - procedure CreateTheWizardPages; var Page: TWizardPage; @@ -126,8 +116,7 @@ var Memo: TNewMemo; ComboBox: TNewComboBox; ListBox: TNewListBox; - StaticText, StaticText2, ProgressBarLabel: TNewStaticText; - LinkLabel: TNewLinkLabel; + StaticText, ProgressBarLabel: TNewStaticText; ProgressBar, ProgressBar2, ProgressBar3: TNewProgressBar; CheckListBox, CheckListBox2: TNewCheckListBox; FolderTreeView: TFolderTreeView; @@ -233,37 +222,14 @@ begin StaticText.Top := ListBox.Top + ListBox.Height + ScaleY(8); StaticText.Anchors := [akLeft, akRight, akBottom]; StaticText.Caption := 'TNewStaticText'; + StaticText.AutoSize := True; StaticText.Parent := Page.Surface; - StaticText2 := TNewStaticText.Create(Page); - StaticText2.AutoSize := False; - StaticText2.Left := StaticText.Width + ScaleX(32); - StaticText2.Top := StaticText.Top; - StaticText2.Anchors := [akLeft, akRight, akBottom]; - StaticText2.WordWrap := True; - StaticText2.Caption := 'TNewStaticText with more text and an adjusted label height so it''s multi-line.'; - StaticText2.Width := 2 * StaticText.Width; - StaticText2.Parent := Page.Surface; - StaticText2.AdjustHeight; - - LinkLabel := TNewLinkLabel.Create(Page); - LinkLabel.AutoSize := False; - LinkLabel.Left := StaticText2.Left; - LinkLabel.Top := StaticText2.Top + StaticText2.Height + ScaleY(8); - LinkLabel.Anchors := [akLeft, akRight, akBottom]; - LinkLabel.Caption := 'TNewLinkLabel with more text and an adjusted label height so it''s multi-line with a second link on the second line.'; - LinkLabel.Width := StaticText2.Width; - LinkLabel.OnLinkClick := @LinkLabelOnLinkClick; - LinkLabel.Parent := Page.Surface; - LinkLabel.AdjustHeight; - - { TNewProgressBar } - - Page := CreateCustomPage(Page.ID, 'Custom wizard page controls', 'TNewProgressBar'); - ProgressBarLabel := TNewStaticText.Create(Page); - ProgressBarLabel.Anchors := [akLeft, akTop]; + ProgressBarLabel.Top := StaticText.Top + StaticText.Height + ScaleY(8); + ProgressBarLabel.Anchors := [akLeft, akBottom]; ProgressBarLabel.Caption := 'TNewProgressBar'; + ProgressBarLabel.AutoSize := True; ProgressBarLabel.Parent := Page.Surface; ProgressBar := TNewProgressBar.Create(Page); @@ -271,7 +237,7 @@ begin ProgressBar.Top := ProgressBarLabel.Top; ProgressBar.Width := Page.SurfaceWidth - ProgressBar.Left; ProgressBar.Height := ProgressBarLabel.Height + ScaleY(8); - ProgressBar.Anchors := [akLeft, akRight, akTop]; + ProgressBar.Anchors := [akLeft, akRight, akBottom]; ProgressBar.Parent := Page.Surface; ProgressBar.Position := 25; @@ -280,7 +246,7 @@ begin ProgressBar2.Top := ProgressBar.Top + ProgressBar.Height + ScaleY(4); ProgressBar2.Width := Page.SurfaceWidth - ProgressBar.Left; ProgressBar2.Height := ProgressBarLabel.Height + ScaleY(8); - ProgressBar2.Anchors := [akLeft, akRight, akTop]; + ProgressBar2.Anchors := [akLeft, akRight, akBottom]; ProgressBar2.Parent := Page.Surface; ProgressBar2.Position := 50; ProgressBar2.State := npbsError; @@ -290,7 +256,7 @@ begin ProgressBar3.Top := ProgressBar2.Top + ProgressBar2.Height + ScaleY(4); ProgressBar3.Width := Page.SurfaceWidth - ProgressBar.Left; ProgressBar3.Height := ProgressBarLabel.Height + ScaleY(8); - ProgressBar3.Anchors := [akLeft, akRight, akTop]; + ProgressBar3.Anchors := [akLeft, akRight, akBottom]; ProgressBar3.Parent := Page.Surface; ProgressBar3.Style := npbstMarquee; @@ -401,10 +367,17 @@ begin MsgBox('This demo shows some features of the various form objects and control classes.', mbInformation, mb_Ok); end; +procedure URLLabelOnClick(Sender: TObject); +var + ErrorCode: Integer; +begin + ShellExecAsOriginalUser('open', 'http://www.innosetup.com/', '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode); +end; + procedure CreateAboutButtonAndURLLabel(ParentForm: TSetupForm; CancelButton: TNewButton); var AboutButton: TNewButton; - URLLabel: TNewLinkLabel; + URLLabel: TNewStaticText; begin AboutButton := TNewButton.Create(ParentForm); AboutButton.Left := ParentForm.ClientWidth - CancelButton.Left - CancelButton.Width; @@ -416,14 +389,17 @@ begin AboutButton.OnClick := @AboutButtonOnClick; AboutButton.Parent := ParentForm; - URLLabel := TNewLinkLabel.Create(ParentForm); - URLLabel.Left := AboutButton.Left + AboutButton.Width + ScaleX(20); + URLLabel := TNewStaticText.Create(ParentForm); + URLLabel.Caption := 'www.innosetup.com'; + URLLabel.Cursor := crHand; + URLLabel.OnClick := @URLLabelOnClick; + URLLabel.Parent := ParentForm; + { Alter Font *after* setting Parent so the correct defaults are inherited first } + URLLabel.Font.Style := URLLabel.Font.Style + [fsUnderline]; + URLLabel.Font.Color := clHotLight URLLabel.Top := AboutButton.Top + AboutButton.Height - URLLabel.Height - 2; + URLLabel.Left := AboutButton.Left + AboutButton.Width + ScaleX(20); URLLabel.Anchors := [akLeft, akBottom]; - URLLabel.Caption := 'jrsoftware.org'; - URLLabel.OnLinkClick := @LinkLabelOnLinkClick; - URLLabel.UseVisualStyle := True; - URLLabel.Parent := ParentForm; end; procedure InitializeWizard(); diff --git a/bin/lib/innosetup/app/Examples/CodeDlg.iss b/bin/lib/innosetup/Examples/CodeDlg.iss similarity index 97% rename from bin/lib/innosetup/app/Examples/CodeDlg.iss rename to bin/lib/innosetup/Examples/CodeDlg.iss index b10a1cf..2fe5736 100644 --- a/bin/lib/innosetup/app/Examples/CodeDlg.iss +++ b/bin/lib/innosetup/Examples/CodeDlg.iss @@ -79,7 +79,7 @@ begin DataDirPage := CreateInputDirPage(wpSelectDir, 'Select Personal Data Directory', 'Where should personal data files be installed?', 'Select the folder in which Setup should install personal data files, then click Next.', - False, SetupMessage(msgNewFolderName)); + False, ''); DataDirPage.Add(''); { Set default values, using settings that were stored last time if possible } @@ -153,7 +153,7 @@ begin finally ProgressPage.Hide; end; - if GetSHA256OfString('codedlg' + KeyPage.Values[0]) = '4c06e466ec3a2c977ac902a6cf4c602457f701b59309fc4282d9cb2234b7559b' then + if GetSHA1OfString('codedlg' + KeyPage.Values[0]) = '8013f310d340dab18a0d0cda2b5b115d2dcd97e4' then Result := True else begin MsgBox('You must enter a valid registration key. (Hint: The key is "inno".)', mbError, MB_OK); diff --git a/bin/lib/innosetup/app/Examples/CodeDll.iss b/bin/lib/innosetup/Examples/CodeDll.iss similarity index 86% rename from bin/lib/innosetup/app/Examples/CodeDll.iss rename to bin/lib/innosetup/Examples/CodeDll.iss index 9460187..3dd808a 100644 --- a/bin/lib/innosetup/app/Examples/CodeDll.iss +++ b/bin/lib/innosetup/Examples/CodeDll.iss @@ -79,28 +79,17 @@ end; function SetTimer(hWnd, nIDEvent, uElapse, lpTimerFunc: Longword): Longword; external 'SetTimer@user32.dll stdcall'; -function KillTimer(hWnd, nIDEvent: Longword): Bool; -external 'KillTimer@user32.dll stdcall'; - var - TimerID, TimerCount: Integer; + TimerCount: Integer; procedure MyTimerProc(Arg1, Arg2, Arg3, Arg4: Longword); begin - if WizardForm <> nil then begin - Inc(TimerCount); - WizardForm.BeveledLabel.Caption := ' Timer! ' + IntToStr(TimerCount) + ' '; - WizardForm.BeveledLabel.Visible := True; - end; + Inc(TimerCount); + WizardForm.BeveledLabel.Caption := ' Timer! ' + IntToStr(TimerCount) + ' '; + WizardForm.BeveledLabel.Visible := True; end; procedure InitializeWizard; begin - TimerID := SetTimer(0, 0, 1000, CreateCallback(@MyTimerProc)); -end; - -procedure DeinitializeSetup; -begin - if TimerID <> 0 then - KillTimer(0, TimerID); + SetTimer(0, 0, 1000, CreateCallback(@MyTimerProc)); end; diff --git a/bin/lib/innosetup/app/Examples/CodeDownloadFiles.iss b/bin/lib/innosetup/Examples/CodeDownloadFiles.iss similarity index 91% rename from bin/lib/innosetup/app/Examples/CodeDownloadFiles.iss rename to bin/lib/innosetup/Examples/CodeDownloadFiles.iss index 2b1109c..f4c476c 100644 --- a/bin/lib/innosetup/app/Examples/CodeDownloadFiles.iss +++ b/bin/lib/innosetup/Examples/CodeDownloadFiles.iss @@ -38,7 +38,6 @@ end; procedure InitializeWizard; begin DownloadPage := CreateDownloadPage(SetupMessage(msgWizardPreparing), SetupMessage(msgPreparingDesc), @OnDownloadProgress); - DownloadPage.ShowBaseNameInsteadOfUrl := True; end; function NextButtonClick(CurPageID: Integer): Boolean; @@ -46,8 +45,8 @@ begin if CurPageID = wpReady then begin DownloadPage.Clear; // Use AddEx to specify a username and password - DownloadPage.Add('https://jrsoftware.org/download.php/is.exe?dontcount=1', 'innosetup-latest.exe', ''); - DownloadPage.Add('https://jrsoftware.org/download.php/iscrypt.dll?dontcount=1', 'ISCrypt.dll', '2f6294f9aa09f59a574b5dcd33be54e16b39377984f3d5658cda44950fa0f8fc'); + DownloadPage.Add('https://jrsoftware.org/download.php/is.exe', 'innosetup-latest.exe', ''); + DownloadPage.Add('https://jrsoftware.org/download.php/iscrypt.dll', 'ISCrypt.dll', '2f6294f9aa09f59a574b5dcd33be54e16b39377984f3d5658cda44950fa0f8fc'); DownloadPage.Show; try try diff --git a/bin/lib/innosetup/app/Examples/CodeExample1.iss b/bin/lib/innosetup/Examples/CodeExample1.iss similarity index 100% rename from bin/lib/innosetup/app/Examples/CodeExample1.iss rename to bin/lib/innosetup/Examples/CodeExample1.iss diff --git a/bin/lib/innosetup/app/Examples/CodePrepareToInstall.iss b/bin/lib/innosetup/Examples/CodePrepareToInstall.iss similarity index 100% rename from bin/lib/innosetup/app/Examples/CodePrepareToInstall.iss rename to bin/lib/innosetup/Examples/CodePrepareToInstall.iss diff --git a/bin/lib/innosetup/app/Examples/Components.iss b/bin/lib/innosetup/Examples/Components.iss similarity index 100% rename from bin/lib/innosetup/app/Examples/Components.iss rename to bin/lib/innosetup/Examples/Components.iss diff --git a/bin/lib/innosetup/app/Examples/Example1.iss b/bin/lib/innosetup/Examples/Example1.iss similarity index 100% rename from bin/lib/innosetup/app/Examples/Example1.iss rename to bin/lib/innosetup/Examples/Example1.iss diff --git a/bin/lib/innosetup/app/Examples/Example2.iss b/bin/lib/innosetup/Examples/Example2.iss similarity index 100% rename from bin/lib/innosetup/app/Examples/Example2.iss rename to bin/lib/innosetup/Examples/Example2.iss diff --git a/bin/lib/innosetup/app/Examples/Example3.iss b/bin/lib/innosetup/Examples/Example3.iss similarity index 96% rename from bin/lib/innosetup/app/Examples/Example3.iss rename to bin/lib/innosetup/Examples/Example3.iss index 8f64690..8e51bc1 100644 --- a/bin/lib/innosetup/app/Examples/Example3.iss +++ b/bin/lib/innosetup/Examples/Example3.iss @@ -43,6 +43,7 @@ Root: HKA; Subkey: "Software\Classes\.myp\OpenWithProgids"; ValueType: string; V Root: HKA; Subkey: "Software\Classes\MyProgramFile.myp"; ValueType: string; ValueName: ""; ValueData: "My Program File"; Flags: uninsdeletekey Root: HKA; Subkey: "Software\Classes\MyProgramFile.myp\DefaultIcon"; ValueType: string; ValueName: ""; ValueData: "{app}\MyProg.exe,0" Root: HKA; Subkey: "Software\Classes\MyProgramFile.myp\shell\open\command"; ValueType: string; ValueName: ""; ValueData: """{app}\MyProg.exe"" ""%1""" +Root: HKA; Subkey: "Software\Classes\Applications\MyProg.exe\SupportedTypes"; ValueType: string; ValueName: ".myp"; ValueData: "" ; HKA (and HKCU) should only be used for settings which are compatible with ; roaming profiles so settings like paths should be written to HKLM, which ; is only possible in administrative install mode. diff --git a/bin/lib/innosetup/app/Examples/ISPPExample1.iss b/bin/lib/innosetup/Examples/ISPPExample1.iss similarity index 100% rename from bin/lib/innosetup/app/Examples/ISPPExample1.iss rename to bin/lib/innosetup/Examples/ISPPExample1.iss diff --git a/bin/lib/innosetup/app/Examples/ISPPExample1License.txt b/bin/lib/innosetup/Examples/ISPPExample1License.txt similarity index 100% rename from bin/lib/innosetup/app/Examples/ISPPExample1License.txt rename to bin/lib/innosetup/Examples/ISPPExample1License.txt diff --git a/bin/lib/innosetup/app/Examples/Languages.iss b/bin/lib/innosetup/Examples/Languages.iss similarity index 100% rename from bin/lib/innosetup/app/Examples/Languages.iss rename to bin/lib/innosetup/Examples/Languages.iss diff --git a/bin/lib/innosetup/app/Examples/License.txt b/bin/lib/innosetup/Examples/License.txt similarity index 100% rename from bin/lib/innosetup/app/Examples/License.txt rename to bin/lib/innosetup/Examples/License.txt diff --git a/bin/lib/innosetup/app/Examples/MyDll.dll b/bin/lib/innosetup/Examples/MyDll.dll similarity index 100% rename from bin/lib/innosetup/app/Examples/MyDll.dll rename to bin/lib/innosetup/Examples/MyDll.dll diff --git a/bin/lib/innosetup/app/Examples/MyDll/C#/MyDll.cs b/bin/lib/innosetup/Examples/MyDll/C#/MyDll.cs similarity index 100% rename from bin/lib/innosetup/app/Examples/MyDll/C#/MyDll.cs rename to bin/lib/innosetup/Examples/MyDll/C#/MyDll.cs diff --git a/bin/lib/innosetup/app/Examples/MyDll/C#/MyDll.csproj b/bin/lib/innosetup/Examples/MyDll/C#/MyDll.csproj similarity index 100% rename from bin/lib/innosetup/app/Examples/MyDll/C#/MyDll.csproj rename to bin/lib/innosetup/Examples/MyDll/C#/MyDll.csproj diff --git a/bin/lib/innosetup/app/Examples/MyDll/C#/MyDll.sln b/bin/lib/innosetup/Examples/MyDll/C#/MyDll.sln similarity index 100% rename from bin/lib/innosetup/app/Examples/MyDll/C#/MyDll.sln rename to bin/lib/innosetup/Examples/MyDll/C#/MyDll.sln diff --git a/bin/lib/innosetup/app/Examples/MyDll/C#/Properties/AssemblyInfo.cs b/bin/lib/innosetup/Examples/MyDll/C#/Properties/AssemblyInfo.cs similarity index 100% rename from bin/lib/innosetup/app/Examples/MyDll/C#/Properties/AssemblyInfo.cs rename to bin/lib/innosetup/Examples/MyDll/C#/Properties/AssemblyInfo.cs diff --git a/bin/lib/innosetup/app/Examples/MyDll/C#/packages.config b/bin/lib/innosetup/Examples/MyDll/C#/packages.config similarity index 100% rename from bin/lib/innosetup/app/Examples/MyDll/C#/packages.config rename to bin/lib/innosetup/Examples/MyDll/C#/packages.config diff --git a/bin/lib/innosetup/app/Examples/MyDll/C/MyDll.c b/bin/lib/innosetup/Examples/MyDll/C/MyDll.c similarity index 100% rename from bin/lib/innosetup/app/Examples/MyDll/C/MyDll.c rename to bin/lib/innosetup/Examples/MyDll/C/MyDll.c diff --git a/bin/lib/innosetup/app/Examples/MyDll/C/MyDll.def b/bin/lib/innosetup/Examples/MyDll/C/MyDll.def similarity index 100% rename from bin/lib/innosetup/app/Examples/MyDll/C/MyDll.def rename to bin/lib/innosetup/Examples/MyDll/C/MyDll.def diff --git a/bin/lib/innosetup/app/Examples/MyDll/C/MyDll.dsp b/bin/lib/innosetup/Examples/MyDll/C/MyDll.dsp similarity index 100% rename from bin/lib/innosetup/app/Examples/MyDll/C/MyDll.dsp rename to bin/lib/innosetup/Examples/MyDll/C/MyDll.dsp diff --git a/bin/lib/innosetup/app/Examples/MyDll/Delphi/MyDll.dpr b/bin/lib/innosetup/Examples/MyDll/Delphi/MyDll.dpr similarity index 100% rename from bin/lib/innosetup/app/Examples/MyDll/Delphi/MyDll.dpr rename to bin/lib/innosetup/Examples/MyDll/Delphi/MyDll.dpr diff --git a/bin/lib/innosetup/Examples/MyProg-ARM64.exe b/bin/lib/innosetup/Examples/MyProg-ARM64.exe new file mode 100644 index 0000000..4ada8b7 Binary files /dev/null and b/bin/lib/innosetup/Examples/MyProg-ARM64.exe differ diff --git a/bin/lib/innosetup/Examples/MyProg-x64.exe b/bin/lib/innosetup/Examples/MyProg-x64.exe new file mode 100644 index 0000000..2db6eaf Binary files /dev/null and b/bin/lib/innosetup/Examples/MyProg-x64.exe differ diff --git a/bin/lib/innosetup/app/Examples/MyProg.chm b/bin/lib/innosetup/Examples/MyProg.chm similarity index 100% rename from bin/lib/innosetup/app/Examples/MyProg.chm rename to bin/lib/innosetup/Examples/MyProg.chm diff --git a/bin/lib/innosetup/Examples/MyProg.exe b/bin/lib/innosetup/Examples/MyProg.exe new file mode 100644 index 0000000..1c612db Binary files /dev/null and b/bin/lib/innosetup/Examples/MyProg.exe differ diff --git a/bin/lib/innosetup/app/Examples/Readme-Dutch.txt b/bin/lib/innosetup/Examples/Readme-Dutch.txt similarity index 100% rename from bin/lib/innosetup/app/Examples/Readme-Dutch.txt rename to bin/lib/innosetup/Examples/Readme-Dutch.txt diff --git a/bin/lib/innosetup/app/Examples/Readme-German.txt b/bin/lib/innosetup/Examples/Readme-German.txt similarity index 100% rename from bin/lib/innosetup/app/Examples/Readme-German.txt rename to bin/lib/innosetup/Examples/Readme-German.txt diff --git a/bin/lib/innosetup/app/Examples/Readme.txt b/bin/lib/innosetup/Examples/Readme.txt similarity index 100% rename from bin/lib/innosetup/app/Examples/Readme.txt rename to bin/lib/innosetup/Examples/Readme.txt diff --git a/bin/lib/innosetup/app/Examples/UnicodeExample1.iss b/bin/lib/innosetup/Examples/UnicodeExample1.iss similarity index 83% rename from bin/lib/innosetup/app/Examples/UnicodeExample1.iss rename to bin/lib/innosetup/Examples/UnicodeExample1.iss index 396560f..5db0a3b 100644 --- a/bin/lib/innosetup/app/Examples/UnicodeExample1.iss +++ b/bin/lib/innosetup/Examples/UnicodeExample1.iss @@ -1,11 +1,7 @@ -; -- UnicodeExample1.iss -- +; -- UnicodeExample1.iss -- ; Demonstrates some Unicode functionality. ; ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES! -// -#if Ver < EncodeVer(6, 3, 0) - #error This file is UTF-8 encoded without a BOM which requires Inno Setup 6.3.0 or later -#endif [Setup] AppName=ɯɐɹƃoɹd ʎɯ diff --git a/bin/lib/innosetup/app/Examples/UninstallCodeExample1.iss b/bin/lib/innosetup/Examples/UninstallCodeExample1.iss similarity index 100% rename from bin/lib/innosetup/app/Examples/UninstallCodeExample1.iss rename to bin/lib/innosetup/Examples/UninstallCodeExample1.iss diff --git a/bin/lib/innosetup/ISCC.exe b/bin/lib/innosetup/ISCC.exe new file mode 100644 index 0000000..31bc94c Binary files /dev/null and b/bin/lib/innosetup/ISCC.exe differ diff --git a/bin/lib/innosetup/ISCmplr.dll b/bin/lib/innosetup/ISCmplr.dll new file mode 100644 index 0000000..e2b73ed Binary files /dev/null and b/bin/lib/innosetup/ISCmplr.dll differ diff --git a/bin/lib/innosetup/app/ISPP.chm b/bin/lib/innosetup/ISPP.chm similarity index 93% rename from bin/lib/innosetup/app/ISPP.chm rename to bin/lib/innosetup/ISPP.chm index 1b211d6..e61fa79 100644 Binary files a/bin/lib/innosetup/app/ISPP.chm and b/bin/lib/innosetup/ISPP.chm differ diff --git a/bin/lib/innosetup/ISPP.dll b/bin/lib/innosetup/ISPP.dll new file mode 100644 index 0000000..25b04cb Binary files /dev/null and b/bin/lib/innosetup/ISPP.dll differ diff --git a/bin/lib/innosetup/app/ISPPBuiltins.iss b/bin/lib/innosetup/ISPPBuiltins.iss similarity index 98% rename from bin/lib/innosetup/app/ISPPBuiltins.iss rename to bin/lib/innosetup/ISPPBuiltins.iss index 74c3248..3d87d39 100644 --- a/bin/lib/innosetup/app/ISPPBuiltins.iss +++ b/bin/lib/innosetup/ISPPBuiltins.iss @@ -1,7 +1,7 @@ // Inno Setup Preprocessor // -// Inno Setup (C) 1997-2025 Jordan Russell. All Rights Reserved. -// Portions Copyright (C) 2000-2025 Martijn Laan. All Rights Reserved. +// Inno Setup (C) 1997-2023 Jordan Russell. All Rights Reserved. +// Portions Copyright (C) 2000-2023 Martijn Laan. All Rights Reserved. // Portions Copyright (C) 2001-2004 Alex Yackimoff. All Rights Reserved. // // See the ISPP help file for more documentation of the functions defined by this file diff --git a/bin/lib/innosetup/ISetup.chm b/bin/lib/innosetup/ISetup.chm new file mode 100644 index 0000000..615556a Binary files /dev/null and b/bin/lib/innosetup/ISetup.chm differ diff --git a/bin/lib/innosetup/app/Languages/Armenian.isl b/bin/lib/innosetup/Languages/Armenian.isl similarity index 92% rename from bin/lib/innosetup/app/Languages/Armenian.isl rename to bin/lib/innosetup/Languages/Armenian.isl index d0f5eae..148db95 100644 --- a/bin/lib/innosetup/app/Languages/Armenian.isl +++ b/bin/lib/innosetup/Languages/Armenian.isl @@ -1,9 +1,9 @@ -; *** Inno Setup version 6.4.0+ Armenian messages *** +; *** Inno Setup version 6.1.0+ Armenian messages *** ; ; Armenian translation by Hrant Ohanyan ; E-mail: h.ohanyan@haysoft.org ; Translation home page: http://www.haysoft.org -; Last modification date: 2024-11-26 +; Last modification date: 2020-10-06 ; [LangOptions] LanguageName=Հայերեն @@ -34,7 +34,7 @@ ConfirmTitle=Հաստատել ErrorTitle=Սխալ ; *** SetupLdr messages -SetupLdrStartupMessage=Այս ծրագիրը կտեղադրի %1-ը ձեր համակարգչում։ Շարունակե՞լ։ +SetupLdrStartupMessage=Այս ծրագիրը կտեղադրի %1-ը Ձեր համակարգչում։ Շարունակե՞լ։ LdrCannotCreateTemp=Հնարավոր չէ ստեղծել ժամանակավոր ֆայլ։ Տեղադրումը կասեցված է LdrCannotExecTemp=Հնարավոր չէ կատարել ֆայլը ժամանակավոր պանակից։ Տեղադրումը կասեցված է @@ -44,7 +44,7 @@ SetupFileMissing=%1 ֆայլը բացակայում է տեղադրման պան SetupFileCorrupt=Տեղադրվող ֆայլերը վնասված են։ SetupFileCorruptOrWrongVer=Տեղադրվող ֆայլերը վնասված են կամ անհամատեղելի են տեղակայիչի այս տարբերակի հետ։ Ուղղեք խնդիրը կամ ստացեք ծրագրի նոր տարբերակը։ InvalidParameter=Հրամանատողում նշված է սխալ հրաման.%n%n%1 -SetupAlreadyRunning=Տեղակայիչն արդեն աշխատեցված է։ +SetupAlreadyRunning=Տեղակայիչը արդեն աշխատեցված է։ WindowsVersionNotSupported=Ծրագիրը չի աջակցում այս համակարգչում աշխատող Windows-ի տարբերակը։ WindowsServicePackRequired=Ծրագիրը պահանջում է %1-ի Service Pack %2 կամ ավելի նոր։ NotOnThisPlatform=Այս ծրագիրը չի աշխատի %1-ում։ @@ -54,14 +54,14 @@ WinVersionTooLowError=Այս ծրագիրը պահանջում է %1-ի տարբ WinVersionTooHighError=Ծրագիրը չի կարող տեղադրվել %1-ի տարբերակ %2 կամ ավելի նորում AdminPrivilegesRequired=Ծրագիրը տեղադրելու համար պահանջվում են Վարիչի իրավունքներ։ PowerUserPrivilegesRequired=Ծրագիրը տեղադրելու համար պետք է մուտք գործել համակարգ որպես Վարիչ կամ «Փորձառու օգտագործող» (Power Users): -SetupAppRunningError=Տեղակայիչը հայտնաբերել է, որ %1-ն աշխատում է։%n%nՓակեք այն և սեղմեք «Լավ»՝ շարունակելու համար կամ «Չեղարկել»՝ փակելու համար։ -UninstallAppRunningError=Ապատեղադրող ծրագիրը հայտնաբերել է, որ %1-ն աշխատում է։%n%nՓակեք այն և սեղմեք «Լավ»՝ շարունակելու համար կամ «Չեղարկել»՝ փակելու համար։ +SetupAppRunningError=Տեղակայիչը հայտնաբերել է, որ %1-ը աշխատում է։%n%nՓակեք այն և սեղմեք «Լավ»՝ շարունակելու համար կամ «Չեղարկել»՝ փակելու համար։ +UninstallAppRunningError=Ապատեղադրող ծրագիրը հայտնաբերել է, որ %1-ը աշխատում է։%n%nՓակեք այն և սեղմեք «Լավ»՝ շարունակելու համար կամ «Չեղարկել»՝ փակելու համար։ ; *** Startup questions PrivilegesRequiredOverrideTitle=Ընտրեք տեղակայիչի տեղադրման կերպը PrivilegesRequiredOverrideInstruction=Ընտրեք տեղադրման կերպը -PrivilegesRequiredOverrideText1=%1-ը կարող է տեղադրվել բոլոր օգտվողների համար (պահանջում է Վարիչի արտոնություններ) կամ միայն ձեզ համար: -PrivilegesRequiredOverrideText2=%1-ը կարող է տեղադրվել միայն ձեզ համար կամ բոլոր օգտվողների համար (պահանջում է Վարիչի արտոնություններ): +PrivilegesRequiredOverrideText1=%1-ը կարող է տեղադրվել բոլոր օգտվողների համար (պահանջում է վարիչի արտոնություններ) կամ միայն ձեզ համար: +PrivilegesRequiredOverrideText2=%1-ը կարող է տեղադրվել միայն ձեզ համար կամ բոլոր օգտվողների համար (պահանջում է վարիչի արտոնություններ): PrivilegesRequiredOverrideAllUsers=Տեղադրել &բոլոր օգտվողների համար PrivilegesRequiredOverrideAllUsersRecommended=Տեղադրել &բոլոր օգտվողների համար (հանձնարարելի) PrivilegesRequiredOverrideCurrentUser=Տեղադրել միայն &ինձ համար @@ -127,7 +127,7 @@ LicenseNotAccepted=&Չեմ ընդունում արտոնագրային համա ; *** "Information" wizard pages WizardInfoBefore=Տեղեկություն InfoBeforeLabel=Շարունակելուց առաջ կարդացեք այս տեղեկությունը։ -InfoBeforeClickLabel=Եթե պատրաստ եք, ապա սեղմեք «Հաջորդը»։ +InfoBeforeClickLabel=Եթե պատրաստ եք սեղմեք «Հաջորդը»։ WizardInfoAfter=Տեղեկություն InfoAfterLabel=Շարունակելուց առաջ կարդացեք այս տեղեկությունը։ InfoAfterClickLabel=Երբ պատրաստ լինեք շարունակելու՝ սեղմեք «Հաջորդ»։ @@ -135,19 +135,19 @@ InfoAfterClickLabel=Երբ պատրաստ լինեք շարունակելու՝ ; *** "User Information" wizard page WizardUserInfo=Տեղեկություն օգտվողի մասին UserInfoDesc=Գրեք տվյալներ Ձեր մասին -UserInfoName=&Օգտվողի անուն և ազգանուն՝ -UserInfoOrg=&Կազմակերպություն՝ +UserInfoName=&Օգտվողի անուն և ազգանուն. +UserInfoOrg=&Կազմակերպություն. UserInfoSerial=&Հերթական համար. UserInfoNameRequired=Պետք է գրեք Ձեր անունը։ ; *** "Select Destination Location" wizard page -WizardSelectDir=Ընտրել տեղադրման պանակը +WizardSelectDir=Ընտրել տեղակադրման պանակը SelectDirDesc=Ո՞ր պանակում տեղադրել [name]-ը։ SelectDirLabel3=Ծրագիրը կտեղադրի [name]-ը հետևյալ պանակում։ SelectDirBrowseLabel=Սեղմեք «Հաջորդ»՝ շարունակելու համար։ Եթե ցանկանում եք ընտրել այլ պանակ՝ սեղմեք «Ընտրել»։ DiskSpaceGBLabel=Առնվազն [gb] ԳԲ ազատ տեղ է պահանջվում: DiskSpaceMBLabel=Առնվազն [mb] ՄԲ ազատ տեղ է պահանջվում: -CannotInstallToNetworkDrive=Հնարավոր չէ տեղադրել ցանցային հիշասարքում։ +CannotInstallToNetworkDrive=Հնարավոր չէ տեղադրել Ցանցային հիշասարքում։ CannotInstallToUNCPath=Հնարավոր չէ տեղադրել UNC ուղիում։ InvalidPath=Պետք է նշեք ամբողջական ուղին՝ հիշասարքի տառով, օրինակ՝%n%nC:\APP%n%nկամ UNC ուղի՝ %n%n\\սպասարկիչի_անունը\ռեսուրսի_անունը InvalidDrive=Ընտրված հիշասարքը կամ ցանցային ուղին գոյություն չունեն կամ անհասանելի են։ Ընտրեք այլ ուղի։ @@ -156,15 +156,15 @@ DiskSpaceWarning=Առնվազն %1 ԿԲ ազատ տեղ է պահանջվում, DirNameTooLong=Պանակի անունը կամ ուղին երկար են: InvalidDirName=Պանակի նշված անունը անընդունելի է։ BadDirName32=Անվան մեջ չպետք է լինեն հետևյալ գրանշանները՝ %n%n%1 -DirExistsTitle=Պանակը գոյություն ունի +DirExistsTitle=Թղթապանակը գոյություն ունի DirExists=%n%n%1%n%n պանակը արդեն գոյություն ունի։ Այնուհանդերձ, տեղադրե՞լ այստեղ։ -DirDoesntExistTitle=Պանակը գոյություն չունի +DirDoesntExistTitle=Պանակ գոյություն չունի DirDoesntExist=%n%n%1%n%n պանակը գոյություն չունի։ Ստեղծե՞լ այն։ ; *** "Select Components" wizard page WizardSelectComponents=Ընտրել բաղադրիչներ SelectComponentsDesc=Ո՞ր ֆայլերը պետք է տեղադրվեն։ -SelectComponentsLabel2=Նշեք այն ֆայլերը, որոնք պետք է տեղադրվեն, ապանշեք նրանք, որոնք չպետք է տեղադրել։ Սեղմեք «Հաջորդ»՝ շարունակելու համար։ +SelectComponentsLabel2=Նշեք այն ֆայլերը, որոնք պետք է տեղադրվեն, ապանշեք նրանք, որոնք չպետք է տեղադրվեն։ Սեղմեք «Հաջորդ»՝ շարունակելու համար։ FullInstallation=Լրիվ տեղադրում ; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) CompactInstallation=Սեղմված տեղադրում @@ -214,14 +214,8 @@ ErrorFileHash1=Ֆահլի հաշվեգումարը ձախողվեց. %1 ErrorFileHash2=Ֆայլի անվավեր հաշվեգումար. ակընկալվում էր %1, գտնվել է %2 ErrorProgress=Անվավեր ընթացք. %1-ը %2-ից ErrorFileSize=Ֆայլի անվավեր աչփ. ակընկալվում էր %1, գտնվել է %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Դուրս է բերում լրացուցիչ ֆայլերը... -ButtonStopExtraction=&Կանգնեցնել դուրս բերումը -StopExtraction=Համոզվա՞ծ եք, որ ցանկանում եք կանգնեցնել դուրս բերումը: -ErrorExtractionAborted=Դուրս բերումը կասեցված է -ErrorExtractionFailed=Դուրս բերումը ձապխողվեց. %1 ; *** "Preparing to Install" wizard page -WizardPreparing=Տեղադրման նախապատրաստում +WizardPreparing=Նախատրաստում է տեղադրումը PreparingDesc=Տեղակայիչը պատրաստվում է տեղադրել [name]-ը ձեր համակարգչում։ PreviousInstallNotCompleted=Այլ ծրագրի տեղադրումը կամ ապատեղադրումը չի ավարտվել։ Այն ավարտելու համար պետք է վերամեկնարկեք համակարգիչը։%n%nՎերամեկնարկելուց հետո կրկին բացեք տեղակայման փաթեթը՝ [name]-ի տեղադրումը ավարտելու համար։ CannotContinue=Հնարավոր չէ շարունակել։ Սեղմեք «Չեղարկել»՝ ծրագիրը փակելու համար։ @@ -243,7 +237,7 @@ FinishedLabel=[name] ծրագիրը տեղադրվել է Ձեր համակար ClickFinish=Սեղմեք «Ավարտել»՝ տեղակայիչը փակելու համար։ FinishedRestartLabel=[name]-ի տեղադրումը ավարտելու համար պետք է վերամեկնարկել համակարգիչը։ վերամեկնարկե՞լ հիմա։ FinishedRestartMessage=[name]-ի տեղադրումը ավարտելու համար պետք է վերամեկնարկել համակարգիչը։ %n%վերամեկնարկե՞լ հիմա։ -ShowReadmeCheck=Այո, ես ցանկանում եմ նայել README ֆայլը։ +ShowReadmeCheck=Նայել README ֆայլը։ YesRadio=&Այո, վերամեկնարկել NoRadio=&Ոչ, ես հետո վերամեկնարկեմ ; used for example as 'Run MyProg.exe' @@ -254,7 +248,7 @@ RunEntryShellExec=Նայել %1-ը ; *** "Setup Needs the Next Disk" stuff ChangeDiskTitle=Տեղակայիչը պահանջում է հաջորդ սկավառակը SelectDiskLabel2=Զետեղեք %1 սկավառակը և սեղմեք «Լավ»։ %n%nԵթե ֆայլերի պանակը գտնվում է այլ տեղ, ապա ընտրեք ճիշտ ուղին կամ սեղմեք «Ընտրել»։ -PathLabel=&Ուղին՝ +PathLabel=&Ուղին. FileNotInDir2="%1" ֆայլը չի գտնվել "%2"-ում։ Զետեղեք ճիշտ սկավառակ կամ ընտրեք այլ պանակ։ SelectDirectoryLabel=Խնդրում ենք նշել հաջորդ սկավառակի տեղադրությունը։ @@ -274,15 +268,15 @@ StatusCreateIniEntries=INI ֆայլերի ստեղծում... StatusCreateRegistryEntries=Գրանցամատյանի գրանցումների ստեղծում... StatusRegisterFiles=Ֆայլերի գրանցում... StatusSavingUninstall=Ապատեղադրելու տեղեկության պահում... -StatusRunProgram=Ավարտում է տեղադրումը... +StatusRunProgram=Տեղադրելու ավարտ... StatusRestartingApplications=Ծրագրերի վերամեկնարկում... StatusRollback=Փոփոխությունների հետ բերում... ; *** Misc. errors -ErrorInternal2=Ներքին սխալ՝ %1 -ErrorFunctionFailedNoCode=%1-ը ձախողվեց -ErrorFunctionFailed=%1-ը ձախողվեց, կոդ՝ %2 -ErrorFunctionFailedWithMessage=%1-ը ձախողվեց, կոդ՝ %2.%n%3 +ErrorInternal2=Ներքին սխալ %1 +ErrorFunctionFailedNoCode=%1. վթար +ErrorFunctionFailed=%1. վթար, կոդը՝ %2 +ErrorFunctionFailedWithMessage=%1. վթար, կոդը՝ %2.%n%3 ErrorExecutingProgram=Հնարավոր չէ կատարել %n%1 ֆայլը ; *** Registry errors @@ -334,7 +328,7 @@ UninstallDisplayNameMarkCurrentUser=Ընթացիկ օգտվողը ; *** Post-installation errors ErrorOpeningReadme=Սխալ՝ README ֆայլը բացելիս։ -ErrorRestartingComputer=Հնարավոր չեղավ վերամեկնարկել համակարգիչը։ Ինքնուրույն փորձեք։ +ErrorRestartingComputer=Հնարավոր չեղավ վերամեկնարկել համակարգիչը։ Ինքներդ փորձեք։ ; *** Uninstaller messages UninstallNotFound="%1" ֆայլը գոյություն չունի։ Հնարավոր չէ ապատեղադրել։ @@ -353,8 +347,8 @@ UninstallDataCorrupted="%1" ֆայլը վնասված է։ Հնարավոր չէ ; *** Uninstallation phase messages ConfirmDeleteSharedFileTitle=Հեռացնե՞լ համատեղ օգտագործվող ֆայլը։ ConfirmDeleteSharedFile2=Համակարգը նշում է, որ հետևյալ համատեղ օգտագործվող ֆայլը այլևս չի օգտագործվում այլ ծրագրի կողմից։ Ապատեղադրե՞լ այն։ %n%nԵթե համոզված չեք սեղմեք «Ոչ»։ -SharedFileNameLabel=Ֆայլի անուն՝ -SharedFileLocationLabel=Տեղադրություն՝ +SharedFileNameLabel=Ֆայլի անուն. +SharedFileLocationLabel=Տեղադրություն. WizardUninstalling=Ապատեղադրելու վիճակ StatusUninstalling=%1-ի ապատեղադրում... diff --git a/bin/lib/innosetup/app/Languages/BrazilianPortuguese.isl b/bin/lib/innosetup/Languages/BrazilianPortuguese.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/BrazilianPortuguese.isl rename to bin/lib/innosetup/Languages/BrazilianPortuguese.isl index 4095753..69edb37 100644 --- a/bin/lib/innosetup/app/Languages/BrazilianPortuguese.isl +++ b/bin/lib/innosetup/Languages/BrazilianPortuguese.isl @@ -1,4 +1,4 @@ -; *** Inno Setup version 6.4.0+ Brazilian Portuguese messages made by Cesar82 cesar.zanetti.82@gmail.com *** +; *** Inno Setup version 6.1.0+ Brazilian Portuguese messages made by Cesar82 cesar.zanetti.82@gmail.com *** ; ; To download user-contributed translations of this file, go to: ; https://jrsoftware.org/files/istrans/ @@ -222,13 +222,6 @@ ErrorFileHash2=Hash de arquivo inv ErrorProgress=Progresso invlido: %1 de %2 ErrorFileSize=Tamanho de arquivo invlido: esperado %1, encontrado %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Extraindo arquivos adicionais... -ButtonStopExtraction=&Parar extrao -StopExtraction=Tem certeza de que deseja parar a extrao? -ErrorExtractionAborted=Extrao abortada -ErrorExtractionFailed=Extrao falhou: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Preparando pra Instalar PreparingDesc=O instalador est se preparando pra instalar o [name] no seu computador. diff --git a/bin/lib/innosetup/app/Languages/Bulgarian.isl b/bin/lib/innosetup/Languages/Bulgarian.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/Bulgarian.isl rename to bin/lib/innosetup/Languages/Bulgarian.isl index 1c1caa3..d67871f 100644 --- a/bin/lib/innosetup/app/Languages/Bulgarian.isl +++ b/bin/lib/innosetup/Languages/Bulgarian.isl @@ -1,4 +1,4 @@ -; *** Inno Setup version 6.4.0+ Bulgarian messages *** +; *** Inno Setup version 6.1.0+ Bulgarian messages *** ; Ventsislav Dimitrov ; ; За да изтеглите преводи на този файл, предоставени от потребители, посетете: @@ -222,13 +222,6 @@ ErrorFileHash2=Невалидна контролна сума на файл: о ErrorProgress=Невалиден напредък: %1 of %2 ErrorFileSize=Невалиден размер на файл: очакван %1, открит %2 -; *** Страница "TExtractionWizardPage" на съветника и Extract7ZipArchive -ExtractionLabel=Извличане на допълнителни файлове... -ButtonStopExtraction=&Спри извличането -StopExtraction=Сигурни ли сте, че искате да спрете извличането? -ErrorExtractionAborted=Прекратено извличане -ErrorExtractionFailed=Извличането беше неуспешно: %1 - ; *** Страница "Подготовка за инсталиране" на съветника WizardPreparing=Подготовка за инсталиране PreparingDesc=Инсталаторът се подготвя да инсталира [name] във Вашия компютър. diff --git a/bin/lib/innosetup/app/Languages/Catalan.isl b/bin/lib/innosetup/Languages/Catalan.isl similarity index 97% rename from bin/lib/innosetup/app/Languages/Catalan.isl rename to bin/lib/innosetup/Languages/Catalan.isl index 1706364..5fc8682 100644 --- a/bin/lib/innosetup/app/Languages/Catalan.isl +++ b/bin/lib/innosetup/Languages/Catalan.isl @@ -1,14 +1,12 @@ -; *** Inno Setup version 6.4.0+ Catalan messages *** +; *** Inno Setup version 6.1.0+ Catalan messages *** ; -; Translated by Carles Millan (email: carles24@carlesmillan.cat) +; Translated by Carles Millan (email: carles@carlesmillan.cat) ; ; To download user-contributed translations of this file, go to: ; https://jrsoftware.org/files/istrans/ ; ; Note: When translating this text, do not add periods (.) to the end of ; messages that didn't have them already, because on those messages Inno -; Setup adds the periods automatically (appending a period would result in -; two periods being displayed). [LangOptions] @@ -213,13 +211,6 @@ ErrorFileHash2=El hash del fitxer ErrorProgress=Progrs invlid: %1 de %2 ErrorFileSize=Mida del fitxer invlida: s'esperava %1, s'ha trobat %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Extraient els fitxers addicionals... -ButtonStopExtraction=&Atura l'extracci -StopExtraction=Esteu segur que voleu aturar l'extracci? -ErrorExtractionAborted=Extracci cancellada -ErrorExtractionFailed=La descrrega ha fallat: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Preparant la installaci PreparingDesc=Preparant la installaci de [name] al vostre ordinador. diff --git a/bin/lib/innosetup/app/Languages/Corsican.isl b/bin/lib/innosetup/Languages/Corsican.isl similarity index 86% rename from bin/lib/innosetup/app/Languages/Corsican.isl rename to bin/lib/innosetup/Languages/Corsican.isl index 4a7df99..6f03bca 100644 --- a/bin/lib/innosetup/app/Languages/Corsican.isl +++ b/bin/lib/innosetup/Languages/Corsican.isl @@ -1,4 +1,4 @@ -; *** Inno Setup version 6.4.0+ Corsican messages *** +; *** Inno Setup version 6.1.0+ Corsican messages *** ; ; To download user-contributed translations of this file, go to: ; https://jrsoftware.org/files/istrans/ @@ -8,21 +8,19 @@ ; Setup adds the periods automatically (appending a period would result in ; two periods being displayed). -; Created and maintained by Patriccollu di Santa Maria è Sichè, 2011-2024 +; Created and maintained by Patriccollu di Santa Maria è Sichè ; Schedariu di traduzzione in lingua corsa da Patriccollu ; E-mail: Patrick.Santa-Maria[at]LaPoste.Net ; ; Changes: -; November 18th, 2024 - Update to version 6.4.0 -; February 11th, 2024 - Changes to version 6.3.0 -; November 14th, 2020 - Changes to version 6.1.2 -; July 25th, 2020 - Update to version 6.1.0 -; July 1st, 2020 - Update to version 6.0.5+ -; October 6th, 2019 - Update to version 6.0.3 -; January 20th, 2019 - Update to version 6.0.0 -; April 9th, 2016 - Changes to version 5.6.0 -; January 3rd, 2013 - Update to version 5.5.3 -; August 29th, 2012 - Update to version 5.5.2 +; November 14th, 2020 - Changes to current version 6.1.0+ +; July 25th, 2020 - Update to version 6.1.0+ +; July 1st, 2020 - Update to version 6.0.6+ +; October 6th, 2019 - Update to version 6.0.3+ +; January 20th, 2019 - Update to version 6.0.0+ +; April 9th, 2016 - Changes to current version 5.5.3+ +; January 3rd, 2013 - Update to version 5.5.3+ +; August 8th, 2012 - Update to version 5.5.0+ ; September 17th, 2011 - Creation for version 5.1.11 [LangOptions] @@ -76,7 +74,7 @@ OnlyOnTheseArchitectures=Stu prugramma pò solu esse installatu nant’à e vers WinVersionTooLowError=Stu prugramma richiede %1 versione %2 o più recente. WinVersionTooHighError=Stu prugramma ùn pò micca esse installatu nant’à %1 version %2 o più recente. AdminPrivilegesRequired=Ci vole à esse cunnettu cum’è un amministratore quandu voi installate stu prugramma. -PowerUserPrivilegesRequired=Ci vole à esse cunnettu cum’è un amministratore o fà parte di u gruppu « Utilizatori cù putere » quandu voi installate stu prugramma. +PowerUserPrivilegesRequired=Ci vole à esse cunnettu cum’è un amministratore o fà parte di u gruppu « Utilizatori cù putere » quandu voi installate stu prugramma. SetupAppRunningError=L’assistente hà vistu chì %1 era dighjà in corsu.%n%nCi vole à chjode tutte e so finestre avà, eppò sceglie Vai per cuntinuà, o Abbandunà per compie. UninstallAppRunningError=A disinstallazione hà vistu chì %1 era dighjà in corsu.%n%nCi vole à chjode tutte e so finestre avà, eppò sceglie Vai per cuntinuà, o Abbandunà per compie. @@ -91,8 +89,8 @@ PrivilegesRequiredOverrideCurrentUser=Installazione solu per &mè PrivilegesRequiredOverrideCurrentUserRecommended=Installazione solu per &mè (ricumandatu) ; *** Misc. errors -ErrorCreatingDir=L’assistente ùn hà micca pussutu creà u cartulare « %1 » -ErrorTooManyFilesInDir=Impussibule di creà un schedariu in u cartulare « %1 » perchè ellu ne cuntene troppu +ErrorCreatingDir=L’assistente ùn hà micca pussutu creà u cartulare « %1 » +ErrorTooManyFilesInDir=Impussibule di creà un schedariu in u cartulare « %1 » perchè ellu ne cuntene troppu ; *** Setup common messages ExitSetupTitle=Compie l’assistente @@ -109,10 +107,10 @@ ButtonNext=&Seguente > ButtonInstall=&Installà ButtonOK=Vai ButtonCancel=Abbandunà -ButtonYes=&Sì -ButtonYesToAll=Sì per &tutti -ButtonNo=&Nò -ButtonNoToAll=Nò per t&utti +ButtonYes=&Iè +ButtonYesToAll=Iè per &tutti +ButtonNo=I&nnò +ButtonNoToAll=Innò per t&utti ButtonFinish=&Piantà ButtonBrowse=&Sfuglià… ButtonWizardBrowse=&Sfuglià… @@ -134,11 +132,11 @@ WelcomeLabel1=Benvenuta in l’assistente d’installazione di [name] WelcomeLabel2=Quessu installerà [name/ver] nant’à l’urdinatore.%n%nHè ricumandatu di chjode tutte l’altre appiecazioni nanzu di cuntinuà. ; *** "Password" wizard page -WizardPassword=Parolla d’intesa -PasswordLabel1=L’installazione hè prutetta da una parolla d’intesa. -PasswordLabel3=Ci vole à pruvede a parolla d’intesa, eppò sceglie Seguente per cuntinuà. E parolle d’intesa ponu cuntene maiuscule è minuscule. -PasswordEditLabel=&Parolla d’intesa : -IncorrectPassword=A parolla d’intesa stampittata ùn hè micca curretta. Ci vole à pruvà torna. +WizardPassword=Parolla d’entrata +PasswordLabel1=L’installazione hè prutetta da una parolla d’entrata. +PasswordLabel3=Ci vole à pruvede a parolla d’entrata, eppò sceglie Seguente per cuntinuà. E parolle d’entrata ponu cuntene maiuscule è minuscule. +PasswordEditLabel=&Parolla d’entrata : +IncorrectPassword=A parolla d’entrata pruvista ùn hè micca curretta. Ci vole à pruvà torna. ; *** "License Agreement" wizard page WizardLicense=Cuntrattu di licenza @@ -157,11 +155,11 @@ InfoAfterClickLabel=Quandu site prontu à cuntinuà cù l’assistente, sciglite ; *** "User Information" wizard page WizardUserInfo=Infurmazioni di l’utilizatore -UserInfoDesc=Ci vole à stampittà e vostre infurmazioni. +UserInfoDesc=Ci vole à scrive e vostre infurmazioni. UserInfoName=&Nome d’utilizatore : UserInfoOrg=&Urganismu : -UserInfoSerial=&Numeru di seria : -UserInfoNameRequired=Ci vole à stampittà un nome. +UserInfoSerial=&Numeru di Seria : +UserInfoNameRequired=Ci vole à scrive un nome. ; *** "Select Destination Location" wizard page WizardSelectDir=Selezziunà u locu di destinazione @@ -172,7 +170,7 @@ DiskSpaceGBLabel=Hè richiestu omancu [gb] Go di spaziu liberu di discu. DiskSpaceMBLabel=Hè richiestu omancu [mb] Mo di spaziu liberu di discu. CannotInstallToNetworkDrive=L’assistente ùn pò micca installà nant’à un discu di a reta. CannotInstallToUNCPath=L’assistente ùn pò micca installà in un chjassu UNC. -InvalidPath=Ci vole à stampittà un chjassu cumplettu cù a lettera di u lettore ; per indettu :%n%nC:\APP%n%no un chjassu UNC in a forma :%n%n\\servitore\spartu +InvalidPath=Ci vole à scrive un chjassu cumplettu cù a lettera di u lettore ; per indettu :%n%nC:\APP%n%no un chjassu UNC in a forma :%n%n\\servitore\spartu InvalidDrive=U lettore o u chjassu UNC spartu ùn esiste micca o ùn hè micca accessibule. Ci vole à selezziunane un altru. DiskSpaceWarningTitle=Ùn basta u spaziu discu DiskSpaceWarning=L’assistente richiede omancu %1 Ko di spaziu liberu per installà, ma u lettore selezziunatu hà solu %2 Ko dispunibule.%n%nVulete cuntinuà quantunque ? @@ -187,13 +185,13 @@ DirDoesntExist=U cartulare :%n%n%1%n%nùn esiste micca. Vulete chì stu cartula ; *** "Select Components" wizard page WizardSelectComponents=Selezzione di cumpunenti SelectComponentsDesc=Chì cumpunenti devenu esse installati ? -SelectComponentsLabel2=Selezziunà i cumpunenti à installà ; diselezziunà quelli ch’ùn devenu micca esse installati. Sceglie Seguente quandu site prontu à cuntinuà. +SelectComponentsLabel2=Selezziunà i cumpunenti à installà ; deselezziunà quelli ch’ùn devenu micca esse installati. Sceglie Seguente quandu site prontu à cuntinuà. FullInstallation=Installazione sana ; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) CompactInstallation=Installazione cumpatta CustomInstallation=Installazione persunalizata NoUninstallWarningTitle=Cumpunenti esistenti -NoUninstallWarning=L’assistente hà vistu chì sti cumpunenti sò dighjà installati nant’à l’urdinatore :%n%n%1%n%nDiselezziunà sti cumpunenti ùn i disinstallerà micca.%n%nVulete cuntinuà quantunque ? +NoUninstallWarning=L’assistente hà vistu chì sti cumpunenti sò dighjà installati nant’à l’urdinatore :%n%n%1%n%nDeselezziunà sti cumpunenti ùn i disinstallerà micca.%n%nVulete cuntinuà quantunque ? ComponentSize1=%1 Ko ComponentSize2=%1 Mo ComponentsDiskSpaceGBLabel=A selezzione attuale richiede omancu [gb] Go di spaziu liberu nant’à u discu. @@ -205,32 +203,32 @@ SelectTasksDesc=Chì trattamenti addizziunali vulete fà ? SelectTasksLabel2=Selezziunà i trattamenti addizziunali chì l’assistente deve fà durante l’installazione di [name], eppò sceglie Seguente. ; *** "Select Start Menu Folder" wizard page -WizardSelectProgramGroup=Selezzione di u cartulare di u listinu « Démarrer » +WizardSelectProgramGroup=Selezzione di u cartulare di u listinu « Démarrer » SelectStartMenuFolderDesc=Induve l’assistente deve piazzà l’accurtatoghji di u prugramma ? -SelectStartMenuFolderLabel3=L’assistente piazzerà l’accurtatoghji di u prugramma in stu cartulare di u listinu « Démarrer ». +SelectStartMenuFolderLabel3=L’assistente piazzerà l’accurtatoghji di u prugramma in stu cartulare di u listinu « Démarrer ». SelectStartMenuFolderBrowseLabel=Per cuntinuà, sceglie Seguente. S’è voi preferisce selezziunà un altru cartulare, sciglite Sfuglià. -MustEnterGroupName=Ci vole à stampittà un nome di cartulare. +MustEnterGroupName=Ci vole à scrive un nome di cartulare. GroupNameTooLong=U nome di cartulare o u chjassu hè troppu longu. InvalidGroupName=U nome di cartulare ùn hè micca accettevule. BadGroupName=U nome di u cartulare ùn pò micca cuntene alcunu di sti caratteri :%n%n%1 -NoProgramGroupCheck2=Ùn creà &micca di cartulare in u listinu « Démarrer » +NoProgramGroupCheck2=Ùn creà &micca di cartulare in u listinu « Démarrer » ; *** "Ready to Install" wizard page WizardReady=Prontu à Installà ReadyLabel1=Avà l’assistente hè prontu à principià l’installazione di [name] nant’à l’urdinatore. -ReadyLabel2a=Sceglie Installà per cuntinuà l’installazione, o nant’à Precedente per rivede o cambià qualchì parametru. +ReadyLabel2a=Sceglie Installà per cuntinuà l’installazione, o nant’à Precedente per rivede o cambià qualchì preferenza. ReadyLabel2b=Sceglie Installà per cuntinuà l’installazione. ReadyMemoUserInfo=Infurmazioni di l’utilizatore : ReadyMemoDir=Cartulare d’installazione : ReadyMemoType=Tipu d’installazione : ReadyMemoComponents=Cumpunenti selezziunati : -ReadyMemoGroup=Cartulare di u listinu « Démarrer » : +ReadyMemoGroup=Cartulare di u listinu « Démarrer » : ReadyMemoTasks=Trattamenti addizziunali : ; *** TDownloadWizardPage wizard page and DownloadTemporaryFile DownloadingLabel=Scaricamentu di i schedarii addiziunali… ButtonStopDownload=&Piantà u scaricamentu -StopDownload=Da veru, vulete piantà u scaricamentu ? +StopDownload=Site sicuru di vulè piantà u scaricamentu ? ErrorDownloadAborted=Scaricamentu interrottu ErrorDownloadFailed=Scaricamentu fiascu : %1 %2 ErrorDownloadSizeFailed=Fiascu per ottene a dimensione : %1 %2 @@ -239,13 +237,6 @@ ErrorFileHash2=Tazzeghju di u schedariu inaccettevule : aspettatu %1, trovu %2 ErrorProgress=Prugressione inaccettevule : %1 di %2 ErrorFileSize=Dimensione di u schedariu inaccettevule : aspettatu %1, trovu %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Estrazzione di i schedarii addiziunali… -ButtonStopExtraction=&Piantà l’estrazzione -StopExtraction=Da veru, vulete piantà l’estrazzione ? -ErrorExtractionAborted=Estrazzione interrotta -ErrorExtractionFailed=Fiascu di l’estrazzione : %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Preparazione di l’installazione PreparingDesc=L’assistente appronta l’installazione di [name] nant’à l’urdinatore. @@ -279,9 +270,9 @@ RunEntryShellExec=Fighjà %1 ; *** "Setup Needs the Next Disk" stuff ChangeDiskTitle=L’assistente hà bisogniu di u discu seguente -SelectDiskLabel2=Mette u discu %1 è sceglie Vai.%n%nS’è i schedarii di stu discu si trovanu in un’altru cartulare chè quellu affissatu inghjò, stampittà u chjassu currettu o sceglie Sfuglià. +SelectDiskLabel2=Mette u discu %1 è sceglie Vai.%n%nS’è i schedarii di stu discu si trovanu in un’altru cartulare chì quellu indicatu inghjò, scrive u chjassu currettu o sceglie Sfuglià. PathLabel=&Chjassu : -FileNotInDir2=U schedariu « %1 » ùn si truva micca in « %2 ». Mette u discu curretu o sceglie un’altru cartulare. +FileNotInDir2=U schedariu « %1 » ùn si truva micca in « %2 ». Mette u discu curretu o sceglie un’altru cartulare. SelectDirectoryLabel=Ci vole à specificà induve si trova u discu seguente. ; *** Installation phase messages @@ -307,8 +298,8 @@ StatusRollback=Annulazione di i mudificazioni… ; *** Misc. errors ErrorInternal2=Sbagliu internu : %1 ErrorFunctionFailedNoCode=Fiascu di %1 -ErrorFunctionFailed=Fiascu di %1 ; codice %2 -ErrorFunctionFailedWithMessage=Fiascu di %1 ; codice %2.%n%3 +ErrorFunctionFailed=Fiascu di %1 ; codice %2 +ErrorFunctionFailedWithMessage=Fiascu di %1 ; codice %2.%n%3 ErrorExecutingProgram=Impussibule d’eseguisce u schedariu :%n%1 ; *** Registry errors @@ -317,13 +308,13 @@ ErrorRegCreateKey=Sbagliu durante a creazione di a chjave di registru :%n%1\%2 ErrorRegWriteKey=Sbagliu durante a scrittura di a chjave di registru :%n%1\%2 ; *** INI errors -ErrorIniEntry=Sbagliu durante a creazione di l’elementu INI in u schedariu « %1 ». +ErrorIniEntry=Sbagliu durante a creazione di l’elementu INI in u schedariu « %1 ». ; *** File copying errors FileAbortRetryIgnoreSkipNotRecommended=Ignurà stu &schedariu (micca ricumandatu) FileAbortRetryIgnoreIgnoreNotRecommended=&Ignurà u sbagliu è cuntinuà (micca ricumandatu) SourceIsCorrupted=U schedariu d’urigine hè alteratu -SourceDoesntExist=U schedariu d’urigine « %1 » ùn esiste micca +SourceDoesntExist=U schedariu d’urigine « %1 » ùn esiste micca ExistingFileReadOnly2=U schedariu esistente hà un attributu di lettura-sola è ùn pò micca esse rimpiazzatu. ExistingFileReadOnlyRetry=&Caccià l’attributu di lettura-sola è pruvà torna ExistingFileReadOnlyKeepExisting=Cunservà u schedariu &esistente @@ -334,7 +325,7 @@ FileExistsOverwriteExisting=&Rimpiazzà u schedariu chì esiste FileExistsKeepExisting=Cunservà u schedariu &esistente FileExistsOverwriteOrKeepAll=&Fà què per l’altri cunflitti ExistingFileNewerSelectAction=Selezziunate un’azzione -ExistingFileNewer2=U schedariu esistente hè più recente chè quellu chì l’assistente prova d’installà. +ExistingFileNewer2=U schedariu esistente hè più recente chì quellu chì l’assistente prova d’installà. ExistingFileNewerOverwriteExisting=&Rimpiazzà u schedariu chì esiste ExistingFileNewerKeepExisting=Cunservà u schedariu &esistente (ricumandatu) ExistingFileNewerOverwriteOrKeepAll=&Fà què per l’altri cunflitti @@ -364,18 +355,18 @@ ErrorOpeningReadme=Un sbagliu hè accadutu pruvendu d’apre u schedariu LISEZMO ErrorRestartingComputer=L’assistente ùn hà micca pussutu ridimarrà l’urdinatore. Ci vole à fallu manualmente. ; *** Uninstaller messages -UninstallNotFound=U schedariu « %1 » ùn esiste micca. Impussibule di disinstallà. -UninstallOpenError=U schedariu « %1 » ùn pò micca esse apertu. Impussibule di disinstallà -UninstallUnsupportedVer=U ghjurnale di disinstallazione « %1 » hè in una forma scunnisciuta da sta versione di l’assistente di disinstallazione. Impussibule di disinstallà +UninstallNotFound=U schedariu « %1 » ùn esiste micca. Impussibule di disinstallà. +UninstallOpenError=U schedariu« %1 » ùn pò micca esse apertu. Impussibule di disinstallà +UninstallUnsupportedVer=U ghjurnale di disinstallazione « %1 » hè in una forma scunnisciuta da sta versione di l’assistente di disinstallazione. Impussibule di disinstallà UninstallUnknownEntry=Un elementu scunisciutu (%1) hè statu trovu in u ghjurnale di disinstallazione -ConfirmUninstall=Da veru, vulete caccià cumpletamente %1 è tutti i so cumpunenti ? +ConfirmUninstall=Site sicuru di vulè caccià cumpletamente %1 è tutti i so cumpunenti ? UninstallOnlyOnWin64=St’appiecazione pò esse disinstallata solu cù una versione 64-bit di Windows. OnlyAdminCanUninstall=St’appiecazione pò esse disinstallata solu da un utilizatore di u gruppu d’amministratori. UninstallStatusLabel=Ci vole à aspettà chì %1 sia cacciatu di l’urdinatore. UninstalledAll=%1 hè statu cacciatu bè da l’urdinatore. UninstalledMost=A disinstallazione di %1 hè compia.%n%nQualchì elementu ùn pò micca esse cacciatu. Ci vole à cacciallu manualmente. UninstalledAndNeedsRestart=Per compie a disinstallazione di %1, l’urdinatore deve esse ridimarratu.%n%nVulete ridimarrà l’urdinatore subitu ? -UninstallDataCorrupted=U schedariu « %1 » hè alteratu. Impussibule di disinstallà +UninstallDataCorrupted=U schedariu « %1 » hè alteratu. Impussibule di disinstallà ; *** Uninstallation phase messages ConfirmDeleteSharedFileTitle=Caccià i schedarii sparti ? diff --git a/bin/lib/innosetup/app/Languages/Czech.isl b/bin/lib/innosetup/Languages/Czech.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/Czech.isl rename to bin/lib/innosetup/Languages/Czech.isl index 33a6f24..9e37db5 100644 --- a/bin/lib/innosetup/app/Languages/Czech.isl +++ b/bin/lib/innosetup/Languages/Czech.isl @@ -1,6 +1,6 @@ ; ******************************************************* ; *** *** -; *** Inno Setup version 6.4.0+ Czech messages *** +; *** Inno Setup version 6.1.0+ Czech messages *** ; *** *** ; *** Original Author: *** ; *** *** @@ -102,7 +102,7 @@ SelectLanguageLabel=Zvolte jazyk, kter ; *** Common wizard text ClickNext=Pokraujte klepnutm na tlatko Dal, nebo ukonete prvodce instalac tlatkem Zruit. BeveledLabel= -BrowseDialogTitle=Zvolte sloku +BrowseDialogTitle=Vyhledat sloku BrowseDialogLabel=Z ne uvedenho seznamu vyberte sloku a klepnte na tlatko OK. NewFolderName=Nov sloka @@ -216,13 +216,6 @@ ErrorFileHash2=Neplatn ErrorProgress=Neplatn prbh: %1 of %2 ErrorFileSize=Neplatn velikost souboru: oekvno %1, nalezeno %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Extrahuj se dal soubory... -ButtonStopExtraction=&Zastavit extrahovn -StopExtraction=Urit chcete extrahovn zastavit? -ErrorExtractionAborted=Extrahovn perueno -ErrorExtractionFailed=Extrahovn selhalo: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Pprava k instalaci PreparingDesc=Prvodce instalac pipravuje instalaci produktu [name] na V pota. diff --git a/bin/lib/innosetup/app/Languages/Danish.isl b/bin/lib/innosetup/Languages/Danish.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/Danish.isl rename to bin/lib/innosetup/Languages/Danish.isl index b982bf2..3939de2 100644 --- a/bin/lib/innosetup/app/Languages/Danish.isl +++ b/bin/lib/innosetup/Languages/Danish.isl @@ -1,4 +1,4 @@ -; *** Inno Setup version 6.4.0+ Danish messages *** +; *** Inno Setup version 6.1.0+ Danish messages *** ; ; To download user-contributed translations of this file, go to: ; https://jrsoftware.org/files/istrans/ @@ -223,13 +223,6 @@ ErrorFileHash2=Fejl i fil hash v ErrorProgress=Fejl i trin: %1 af %2 ErrorFileSize=Fejl i filstrrelse: forventet %1, fundet %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Udpakker vrige filer... -ButtonStopExtraction=&Afbryd udpakning -StopExtraction=Er du sikker p at du nsker at afbryde udpakningen? -ErrorExtractionAborted=Udpakning afbrudt -ErrorExtractionFailed=Fejl under udpakning: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Klargring af installationen PreparingDesc=Installationsprogrammet gr klar til at installere [name] p din computer. diff --git a/bin/lib/innosetup/app/Languages/Dutch.isl b/bin/lib/innosetup/Languages/Dutch.isl similarity index 97% rename from bin/lib/innosetup/app/Languages/Dutch.isl rename to bin/lib/innosetup/Languages/Dutch.isl index f582c3e..761528b 100644 --- a/bin/lib/innosetup/app/Languages/Dutch.isl +++ b/bin/lib/innosetup/Languages/Dutch.isl @@ -1,8 +1,8 @@ -; *** Inno Setup version 6.4.0+ Dutch messages *** +; *** Inno Setup version 6.1.0+ Dutch messages *** ; ; This file is based on user-contributed translations by various authors ; -; Maintained by Martijn Laan (mlaan@innosetup.nl) +; Maintained by Martijn Laan (mlaan@jrsoftware.org) [LangOptions] LanguageName=Nederlands @@ -194,23 +194,16 @@ ReadyMemoTasks=Extra taken: ; *** TDownloadWizardPage wizard page and DownloadTemporaryFile DownloadingLabel=Bezig met het downloaden van extra bestanden... -ButtonStopDownload=&Stop downloaden -StopDownload=Weet u zeker dat u het downloaden wilt stoppen? -ErrorDownloadAborted=Downloaden gestopt -ErrorDownloadFailed=Downloaden mislukt: %1 %2 +ButtonStopDownload=&Stop download +StopDownload=Weet u zeker dat u de download wilt stoppen? +ErrorDownloadAborted=Download afgebroken +ErrorDownloadFailed=Download mislukt: %1 %2 ErrorDownloadSizeFailed=Ophalen grootte mislukt: %1 %2 ErrorFileHash1=Bestand hashing mislukt: %1 ErrorFileHash2=Ongeldige bestandshash: %1 verwacht, %2 gevonden ErrorProgress=Ongeldige voortgang: %1 van %2 ErrorFileSize=Ongeldige bestandsgrootte: %1 verwacht, %2 gevonden -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Bezig met het uitpakken van extra bestanden... -ButtonStopExtraction=&Stop uitpakken -StopExtraction=Weet u zeker dat u het uitpakken wilt stoppen? -ErrorExtractionAborted=Uitpakken gestopt -ErrorExtractionFailed=Uitpakken mislukt: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Bezig met het voorbereiden van de installatie PreparingDesc=Setup is bezig met het voorbereiden van de installatie van [name]. diff --git a/bin/lib/innosetup/app/Languages/Finnish.isl b/bin/lib/innosetup/Languages/Finnish.isl similarity index 97% rename from bin/lib/innosetup/app/Languages/Finnish.isl rename to bin/lib/innosetup/Languages/Finnish.isl index 548e9cf..17a5f25 100644 --- a/bin/lib/innosetup/app/Languages/Finnish.isl +++ b/bin/lib/innosetup/Languages/Finnish.isl @@ -1,8 +1,8 @@ -; *** Inno Setup version 6.4.0+ Finnish messages *** +; *** Inno Setup version 6.1.0+ Finnish messages *** ; ; Finnish translation by Antti Karttunen ; E-mail: antti.j.karttunen@iki.fi -; Last modification date: 2024-11-30 +; Last modification date: 2020-08-02 [LangOptions] LanguageName=Suomi @@ -204,13 +204,6 @@ ErrorFileHash2=Tiedoston tiiviste on virheellinen: odotettu %1, l ErrorProgress=Virheellinen edistyminen: %1 / %2 ErrorFileSize=Virheellinen tiedoston koko: odotettu %1, lydetty %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Puretaan tarvittavia tiedostoja... -ButtonStopExtraction=&Pysyt purku -StopExtraction=Oletko varma, ett haluat pysytt tiedostojen purkamisen? -ErrorExtractionAborted=Tiedostojen purkaminen keskeytettiin -ErrorExtractionFailed=Tiedoston purkaminen eponnistui: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Valmistellaan asennusta PreparingDesc=Valmistaudutaan asentamaan [name] koneellesi. diff --git a/bin/lib/innosetup/app/Languages/French.isl b/bin/lib/innosetup/Languages/French.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/French.isl rename to bin/lib/innosetup/Languages/French.isl index b6230d5..7c8db92 100644 --- a/bin/lib/innosetup/app/Languages/French.isl +++ b/bin/lib/innosetup/Languages/French.isl @@ -1,4 +1,4 @@ -; *** Inno Setup version 6.4.0+ French messages *** +; *** Inno Setup version 6.1.0+ French messages *** ; ; To download user-contributed translations of this file, go to: ; https://jrsoftware.org/files/istrans/ @@ -26,7 +26,6 @@ ; "retry": "Recommencer" au lieu de "Réessayer" ; + Added new 6.0.0 messages ; + Added new 6.1.0 messages -; + Added new 6.4.0 messages [LangOptions] ; The following three entries are very important. Be sure to read and @@ -242,13 +241,6 @@ ErrorFileHash2=Empreinte du fichier invalide : attendue %1, trouvée %2 ErrorProgress=Progression invalide : %1 sur %2 ErrorFileSize=Taille du fichier invalide : attendue %1, trouvée %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Extraction de fichiers supplémentaires... -ButtonStopExtraction=&Arrêter l'extraction -StopExtraction=Êtes-vous sûr de vouloir arrêter l'extraction ? -ErrorExtractionAborted=Extraction annulée -ErrorExtractionFailed=L'extraction a échoué : %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Préparation de l'installation PreparingDesc=L'assistant d'installation prépare l'installation de [name] sur votre ordinateur. diff --git a/bin/lib/innosetup/app/Languages/German.isl b/bin/lib/innosetup/Languages/German.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/German.isl rename to bin/lib/innosetup/Languages/German.isl index 4e78f70..9877b2b 100644 --- a/bin/lib/innosetup/app/Languages/German.isl +++ b/bin/lib/innosetup/Languages/German.isl @@ -1,6 +1,6 @@ ; ****************************************************** ; *** *** -; *** Inno Setup version 6.4.0+ German messages *** +; *** Inno Setup version 6.1.0+ German messages *** ; *** *** ; *** Changes 6.0.0+ Author: *** ; *** *** @@ -243,13 +243,6 @@ ErrorFileHash2=Ungültige Datei-Prüfsumme: erwartet %1, gefunden %2 ErrorProgress=Ungültiger Fortschritt: %1 von %2 ErrorFileSize=Ungültige Dateigröße: erwartet %1, gefunden %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Entpacke zusätzliche Dateien... -ButtonStopExtraction=Entpacken &abbrechen -StopExtraction=Sind Sie sicher, dass Sie das Entpacken abbrechen wollen? -ErrorExtractionAborted=Entpacken abgebrochen -ErrorExtractionFailed=Entpacken fehlgeschlagen: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Vorbereitung der Installation PreparingDesc=Das Setup bereitet die Installation von [name] auf diesem Computer vor. @@ -408,6 +401,6 @@ LaunchProgram=%1 starten AssocFileExtension=&Registriere %1 mit der %2-Dateierweiterung AssocingFileExtension=%1 wird mit der %2-Dateierweiterung registriert... AutoStartProgramGroupDescription=Beginn des Setups: -AutoStartProgram=Starte automatisch %1 +AutoStartProgram=Starte automatisch%1 AddonHostProgramNotFound=%1 konnte im ausgewählten Ordner nicht gefunden werden.%n%nMöchten Sie dennoch fortfahren? diff --git a/bin/lib/innosetup/app/Languages/Hebrew.isl b/bin/lib/innosetup/Languages/Hebrew.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/Hebrew.isl rename to bin/lib/innosetup/Languages/Hebrew.isl index 4f0c34e..98d9b49 100644 --- a/bin/lib/innosetup/app/Languages/Hebrew.isl +++ b/bin/lib/innosetup/Languages/Hebrew.isl @@ -1,4 +1,4 @@ -; *** Inno Setup version 6.4.0+ Hebrew messages (s_h(at)enativ.com) *** +; *** Inno Setup version 6.1.0+ Hebrew messages (s_h(at)enativ.com) *** ; ; https://jrsoftware.org/files/istrans/ ; Translated by s_h (s_h@enativ.com) (c) 2020 @@ -217,13 +217,6 @@ ErrorFileHash2= ErrorProgress= : %1 %1 ErrorFileSize= : %1, %1 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel= ... -ButtonStopExtraction=& -StopExtraction= ? -ErrorExtractionAborted= -ErrorExtractionFailed= : %1 - ; *** "Preparing to Install" wizard page WizardPreparing= PreparingDesc= [name] . diff --git a/bin/lib/innosetup/app/Languages/Hungarian.isl b/bin/lib/innosetup/Languages/Hungarian.isl similarity index 94% rename from bin/lib/innosetup/app/Languages/Hungarian.isl rename to bin/lib/innosetup/Languages/Hungarian.isl index 5cdb3a6..c36de33 100644 --- a/bin/lib/innosetup/app/Languages/Hungarian.isl +++ b/bin/lib/innosetup/Languages/Hungarian.isl @@ -1,9 +1,9 @@ -; *** Inno Setup version 6.4.0+ Hungarian messages *** -; Based on the translation of Kornél Pál, kornelpal@gmail.com -; István Szabó, E-mail: istvanszabo890629@gmail.com +; *** Inno Setup version 6.1.0+ Hungarian messages *** +; Based on the translation of Kornél Pál, kornelpal@gmail.com +; István Szabó, E-mail: istvanszabo890629@gmail.com ; ; To download user-contributed translations of this file, go to: -; https://jrsoftware.org/files/istrans/ +; http://www.jrsoftware.org/files/istrans/ ; ; Note: When translating this text, do not add periods (.) to the end of ; messages that didn't have them already, because on those messages Inno @@ -43,7 +43,7 @@ ErrorTitle=Hiba ; *** SetupLdr messages SetupLdrStartupMessage=%1 telepítve lesz. Szeretné folytatni? LdrCannotCreateTemp=Átmeneti fájl létrehozása nem lehetséges. A telepítés megszakítva -LdrCannotExecTemp=Fájl futtatása nem lehetséges az átmeneti könyvtárban. A telepítés megszakítva +LdrCannotExecTemp=Fájl futattása nem lehetséges az átmeneti könyvtárban. A telepítés megszakítva HelpTextNote= ; *** Startup error messages @@ -58,8 +58,8 @@ WindowsServicePackRequired=A program futtatásához %1 Service Pack %2 vagy úja NotOnThisPlatform=Ez a program nem futtatható %1 alatt. OnlyOnThisPlatform=Ezt a programot %1 alatt kell futtatni. OnlyOnTheseArchitectures=A program kizárólag a következő processzor architektúrákhoz tervezett Windows-on telepíthető:%n%n%1 -WinVersionTooLowError=A program futtatásához %1 %2 verziója vagy újabb szükséges. -WinVersionTooHighError=Ez a program nem telepíthető %1 %2 vagy újabb verzióra. +WinVersionTooLowError=A program futtatásához %1 %2 verziója vagy későbbi szükséges. +WinVersionTooHighError=Ez a program nem telepíthető %1 %2 vagy későbbire. AdminPrivilegesRequired=Csak rendszergazdai módban telepíthető ez a program. PowerUserPrivilegesRequired=Csak rendszergazdaként vagy kiemelt felhasználóként telepíthető ez a program. SetupAppRunningError=A telepítő úgy észlelte %1 jelenleg fut.%n%nZárja be az összes példányt, majd kattintson az 'OK'-ra a folytatáshoz, vagy a 'Mégse'-re a kilépéshez. @@ -84,23 +84,23 @@ ExitSetupTitle=Kilépés a telepítőből ExitSetupMessage=A telepítés még folyamatban van. Ha most kilép, a program nem kerül telepítésre.%n%nMásik alkalommal is futtatható a telepítés befejezéséhez%n%nKilép a telepítőből? AboutSetupMenuItem=&Névjegy... AboutSetupTitle=Telepítő névjegye -AboutSetupMessage=%1 %2 verzió%n%3%n%nA(z) %1 honlapja:%n%4 +AboutSetupMessage=%1 %2 verzió%n%3%n%nAz %1 honlapja:%n%4 AboutSetupNote= TranslatorNote= ; *** Buttons ButtonBack=< &Vissza ButtonNext=&Tovább > -ButtonInstall=T&elepítés -ButtonOK=Rendben +ButtonInstall=&Telepít +ButtonOK=OK ButtonCancel=Mégse ButtonYes=&Igen ButtonYesToAll=&Mindet ButtonNo=&Nem ButtonNoToAll=&Egyiket se ButtonFinish=&Befejezés -ButtonBrowse=T&allózás... -ButtonWizardBrowse=Talló&zás... +ButtonBrowse=&Tallózás... +ButtonWizardBrowse=T&allózás... ButtonNewFolder=Új &könyvtár ; *** "Select Language" dialog messages @@ -110,7 +110,7 @@ SelectLanguageLabel=Válassza ki a telepítés alatt használt nyelvet. ; *** Common wizard text ClickNext=A folytatáshoz kattintson a 'Tovább'-ra, a kilépéshez a 'Mégse'-re. BeveledLabel= -BrowseDialogTitle=Válasszon könyvtárt +BrowseDialogTitle=Válasszon könyvtárt BrowseDialogLabel=Válasszon egy könyvtárat az alábbi listából, majd kattintson az 'OK'-ra. NewFolderName=Új könyvtár @@ -219,18 +219,11 @@ StopDownload=Biztos, hogy leakarja állítani a letöltést? ErrorDownloadAborted=Letöltés megszakítva ErrorDownloadFailed=A letöltés meghiúsult: %1 %2 ErrorDownloadSizeFailed=Hiba a fájlméret lekérése során: %1 %2 -ErrorFileHash1=Fájl hash (hasítóérték) hiba: %1 +ErrorFileHash1=Fájl Hash (hasítóérték) hiba: %1 ErrorFileHash2=Érvénytelen hash fájl, várt érték: %1, számított: %2 ErrorProgress=Érvénytelen folyamat: %1 : %2 ErrorFileSize=Érvénytelen fájlméret, várt méret %1, számított: %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=További fájlok kicsomagolása... -ButtonStopExtraction=&Kicsomagolás megszakítása -StopExtraction=Biztosan meg akarja szakítani a kicsomagolást? -ErrorExtractionAborted=A kicsomagolás megszakítva -ErrorExtractionFailed=A kicsomagolás meghiúsult: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Felkészülés a telepítésre PreparingDesc=A Telepítő felkészül a(z) [name] számítógépre történő telepítéshez. @@ -302,7 +295,7 @@ ErrorRegCreateKey=Nem hozható létre a rendszerleíró kulcs:%n%1\%2 ErrorRegWriteKey=Nem módosítható a rendszerleíró kulcs:%n%1\%2 ; *** INI errors -ErrorIniEntry=Hiba lépett fel az INI bejegyzés létrehozása során, ebben a fájlban: "%1". +ErrorIniEntry=Hiba lépett fel az INI bejegyzés során, ebben a fájlban: "%1". ; *** File copying errors FileAbortRetryIgnoreSkipNotRecommended=&Fájl kihagyása (nem ajánlott) @@ -350,7 +343,7 @@ ErrorRestartingComputer=A Telepítő nem tudta újraindítani a számítógépet ; *** Uninstaller messages UninstallNotFound=A(z) "%1" fájl nem létezik. Nem távolítható el. -UninstallOpenError=A(z) "%1" fájl nem nyitható meg. Nem távolítható el. +UninstallOpenError=A(z) "%1" fájl nem nyitható meg. Nem távolítható el UninstallUnsupportedVer=A(z) "%1" eltávolítási naplófájl formátumát nem tudja felismerni az eltávolító jelen verziója. Az eltávolítás nem folytatható UninstallUnknownEntry=Egy ismeretlen bejegyzés (%1) található az eltávolítási naplófájlban ConfirmUninstall=Biztosan el kívánja távolítani a(z) %1 programot és minden összetevőjét? @@ -381,8 +374,8 @@ ShutdownBlockReasonUninstallingApp=%1 eltávolítása. NameAndVersion=%1, verzió: %2 AdditionalIcons=További parancsikonok: -CreateDesktopIcon=&Asztali parancsikon létrehozása -CreateQuickLaunchIcon=&Gyorsindító-parancsikon létrehozása +CreateDesktopIcon=&Asztali ikon létrehozása +CreateQuickLaunchIcon=&Gyorsindító parancsikon létrehozása ProgramOnTheWeb=%1 az interneten UninstallProgram=Eltávolítás - %1 LaunchProgram=Indítás %1 diff --git a/bin/lib/innosetup/app/Languages/Icelandic.isl b/bin/lib/innosetup/Languages/Icelandic.isl similarity index 100% rename from bin/lib/innosetup/app/Languages/Icelandic.isl rename to bin/lib/innosetup/Languages/Icelandic.isl diff --git a/bin/lib/innosetup/app/Languages/Italian.isl b/bin/lib/innosetup/Languages/Italian.isl similarity index 97% rename from bin/lib/innosetup/app/Languages/Italian.isl rename to bin/lib/innosetup/Languages/Italian.isl index e00d891..cfdf8b5 100644 --- a/bin/lib/innosetup/app/Languages/Italian.isl +++ b/bin/lib/innosetup/Languages/Italian.isl @@ -1,5 +1,5 @@ -; bovirus@gmail.com -; *** Inno Setup version 6.4.0+ Italian messages *** +; bovirus@gmail.com +; *** Inno Setup version 6.1.0+ Italian messages *** ; ; To download user-contributed translations of this file, go to: ; https://jrsoftware.org/files/istrans/ @@ -9,7 +9,7 @@ ; Setup adds the periods automatically (appending a period would result in ; two periods being displayed). ; -; Italian.isl - Last Update: 25.11.2024 by bovirus (bovirus@gmail.com) +; Italian.isl - Last Update: 25.07.2020 by bovirus (bovirus@gmail.com) ; ; Translator name: bovirus ; Translator e-mail: bovirus@gmail.com @@ -49,7 +49,6 @@ ErrorTitle=Errore SetupLdrStartupMessage=Questa è l'installazione di %1.%n%nVuoi continuare? LdrCannotCreateTemp=Impossibile creare un file temporaneo.%n%nInstallazione annullata. LdrCannotExecTemp=Impossibile eseguire un file nella cartella temporanea.%n%nInstallazione annullata. -HelpTextNote= ; *** Startup error messages LastErrorMessage=%1.%n%nErrore %2: %3 @@ -91,7 +90,7 @@ AboutSetupMenuItem=&Informazioni sull'installazione... AboutSetupTitle=Informazioni sull'installazione AboutSetupMessage=%1 versione %2%n%3%n%n%1 sito web:%n%4 AboutSetupNote= -TranslatorNote=Traduzione italiana a cura di Rinaldo M. aka Whiteshark e bovirus (v. 25.11.2024) +TranslatorNote=Traduzione italiana a cura di Rinaldo M. aka Whiteshark e bovirus (v. 11.09.2018) ; *** Buttons ButtonBack=< &Indietro @@ -229,13 +228,6 @@ ErrorFileHash2=Hash file non valido: atteso %1, trovato %2 ErrorProgress=Progresso non valido: %1 di %2 ErrorFileSize=Dimensione file non valida: attesa %1, trovata %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Estrazione file aggiuntivi... -ButtonStopExtraction=Interrompi e&strazione -StopExtraction=Sei sicuro di voler interrompere l'estrazione? -ErrorExtractionAborted=Estrazione interrotta -ErrorExtractionFailed=Estrazione fallita: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Preparazione all'installazione PreparingDesc=Preparazione all'installazione di [name] nel computer. diff --git a/bin/lib/innosetup/app/Languages/Japanese.isl b/bin/lib/innosetup/Languages/Japanese.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/Japanese.isl rename to bin/lib/innosetup/Languages/Japanese.isl index ea9b3f7..a1c150a 100644 --- a/bin/lib/innosetup/app/Languages/Japanese.isl +++ b/bin/lib/innosetup/Languages/Japanese.isl @@ -1,4 +1,4 @@ -; *** Inno Setup version 6.4.0+ Japanese messages *** +; *** Inno Setup version 6.1.0+ Japanese messages *** ; ; Maintained by Koichi Shirasuka (shirasuka@eugrid.co.jp) ; @@ -207,13 +207,6 @@ ErrorFileHash2= ErrorProgress=Ȑis: %1 / %2 ErrorFileSize=ȃt@CTCY: \ꂽl %1, ۂ̒l %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=lj̃t@CWJĂ܂... -ButtonStopExtraction=WJ𒆎~(&S) -StopExtraction=WJ𒆎~Ă낵łH -ErrorExtractionAborted=WJ𒆎~܂ -ErrorExtractionFailed=WJɎs܂: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=CXg[ PreparingDesc=gp̃Rs[^[ [name] CXg[鏀Ă܂B diff --git a/bin/lib/innosetup/app/Languages/Norwegian.isl b/bin/lib/innosetup/Languages/Norwegian.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/Norwegian.isl rename to bin/lib/innosetup/Languages/Norwegian.isl index cf6431e..8141d45 100644 --- a/bin/lib/innosetup/app/Languages/Norwegian.isl +++ b/bin/lib/innosetup/Languages/Norwegian.isl @@ -1,4 +1,4 @@ -; *** Inno Setup version 6.4.0+ Norwegian (bokml) messages *** +; *** Inno Setup version 6.1.0+ Norwegian (bokml) messages *** ; ; To download user-contributed translations of this file, go to: ; https://jrsoftware.org/files/istrans/ @@ -218,13 +218,6 @@ ErrorFileHash2=Ugyldig fil hash verdi: forventet %1, fant %2 ErrorProgress=Ugyldig fremdrift: %1 of %2 ErrorFileSize=Ugyldig fil strrelse: forventet %1, fant %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Pakker ut ekstra filer... -ButtonStopExtraction=&Stopp utpakking -StopExtraction=Er du sikker p at du vil stoppe utpakking? -ErrorExtractionAborted=Utpakking avbrutt -ErrorExtractionFailed=Utpakking feilet: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Forbereder installasjonen PreparingDesc=Installasjonsprogrammet forbereder installasjon av [name] p den maskin. diff --git a/bin/lib/innosetup/Languages/Polish.isl b/bin/lib/innosetup/Languages/Polish.isl new file mode 100644 index 0000000..b102814 --- /dev/null +++ b/bin/lib/innosetup/Languages/Polish.isl @@ -0,0 +1,377 @@ +; *** Inno Setup version 6.1.0+ Polish messages *** +; Krzysztof Cynarski +; Proofreading, corrections and 5.5.7-6.1.0+ updates: +; ukasz Abramczuk +; To download user-contributed translations of this file, go to: +; https://jrsoftware.org/files/istrans/ +; +; Note: When translating this text, do not add periods (.) to the end of +; messages that didn't have them already, because on those messages Inno +; Setup adds the periods automatically (appending a period would result in +; two periods being displayed). +; last update: 2020/07/26 + +[LangOptions] +; The following three entries are very important. Be sure to read and +; understand the '[LangOptions] section' topic in the help file. +LanguageName=Polski +LanguageID=$0415 +LanguageCodePage=1250 + +[Messages] + +; *** Application titles +SetupAppTitle=Instalator +SetupWindowTitle=Instalacja - %1 +UninstallAppTitle=Dezinstalator +UninstallAppFullTitle=Dezinstalacja - %1 + +; *** Misc. common +InformationTitle=Informacja +ConfirmTitle=Potwierd +ErrorTitle=Bd + +; *** SetupLdr messages +SetupLdrStartupMessage=Ten program zainstaluje aplikacj %1. Czy chcesz kontynuowa? +LdrCannotCreateTemp=Nie mona utworzy pliku tymczasowego. Instalacja przerwana +LdrCannotExecTemp=Nie mona uruchomi pliku z folderu tymczasowego. Instalacja przerwana +HelpTextNote= + +; *** Startup error messages +LastErrorMessage=%1.%n%nBd %2: %3 +SetupFileMissing=W folderze instalacyjnym brakuje pliku %1.%nProsz o przywrcenie brakujcych plikw lub uzyskanie nowej kopii programu instalacyjnego. +SetupFileCorrupt=Pliki instalacyjne s uszkodzone. Zaleca si uzyskanie nowej kopii programu instalacyjnego. +SetupFileCorruptOrWrongVer=Pliki instalacyjne s uszkodzone lub niezgodne z t wersj instalatora. Prosz rozwiza problem lub uzyska now kopi programu instalacyjnego. +InvalidParameter=W linii komend przekazano nieprawidowy parametr:%n%n%1 +SetupAlreadyRunning=Instalator jest ju uruchomiony. +WindowsVersionNotSupported=Ta aplikacja nie wspiera aktualnie uruchomionej wersji Windows. +WindowsServicePackRequired=Ta aplikacja wymaga systemu %1 z dodatkiem Service Pack %2 lub nowszym. +NotOnThisPlatform=Tej aplikacji nie mona uruchomi w systemie %1. +OnlyOnThisPlatform=Ta aplikacja wymaga systemu %1. +OnlyOnTheseArchitectures=Ta aplikacja moe by uruchomiona tylko w systemie Windows zaprojektowanym dla procesorw o architekturze:%n%n%1 +WinVersionTooLowError=Ta aplikacja wymaga systemu %1 w wersji %2 lub nowszej. +WinVersionTooHighError=Ta aplikacja nie moe by zainstalowana w systemie %1 w wersji %2 lub nowszej. +AdminPrivilegesRequired=Aby przeprowadzi instalacj tej aplikacji, konto uytkownika systemu musi posiada uprawnienia administratora. +PowerUserPrivilegesRequired=Aby przeprowadzi instalacj tej aplikacji, konto uytkownika systemu musi posiada uprawnienia administratora lub uytkownika zaawansowanego. +SetupAppRunningError=Instalator wykry, i aplikacja %1 jest aktualnie uruchomiona.%n%nPrzed wciniciem przycisku OK zamknij wszystkie procesy aplikacji. Kliknij przycisk Anuluj, aby przerwa instalacj. +UninstallAppRunningError=Dezinstalator wykry, i aplikacja %1 jest aktualnie uruchomiona.%n%nPrzed wciniciem przycisku OK zamknij wszystkie procesy aplikacji. Kliknij przycisk Anuluj, aby przerwa dezinstalacj. + +; *** Startup questions --- +PrivilegesRequiredOverrideTitle=Wybierz typ instalacji aplikacji +PrivilegesRequiredOverrideInstruction=Wybierz typ instalacji +PrivilegesRequiredOverrideText1=Aplikacja %1 moe zosta zainstalowana dla wszystkich uytkownikw (wymagane s uprawnienia administratora) lub tylko dla biecego uytkownika. +PrivilegesRequiredOverrideText2=Aplikacja %1 moe zosta zainstalowana dla biecego uytkownika lub wszystkich uytkownikw (wymagane s uprawnienia administratora). +PrivilegesRequiredOverrideAllUsers=Zainstaluj dla &wszystkich uytkownikw +PrivilegesRequiredOverrideAllUsersRecommended=Zainstaluj dla &wszystkich uytkownikw (zalecane) +PrivilegesRequiredOverrideCurrentUser=Zainstaluj dla &biecego uytkownika +PrivilegesRequiredOverrideCurrentUserRecommended=Zainstaluj dla &biecego uytkownika (zalecane) + +; *** Misc. errors +ErrorCreatingDir=Instalator nie mg utworzy katalogu "%1" +ErrorTooManyFilesInDir=Nie mona utworzy pliku w katalogu "%1", poniewa zawiera on zbyt wiele plikw + +; *** Setup common messages +ExitSetupTitle=Zakocz instalacj +ExitSetupMessage=Instalacja nie zostaa zakoczona. Jeeli przerwiesz j teraz, aplikacja nie zostanie zainstalowana. Mona ponowi instalacj pniej poprzez uruchamianie instalatora.%n%nCzy chcesz przerwa instalacj? +AboutSetupMenuItem=&O instalatorze... +AboutSetupTitle=O instalatorze +AboutSetupMessage=%1 wersja %2%n%3%n%n Strona domowa %1:%n%4 +AboutSetupNote= +TranslatorNote=Wersja polska: Krzysztof Cynarski%n%nOd wersji 5.5.7: ukasz Abramczuk%n + +; *** Buttons +ButtonBack=< &Wstecz +ButtonNext=&Dalej > +ButtonInstall=&Instaluj +ButtonOK=OK +ButtonCancel=Anuluj +ButtonYes=&Tak +ButtonYesToAll=Tak na &wszystkie +ButtonNo=&Nie +ButtonNoToAll=N&ie na wszystkie +ButtonFinish=&Zakocz +ButtonBrowse=&Przegldaj... +ButtonWizardBrowse=P&rzegldaj... +ButtonNewFolder=&Utwrz nowy folder + +; *** "Select Language" dialog messages +SelectLanguageTitle=Jzyk instalacji +SelectLanguageLabel=Wybierz jzyk uywany podczas instalacji: + +; *** Common wizard text +ClickNext=Kliknij przycisk Dalej, aby kontynuowa, lub Anuluj, aby zakoczy instalacj. +BeveledLabel= +BrowseDialogTitle=Wska folder +BrowseDialogLabel=Wybierz folder z poniszej listy, a nastpnie kliknij przycisk OK. +NewFolderName=Nowy folder + +; *** "Welcome" wizard page +WelcomeLabel1=Witamy w instalatorze aplikacji [name] +WelcomeLabel2=Aplikacja [name/ver] zostanie teraz zainstalowana na komputerze.%n%nZalecane jest zamknicie wszystkich innych uruchomionych programw przed rozpoczciem procesu instalacji. + +; *** "Password" wizard page +WizardPassword=Haso +PasswordLabel1=Ta instalacja jest zabezpieczona hasem. +PasswordLabel3=Podaj haso, a nastpnie kliknij przycisk Dalej, aby kontynuowa. W hasach rozrniane s wielkie i mae litery. +PasswordEditLabel=&Haso: +IncorrectPassword=Wprowadzone haso jest nieprawidowe. Sprbuj ponownie. + +; *** "License Agreement" wizard page +WizardLicense=Umowa Licencyjna +LicenseLabel=Przed kontynuacj naley zapozna si z ponisz wan informacj. +LicenseLabel3=Prosz przeczyta tekst Umowy Licencyjnej. Przed kontynuacj instalacji naley zaakceptowa warunki umowy. +LicenseAccepted=&Akceptuj warunki umowy +LicenseNotAccepted=&Nie akceptuj warunkw umowy + +; *** "Information" wizard pages +WizardInfoBefore=Informacja +InfoBeforeLabel=Przed kontynuacj naley zapozna si z ponisz informacj. +InfoBeforeClickLabel=Kiedy bdziesz gotowy do instalacji, kliknij przycisk Dalej. +WizardInfoAfter=Informacja +InfoAfterLabel=Przed kontynuacj naley zapozna si z ponisz informacj. +InfoAfterClickLabel=Gdy bdziesz gotowy do zakoczenia instalacji, kliknij przycisk Dalej. + +; *** "User Information" wizard page +WizardUserInfo=Dane uytkownika +UserInfoDesc=Prosz poda swoje dane. +UserInfoName=Nazwa &uytkownika: +UserInfoOrg=&Organizacja: +UserInfoSerial=Numer &seryjny: +UserInfoNameRequired=Nazwa uytkownika jest wymagana. + +; *** "Select Destination Location" wizard page +WizardSelectDir=Lokalizacja docelowa +SelectDirDesc=Gdzie ma zosta zainstalowana aplikacja [name]? +SelectDirLabel3=Instalator zainstaluje aplikacj [name] do wskazanego poniej folderu. +SelectDirBrowseLabel=Kliknij przycisk Dalej, aby kontynuowa. Jeli chcesz wskaza inny folder, kliknij przycisk Przegldaj. +DiskSpaceGBLabel=Instalacja wymaga przynajmniej [gb] GB wolnego miejsca na dysku. +DiskSpaceMBLabel=Instalacja wymaga przynajmniej [mb] MB wolnego miejsca na dysku. +CannotInstallToNetworkDrive=Instalator nie moe zainstalowa aplikacji na dysku sieciowym. +CannotInstallToUNCPath=Instalator nie moe zainstalowa aplikacji w ciece UNC. +InvalidPath=Naley wprowadzi pen ciek wraz z liter dysku, np.:%n%nC:\PROGRAM%n%nlub ciek sieciow (UNC) w formacie:%n%n\\serwer\udzia +InvalidDrive=Wybrany dysk lub udostpniony folder sieciowy nie istnieje. Prosz wybra inny. +DiskSpaceWarningTitle=Niewystarczajca ilo wolnego miejsca na dysku +DiskSpaceWarning=Instalator wymaga co najmniej %1 KB wolnego miejsca na dysku. Wybrany dysk posiada tylko %2 KB dostpnego miejsca.%n%nCzy mimo to chcesz kontynuowa? +DirNameTooLong=Nazwa folderu lub cieki jest za duga. +InvalidDirName=Niepoprawna nazwa folderu. +BadDirName32=Nazwa folderu nie moe zawiera adnego z nastpujcych znakw:%n%n%1 +DirExistsTitle=Folder ju istnieje +DirExists=Poniszy folder ju istnieje:%n%n%1%n%nCzy mimo to chcesz zainstalowa aplikacj w tym folderze? +DirDoesntExistTitle=Folder nie istnieje +DirDoesntExist=Poniszy folder nie istnieje:%n%n%1%n%nCzy chcesz, aby zosta utworzony? + +; *** "Select Components" wizard page +WizardSelectComponents=Komponenty instalacji +SelectComponentsDesc=Ktre komponenty maj zosta zainstalowane? +SelectComponentsLabel2=Zaznacz komponenty, ktre chcesz zainstalowa i odznacz te, ktrych nie chcesz zainstalowa. Kliknij przycisk Dalej, aby kontynuowa. +FullInstallation=Instalacja pena +; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) +CompactInstallation=Instalacja podstawowa +CustomInstallation=Instalacja uytkownika +NoUninstallWarningTitle=Zainstalowane komponenty +NoUninstallWarning=Instalator wykry, e na komputerze s ju zainstalowane nastpujce komponenty:%n%n%1%n%nOdznaczenie ktregokolwiek z nich nie spowoduje ich dezinstalacji.%n%nCzy pomimo tego chcesz kontynuowa? +ComponentSize1=%1 KB +ComponentSize2=%1 MB +ComponentsDiskSpaceGBLabel=Wybrane komponenty wymagaj co najmniej [gb] GB na dysku. +ComponentsDiskSpaceMBLabel=Wybrane komponenty wymagaj co najmniej [mb] MB na dysku. + +; *** "Select Additional Tasks" wizard page +WizardSelectTasks=Zadania dodatkowe +SelectTasksDesc=Ktre zadania dodatkowe maj zosta wykonane? +SelectTasksLabel2=Zaznacz dodatkowe zadania, ktre instalator ma wykona podczas instalacji aplikacji [name], a nastpnie kliknij przycisk Dalej, aby kontynuowa. + +; *** "Select Start Menu Folder" wizard page +WizardSelectProgramGroup=Folder Menu Start +SelectStartMenuFolderDesc=Gdzie maj zosta umieszczone skrty do aplikacji? +SelectStartMenuFolderLabel3=Instalator utworzy skrty do aplikacji we wskazanym poniej folderze Menu Start. +SelectStartMenuFolderBrowseLabel=Kliknij przycisk Dalej, aby kontynuowa. Jeli chcesz wskaza inny folder, kliknij przycisk Przegldaj. +MustEnterGroupName=Musisz wprowadzi nazw folderu. +GroupNameTooLong=Nazwa folderu lub cieki jest za duga. +InvalidGroupName=Niepoprawna nazwa folderu. +BadGroupName=Nazwa folderu nie moe zawiera adnego z nastpujcych znakw:%n%n%1 +NoProgramGroupCheck2=&Nie twrz folderu w Menu Start + +; *** "Ready to Install" wizard page +WizardReady=Gotowy do rozpoczcia instalacji +ReadyLabel1=Instalator jest ju gotowy do rozpoczcia instalacji aplikacji [name] na komputerze. +ReadyLabel2a=Kliknij przycisk Instaluj, aby rozpocz instalacj lub Wstecz, jeli chcesz przejrze lub zmieni ustawienia. +ReadyLabel2b=Kliknij przycisk Instaluj, aby kontynuowa instalacj. +ReadyMemoUserInfo=Dane uytkownika: +ReadyMemoDir=Lokalizacja docelowa: +ReadyMemoType=Rodzaj instalacji: +ReadyMemoComponents=Wybrane komponenty: +ReadyMemoGroup=Folder w Menu Start: +ReadyMemoTasks=Dodatkowe zadania: + +; *** TDownloadWizardPage wizard page and DownloadTemporaryFile +DownloadingLabel=Pobieranie dodatkowych plikw... +ButtonStopDownload=&Zatrzymaj pobieranie +StopDownload=Czy na pewno chcesz zatrzyma pobieranie? +ErrorDownloadAborted=Pobieranie przerwane +ErrorDownloadFailed=Bd pobierania: %1 %2 +ErrorDownloadSizeFailed=Pobieranie informacji o rozmiarze nie powiodo si: %1 %2 +ErrorFileHash1=Bd sumy kontrolnej pliku: %1 +ErrorFileHash2=Nieprawidowa suma kontrolna pliku: oczekiwano %1, otrzymano %2 +ErrorProgress=Nieprawidowy postp: %1 z %2 +ErrorFileSize=Nieprawidowy rozmiar pliku: oczekiwano %1, otrzymano %2 + +; *** "Preparing to Install" wizard page +WizardPreparing=Przygotowanie do instalacji +PreparingDesc=Instalator przygotowuje instalacj aplikacji [name] na komputerze. +PreviousInstallNotCompleted=Instalacja/dezinstalacja poprzedniej wersji aplikacji nie zostaa zakoczona. Aby zakoczy instalacj, naley ponownie uruchomi komputer. %n%nNastpnie ponownie uruchom instalator, aby zakoczy instalacj aplikacji [name]. +CannotContinue=Instalator nie moe kontynuowa. Kliknij przycisk Anuluj, aby przerwa instalacj. +ApplicationsFound=Ponisze aplikacje uywaj plikw, ktre musz zosta uaktualnione przez instalator. Zaleca si zezwoli na automatyczne zamknicie tych aplikacji przez program instalacyjny. +ApplicationsFound2=Ponisze aplikacje uywaj plikw, ktre musz zosta uaktualnione przez instalator. Zaleca si zezwoli na automatyczne zamknicie tych aplikacji przez program instalacyjny. Po zakoczonej instalacji instalator podejmie prb ich ponownego uruchomienia. +CloseApplications=&Automatycznie zamknij aplikacje +DontCloseApplications=&Nie zamykaj aplikacji +ErrorCloseApplications=Instalator nie by w stanie automatycznie zamkn wymaganych aplikacji. Zalecane jest zamknicie wszystkich aplikacji, ktre aktualnie uywaj uaktualnianych przez program instalacyjny plikw. +PrepareToInstallNeedsRestart=Instalator wymaga ponownego uruchomienia komputera. Po restarcie komputera uruchom instalator ponownie, by dokoczy proces instalacji aplikacji [name].%n%nCzy chcesz teraz uruchomi komputer ponownie? + +; *** "Installing" wizard page +WizardInstalling=Instalacja +InstallingLabel=Poczekaj, a instalator zainstaluje aplikacj [name] na komputerze. + +; *** "Setup Completed" wizard page +FinishedHeadingLabel=Zakoczono instalacj aplikacji [name] +FinishedLabelNoIcons=Instalator zakoczy instalacj aplikacji [name] na komputerze. +FinishedLabel=Instalator zakoczy instalacj aplikacji [name] na komputerze. Aplikacja moe by uruchomiona poprzez uycie zainstalowanych skrtw. +ClickFinish=Kliknij przycisk Zakocz, aby zakoczy instalacj. +FinishedRestartLabel=Aby zakoczy instalacj aplikacji [name], instalator musi ponownie uruchomi komputer. Czy chcesz teraz uruchomi komputer ponownie? +FinishedRestartMessage=Aby zakoczy instalacj aplikacji [name], instalator musi ponownie uruchomi komputer.%n%nCzy chcesz teraz uruchomi komputer ponownie? +ShowReadmeCheck=Tak, chc przeczyta dodatkowe informacje +YesRadio=&Tak, uruchom ponownie teraz +NoRadio=&Nie, uruchomi ponownie pniej +; used for example as 'Run MyProg.exe' +RunEntryExec=Uruchom aplikacj %1 +; used for example as 'View Readme.txt' +RunEntryShellExec=Wywietl plik %1 + +; *** "Setup Needs the Next Disk" stuff +ChangeDiskTitle=Instalator potrzebuje kolejnego archiwum +SelectDiskLabel2=Prosz woy dysk %1 i klikn przycisk OK.%n%nJeli wymieniony poniej folder nie okrela pooenia plikw z tego dysku, prosz wprowadzi poprawn ciek lub klikn przycisk Przegldaj. +PathLabel=&cieka: +FileNotInDir2=cieka "%2" nie zawiera pliku "%1". Prosz woy waciwy dysk lub wybra inny folder. +SelectDirectoryLabel=Prosz okreli lokalizacj kolejnego archiwum instalatora. + +; *** Installation phase messages +SetupAborted=Instalacja nie zostaa zakoczona.%n%nProsz rozwiza problem i ponownie rozpocz instalacj. +AbortRetryIgnoreSelectAction=Wybierz operacj +AbortRetryIgnoreRetry=Sprbuj &ponownie +AbortRetryIgnoreIgnore=Z&ignoruj bd i kontynuuj +AbortRetryIgnoreCancel=Przerwij instalacj + +; *** Installation status messages +StatusClosingApplications=Zamykanie aplikacji... +StatusCreateDirs=Tworzenie folderw... +StatusExtractFiles=Dekompresja plikw... +StatusCreateIcons=Tworzenie skrtw aplikacji... +StatusCreateIniEntries=Tworzenie zapisw w plikach INI... +StatusCreateRegistryEntries=Tworzenie zapisw w rejestrze... +StatusRegisterFiles=Rejestracja plikw... +StatusSavingUninstall=Zapisywanie informacji o dezinstalacji... +StatusRunProgram=Koczenie instalacji... +StatusRestartingApplications=Ponowne uruchamianie aplikacji... +StatusRollback=Cofanie zmian... + +; *** Misc. errors +ErrorInternal2=Wewntrzny bd: %1 +ErrorFunctionFailedNoCode=Bd podczas wykonywania %1 +ErrorFunctionFailed=Bd podczas wykonywania %1; kod %2 +ErrorFunctionFailedWithMessage=Bd podczas wykonywania %1; kod %2.%n%3 +ErrorExecutingProgram=Nie mona uruchomi:%n%1 + +; *** Registry errors +ErrorRegOpenKey=Bd podczas otwierania klucza rejestru:%n%1\%2 +ErrorRegCreateKey=Bd podczas tworzenia klucza rejestru:%n%1\%2 +ErrorRegWriteKey=Bd podczas zapisu do klucza rejestru:%n%1\%2 + +; *** INI errors +ErrorIniEntry=Bd podczas tworzenia pozycji w pliku INI: "%1". + +; *** File copying errors +FileAbortRetryIgnoreSkipNotRecommended=&Pomi plik (niezalecane) +FileAbortRetryIgnoreIgnoreNotRecommended=Z&ignoruj bd i kontynuuj (niezalecane) +SourceIsCorrupted=Plik rdowy jest uszkodzony +SourceDoesntExist=Plik rdowy "%1" nie istnieje +ExistingFileReadOnly2=Istniejcy plik nie moe zosta zastpiony, gdy jest oznaczony jako "Tylko do odczytu". +ExistingFileReadOnlyRetry=&Usu atrybut "Tylko do odczytu" i sprbuj ponownie +ExistingFileReadOnlyKeepExisting=&Zachowaj istniejcy plik +ErrorReadingExistingDest=Wystpi bd podczas prby odczytu istniejcego pliku: +FileExistsSelectAction=Wybierz czynno +FileExists2=Plik ju istnieje. +FileExistsOverwriteExisting=&Nadpisz istniejcy plik +FileExistsKeepExisting=&Zachowaj istniejcy plik +FileExistsOverwriteOrKeepAll=&Wykonaj t czynno dla kolejnych przypadkw +ExistingFileNewerSelectAction=Wybierz czynno +ExistingFileNewer2=Istniejcy plik jest nowszy ni ten, ktry instalator prbuje skopiowa. +ExistingFileNewerOverwriteExisting=&Nadpisz istniejcy plik +ExistingFileNewerKeepExisting=&Zachowaj istniejcy plik (zalecane) +ExistingFileNewerOverwriteOrKeepAll=&Wykonaj t czynno dla kolejnych przypadkw +ErrorChangingAttr=Wystpi bd podczas prby zmiany atrybutw pliku docelowego: +ErrorCreatingTemp=Wystpi bd podczas prby utworzenia pliku w folderze docelowym: +ErrorReadingSource=Wystpi bd podczas prby odczytu pliku rdowego: +ErrorCopying=Wystpi bd podczas prby kopiowania pliku: +ErrorReplacingExistingFile=Wystpi bd podczas prby zamiany istniejcego pliku: +ErrorRestartReplace=Prba zastpienia plikw przy ponownym uruchomieniu komputera nie powioda si. +ErrorRenamingTemp=Wystpi bd podczas prby zmiany nazwy pliku w folderze docelowym: +ErrorRegisterServer=Nie mona zarejestrowa DLL/OCX: %1 +ErrorRegSvr32Failed=Funkcja RegSvr32 zakoczya si z kodem bdu %1 +ErrorRegisterTypeLib=Nie mog zarejestrowa biblioteki typw: %1 + +; *** Uninstall display name markings +; used for example as 'My Program (32-bit)' +UninstallDisplayNameMark=%1 (%2) +; used for example as 'My Program (32-bit, All users)' +UninstallDisplayNameMarks=%1 (%2, %3) +UninstallDisplayNameMark32Bit=wersja 32-bitowa +UninstallDisplayNameMark64Bit=wersja 64-bitowa +UninstallDisplayNameMarkAllUsers=wszyscy uytkownicy +UninstallDisplayNameMarkCurrentUser=biecy uytkownik + +; *** Post-installation errors +ErrorOpeningReadme=Wystpi bd podczas prby otwarcia pliku z informacjami dodatkowymi. +ErrorRestartingComputer=Instalator nie mg ponownie uruchomi tego komputera. Prosz wykona t czynno samodzielnie. + +; *** Uninstaller messages +UninstallNotFound=Plik "%1" nie istnieje. Nie mona przeprowadzi dezinstalacji. +UninstallOpenError=Plik "%1" nie mg zosta otwarty. Nie mona przeprowadzi dezinstalacji. +UninstallUnsupportedVer=Ta wersja programu dezinstalacyjnego nie rozpoznaje formatu logu dezinstalacji w pliku "%1". Nie mona przeprowadzi dezinstalacji. +UninstallUnknownEntry=W logu dezinstalacji wystpia nieznana pozycja (%1) +ConfirmUninstall=Czy na pewno chcesz usun aplikacj %1 i wszystkie jej skadniki? +UninstallOnlyOnWin64=Ta aplikacja moe by odinstalowana tylko w 64-bitowej wersji systemu Windows. +OnlyAdminCanUninstall=Ta instalacja moe by odinstalowana tylko przez uytkownika z uprawnieniami administratora. +UninstallStatusLabel=Poczekaj, a aplikacja %1 zostanie usunita z komputera. +UninstalledAll=Aplikacja %1 zostaa usunita z komputera. +UninstalledMost=Dezinstalacja aplikacji %1 zakoczya si.%n%nNiektre elementy nie mogy zosta usunite. Naley usun je samodzielnie. +UninstalledAndNeedsRestart=Komputer musi zosta ponownie uruchomiony, aby zakoczy proces dezinstalacji aplikacji %1.%n%nCzy chcesz teraz ponownie uruchomi komputer? +UninstallDataCorrupted=Plik "%1" jest uszkodzony. Nie mona przeprowadzi dezinstalacji. + +; *** Uninstallation phase messages +ConfirmDeleteSharedFileTitle=Usun plik wspdzielony? +ConfirmDeleteSharedFile2=System wskazuje, i nastpujcy plik nie jest ju uywany przez aden program. Czy chcesz odinstalowa ten plik wspdzielony?%n%nJeli inne programy nadal uywaj tego pliku, a zostanie on usunity, mog one przesta dziaa prawidowo. W przypadku braku pewnoci, kliknij przycisk Nie. Pozostawienie tego pliku w systemie nie spowoduje adnych szkd. +SharedFileNameLabel=Nazwa pliku: +SharedFileLocationLabel=Pooenie: +WizardUninstalling=Stan dezinstalacji +StatusUninstalling=Dezinstalacja aplikacji %1... + +; *** Shutdown block reasons +ShutdownBlockReasonInstallingApp=Instalacja aplikacji %1. +ShutdownBlockReasonUninstallingApp=Dezinstalacja aplikacji %1. + +; The custom messages below aren't used by Setup itself, but if you make +; use of them in your scripts, you'll want to translate them. + +[CustomMessages] + +NameAndVersion=%1 (wersja %2) +AdditionalIcons=Dodatkowe skrty: +CreateDesktopIcon=Utwrz skrt na &pulpicie +CreateQuickLaunchIcon=Utwrz skrt na pasku &szybkiego uruchamiania +ProgramOnTheWeb=Strona internetowa aplikacji %1 +UninstallProgram=Dezinstalacja aplikacji %1 +LaunchProgram=Uruchom aplikacj %1 +AssocFileExtension=&Przypisz aplikacj %1 do rozszerzenia pliku %2 +AssocingFileExtension=Przypisywanie aplikacji %1 do rozszerzenia pliku %2... +AutoStartProgramGroupDescription=Autostart: +AutoStartProgram=Automatycznie uruchamiaj aplikacj %1 +AddonHostProgramNotFound=Aplikacja %1 nie zostaa znaleziona we wskazanym przez Ciebie folderze.%n%nCzy pomimo tego chcesz kontynuowa? diff --git a/bin/lib/innosetup/app/Languages/Portuguese.isl b/bin/lib/innosetup/Languages/Portuguese.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/Portuguese.isl rename to bin/lib/innosetup/Languages/Portuguese.isl index 1b88877..42d4e54 100644 --- a/bin/lib/innosetup/app/Languages/Portuguese.isl +++ b/bin/lib/innosetup/Languages/Portuguese.isl @@ -1,4 +1,4 @@ -; *** Inno Setup version 6.4.0+ Portuguese (Portugal) messages *** +; *** Inno Setup version 6.1.0+ Portuguese (Portugal) messages *** ; ; Maintained by Nuno Silva (nars AT gmx.net) @@ -204,13 +204,6 @@ ErrorFileHash2=Hash do ficheiro inv ErrorProgress=Progresso invlido: %1 de %2 ErrorFileSize=Tamanho de ficheiro invlido: experado %1, encontrado %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=A extrair ficheiros adicionais... -ButtonStopExtraction=&Parar extraco -StopExtraction=Tem a certeza que deseja parar a extraco? -ErrorExtractionAborted=Extraco cancelada -ErrorExtractionFailed=Falha na extraco: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Preparando-se para instalar PreparingDesc=Preparando-se para instalar o [name] no seu computador. diff --git a/bin/lib/innosetup/app/Languages/Russian.isl b/bin/lib/innosetup/Languages/Russian.isl similarity index 95% rename from bin/lib/innosetup/app/Languages/Russian.isl rename to bin/lib/innosetup/Languages/Russian.isl index 3951d21..bf086d0 100644 --- a/bin/lib/innosetup/app/Languages/Russian.isl +++ b/bin/lib/innosetup/Languages/Russian.isl @@ -1,6 +1,6 @@ -; *** Inno Setup version 6.4.0+ Russian messages *** +; *** Inno Setup version 6.1.0+ Russian messages *** ; -; Translated from English by Dmitry Kann, https://yktoo.com +; Translated from English by Dmitry Kann, yktooo at gmail.com ; ; Note: When translating this text, do not add periods (.) to the end of ; messages that didn't have them already, because on those messages Inno @@ -8,21 +8,9 @@ ; two periods being displayed). [LangOptions] -; The following three entries are very important. Be sure to read and -; understand the '[LangOptions] section' topic in the help file. LanguageName=<0420><0443><0441><0441><043A><0438><0439> LanguageID=$0419 LanguageCodePage=1251 -; If the language you are translating to requires special font faces or -; sizes, uncomment any of the following entries and change them accordingly. -;DialogFontName= -;DialogFontSize=8 -;WelcomeFontName=Verdana -;WelcomeFontSize=12 -;TitleFontName=Arial -;TitleFontSize=29 -;CopyrightFontName=Arial -;CopyrightFontSize=8 [Messages] @@ -221,13 +209,6 @@ ErrorFileHash2= ErrorProgress= : %1 %2 ErrorFileSize= : %1, %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel= ... -ButtonStopExtraction=& -StopExtraction= , ? -ErrorExtractionAborted= -ErrorExtractionFailed= : %1 - ; *** "Preparing to Install" wizard page WizardPreparing= PreparingDesc= [name] . @@ -332,9 +313,7 @@ ErrorRegSvr32Failed= ErrorRegisterTypeLib= (Type Library): %1 ; *** Uninstall display name markings -; used for example as 'My Program (32-bit)' UninstallDisplayNameMark=%1 (%2) -; used for example as 'My Program (32-bit, All users)' UninstallDisplayNameMarks=%1 (%2, %3) UninstallDisplayNameMark32Bit=32 UninstallDisplayNameMark64Bit=64 @@ -367,6 +346,7 @@ SharedFileLocationLabel= WizardUninstalling= StatusUninstalling= %1... + ; *** Shutdown block reasons ShutdownBlockReasonInstallingApp= %1. ShutdownBlockReasonUninstallingApp= %1. diff --git a/bin/lib/innosetup/app/Languages/Slovak.isl b/bin/lib/innosetup/Languages/Slovak.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/Slovak.isl rename to bin/lib/innosetup/Languages/Slovak.isl index 3b55942..fab212e 100644 --- a/bin/lib/innosetup/app/Languages/Slovak.isl +++ b/bin/lib/innosetup/Languages/Slovak.isl @@ -1,6 +1,6 @@ ; ****************************************************** ; *** *** -; *** Inno Setup version 6.4.0+ Slovak messages *** +; *** Inno Setup version 6.1.0+ Slovak messages *** ; *** *** ; *** Original Author: *** ; *** *** @@ -14,7 +14,7 @@ ; *** Slappy (slappy AT pobox.sk) *** ; *** Comments: (mitems58 AT gmail.com) *** ; *** *** -; *** Update: 12.12.2024 *** +; *** Update: 28.01.2021 *** ; *** *** ; ****************************************************** ; @@ -222,13 +222,6 @@ ErrorFileHash2=Nesprávna kontrolná hodnota: očakávala sa %1, zistená %2 ErrorProgress=Nesprávny priebeh: %1 z %2 ErrorFileSize=Nesprávna veľkosť súboru: očakávala sa %1, zistená %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Rozbaľovanie dodatočných súborov... -ButtonStopExtraction=&Zastaviť rozbaľovanie -StopExtraction=Naozaj chcete zastaviť rozbaľovanie? -ErrorExtractionAborted=Rozbaľovanie prerušené -ErrorExtractionFailed=Rozbaľovanie zlyhalo: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Príprava inštalácie PreparingDesc=Sprievodca inštaláciou pripravuje inštaláciu produktu [name] do tohto počítača. diff --git a/bin/lib/innosetup/app/Languages/Slovenian.isl b/bin/lib/innosetup/Languages/Slovenian.isl similarity index 98% rename from bin/lib/innosetup/app/Languages/Slovenian.isl rename to bin/lib/innosetup/Languages/Slovenian.isl index bc326a4..248b688 100644 --- a/bin/lib/innosetup/app/Languages/Slovenian.isl +++ b/bin/lib/innosetup/Languages/Slovenian.isl @@ -1,4 +1,4 @@ -; *** Inno Setup version 6.4.0+ Slovenian messages *** +; *** Inno Setup version 6.1.0+ Slovenian messages *** ; ; To download user-contributed translations of this file, go to: ; http://www.jrsoftware.org/is3rdparty.php @@ -212,13 +212,6 @@ ErrorFileHash2=Neveljavna zgo ErrorProgress=Neveljaven potek: %1 od %2 ErrorFileSize=Neveljavna velikost datoteke: priakovana %1, dobljena %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Razirjanje dodatnih datotek... -ButtonStopExtraction=U&stavi razirjanje -StopExtraction=Ste prepriani, da elite ustaviti razirjanje datotek? -ErrorExtractionAborted=Razirjanje datotek prekinjeno -ErrorExtractionFailed=Napaka pri razirjanju: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Pripravljam za namestitev PreparingDesc=Namestitveni program je pripravljen za namestitev programa [name] v va raunalnik. diff --git a/bin/lib/innosetup/app/Languages/Spanish.isl b/bin/lib/innosetup/Languages/Spanish.isl similarity index 97% rename from bin/lib/innosetup/app/Languages/Spanish.isl rename to bin/lib/innosetup/Languages/Spanish.isl index b993714..6fff47c 100644 --- a/bin/lib/innosetup/app/Languages/Spanish.isl +++ b/bin/lib/innosetup/Languages/Spanish.isl @@ -1,11 +1,11 @@ -; *** Inno Setup version 6.4.0+ Spanish messages *** +; *** Inno Setup version 6.1.0+ Spanish messages *** ; ; Maintained by Jorge Andres Brugger (jbrugger@ideaworks.com.ar) -; Spanish.isl version 1.6.0 (20241226) -; Default.isl version 6.4.0 +; Spanish.isl version 1.5.2 (20211123) +; Default.isl version 6.1.0 ; ; Thanks to Germn Giraldo, Jordi Latorre, Ximo Tamarit, Emiliano Llano, -; Ramn Verduzco, Graciela Garca, Carles Millan and Rafael Barranco-Droege +; Ramn Verduzco, Graciela Garca, Carles Millan and Rafael Barranco-Droege [LangOptions] ; The following three entries are very important. Be sure to read and @@ -221,13 +221,6 @@ ErrorFileHash2=Hash de archivo no v ErrorProgress=Progreso no vlido: %1 de %2 ErrorFileSize=Tamao de archivo no vlido: esperado %1, encontrado %2 -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Extrayendo archivos adicionales... -ButtonStopExtraction=&Detener extraccin -StopExtraction=Est seguro que desea detener la extraccin? -ErrorExtractionAborted=Extraccin cancelada -ErrorExtractionFailed=Fall la extraccin: %1 - ; *** "Preparing to Install" wizard page WizardPreparing=Preparndose para Instalar PreparingDesc=El programa de instalacin est preparndose para instalar [name] en su sistema. @@ -314,7 +307,7 @@ FileExistsSelectAction=Seleccione acci FileExists2=El archivo ya existe. FileExistsOverwriteExisting=&Sobreescribir el archivo existente FileExistsKeepExisting=&Mantener el archivo existente -FileExistsOverwriteOrKeepAll=&Hacer lo mismo para los siguientes conflictos +FileExistsOverwriteOrKeepAll=&Hacer lo mismo para lo siguientes conflictos ExistingFileNewerSelectAction=Seleccione accin ExistingFileNewer2=El archivo existente es ms reciente que el que se est tratando de instalar. ExistingFileNewerOverwriteExisting=&Sobreescribir el archivo existente diff --git a/bin/lib/innosetup/Languages/Turkish.isl b/bin/lib/innosetup/Languages/Turkish.isl new file mode 100644 index 0000000..932c705 --- /dev/null +++ b/bin/lib/innosetup/Languages/Turkish.isl @@ -0,0 +1,384 @@ +; *** Inno Setup version 6.1.0+ Turkish messages *** +; Language "Turkce" Turkish Translate by "Ceviren" Kaya Zeren translator@zeron.net +; To download user-contributed translations of this file, go to: +; https://www.jrsoftware.org/files/istrans/ +; +; Note: When translating this text, do not add periods (.) to the end of +; messages that didn't have them already, because on those messages Inno +; Setup adds the periods automatically (appending a period would result in +; two periods being displayed). + +[LangOptions] +; The following three entries are very important. Be sure to read and +; understand the '[LangOptions] section' topic in the help file. +LanguageName=T<00FC>rk<00E7>e +LanguageID=$041f +LanguageCodePage=1254 +; If the language you are translating to requires special font faces or +; sizes, uncomment any of the following entries and change them accordingly. +;DialogFontName= +;DialogFontSize=8 +;WelcomeFontName=Verdana +;WelcomeFontSize=12 +;TitleFontName=Arial +;TitleFontSize=29 +;CopyrightFontName=Arial +;CopyrightFontSize=8 + +[Messages] + +; *** Uygulama balklar +SetupAppTitle=Kurulum Yardmcs +SetupWindowTitle=%1 - Kurulum Yardmcs +UninstallAppTitle=Kaldrma Yardmcs +UninstallAppFullTitle=%1 Kaldrma Yardmcs + +; *** eitli ortak metinler +InformationTitle=Bilgi +ConfirmTitle=Onay +ErrorTitle=Hata + +; *** Kurulum ykleyici iletileri +SetupLdrStartupMessage=%1 uygulamas kurulacak. Devam etmek istiyor musunuz? +LdrCannotCreateTemp=Geici dosya oluturulamadndan kurulum iptal edildi +LdrCannotExecTemp=Geici klasrdeki dosya altrlamadndan kurulum iptal edildi +HelpTextNote= + +; *** Balang hata iletileri +LastErrorMessage=%1.%n%nHata %2: %3 +SetupFileMissing=Kurulum klasrnde %1 dosyas eksik. Ltfen sorunu zn ya da uygulamann yeni bir kopyasyla yeniden deneyin. +SetupFileCorrupt=Kurulum dosyalar bozulmu. Ltfen uygulamann yeni bir kopyasyla yeniden kurmay deneyin. +SetupFileCorruptOrWrongVer=Kurulum dosyalar bozulmu ya da bu kurulum yardmcs srm ile uyumlu deil. Ltfen sorunu zn ya da uygulamann yeni bir kopyasyla yeniden kurmay deneyin. +InvalidParameter=Komut satrnda geersiz bir parametre yazlm:%n%n%1 +SetupAlreadyRunning=Kurulum yardmcs zaten alyor. +WindowsVersionNotSupported=Bu uygulama, bilgisayarnzda ykl olan Windows srm ile uyumlu deil. +WindowsServicePackRequired=Bu uygulama, %1 Hizmet Paketi %2 ve zerindeki srmler ile alr. +NotOnThisPlatform=Bu uygulama, %1 zerinde almaz. +OnlyOnThisPlatform=Bu uygulama, %1 zerinde altrlmaldr. +OnlyOnTheseArchitectures=Bu uygulama, yalnz u ilemci mimarileri iin tasarlanm Windows srmleriyle alr:%n%n%1 +WinVersionTooLowError=Bu uygulama iin %1 srm %2 ya da zeri gereklidir. +WinVersionTooHighError=Bu uygulama, '%1' srm '%2' ya da zerine kurulamaz. +AdminPrivilegesRequired=Bu uygulamay kurmak iin Ynetici olarak oturum alm olmas gereklidir. +PowerUserPrivilegesRequired=Bu uygulamay kurarken, Ynetici ya da Gl Kullanclar grubunun bir yesi olarak oturum alm olmas gereklidir. +SetupAppRunningError=Kurulum yardmcs %1 uygulamasnn almakta olduunu alglad.%n%nLtfen uygulamann alan tm kopyalarn kapatp, devam etmek iin Tamam, kurulum yardmcsndan kmak iin ptal zerine tklayn. +UninstallAppRunningError=Kaldrma yardmcs, %1 uygulamasnn almakta olduunu alglad.%n%nLtfen uygulamann alan tm kopyalarn kapatp, devam etmek iin Tamam ya da kaldrma yardmcsndan kmak iin ptal zerine tklayn. + +; *** Balang sorular +PrivilegesRequiredOverrideTitle=Kurulum Kipini Sein +PrivilegesRequiredOverrideInstruction=Kurulum kipini sein +PrivilegesRequiredOverrideText1=%1 tm kullanclar iin (ynetici izinleri gerekir) ya da yalnz sizin hesabnz iin kurulabilir. +PrivilegesRequiredOverrideText2=%1 yalnz sizin hesabnz iin ya da tm kullanclar iin (ynetici izinleri gerekir) kurulabilir. +PrivilegesRequiredOverrideAllUsers=&Tm kullanclar iin kurulsun +PrivilegesRequiredOverrideAllUsersRecommended=&Tm kullanclar iin kurulsun (nerilir) +PrivilegesRequiredOverrideCurrentUser=&Yalnz benim kullancm iin kurulsun +PrivilegesRequiredOverrideCurrentUserRecommended=&Yalnz benim kullancm iin kurulsun (nerilir) + +; *** eitli hata metinleri +ErrorCreatingDir=Kurulum yardmcs "%1" klasrn oluturamad. +ErrorTooManyFilesInDir="%1" klasr iinde ok sayda dosya olduundan bir dosya oluturulamad + +; *** Ortak kurulum iletileri +ExitSetupTitle=Kurulum Yardmcsndan k +ExitSetupMessage=Kurulum tamamlanmad. imdi karsanz, uygulama kurulmayacak.%n%nKurulumu tamamlamak iin istediiniz zaman kurulum yardmcsn yeniden altrabilirsiniz.%n%nKurulum yardmcsndan klsn m? +AboutSetupMenuItem=Kurulum H&akknda... +AboutSetupTitle=Kurulum Hakknda +AboutSetupMessage=%1 %2 srm%n%3%n%n%1 ana sayfa:%n%4 +AboutSetupNote= +TranslatorNote= + +; *** Dmeler +ButtonBack=< &nceki +ButtonNext=&Sonraki > +ButtonInstall=&Kur +ButtonOK=Tamam +ButtonCancel=ptal +ButtonYes=E&vet +ButtonYesToAll=&Tmne Evet +ButtonNo=&Hayr +ButtonNoToAll=Tmne Ha&yr +ButtonFinish=&Bitti +ButtonBrowse=&Gzat... +ButtonWizardBrowse=Gza&t... +ButtonNewFolder=Ye&ni Klasr Olutur + +; *** "Kurulum Dilini Sein" sayfas iletileri +SelectLanguageTitle=Kurulum Yardmcs Dilini Sein +SelectLanguageLabel=Kurulum sresince kullanlacak dili sein. + +; *** Ortak metinler +ClickNext=Devam etmek iin Sonraki, kmak iin ptal zerine tklayn. +BeveledLabel= +BrowseDialogTitle=Klasre Gzat +BrowseDialogLabel=Aadaki listeden bir klasr seip, Tamam zerine tklayn. +NewFolderName=Yeni Klasr + +; *** "Ho geldiniz" sayfas +WelcomeLabel1=[name] Kurulum Yardmcsna Hogeldiniz. +WelcomeLabel2=Bilgisayarnza [name/ver] uygulamas kurulacak.%n%nDevam etmeden nce alan dier tm uygulamalar kapatmanz nerilir. + +; *** "Parola" sayfas +WizardPassword=Parola +PasswordLabel1=Bu kurulum parola korumaldr. +PasswordLabel3=Ltfen parolay yazn ve devam etmek iin Sonraki zerine tklayn. Parolalar byk kk harflere duyarldr. +PasswordEditLabel=&Parola: +IncorrectPassword=Yazdnz parola doru deil. Ltfen yeniden deneyin. + +; *** "Lisans Anlamas" sayfas +WizardLicense=Lisans Anlamas +LicenseLabel=Ltfen devam etmeden nce aadaki nemli bilgileri okuyun. +LicenseLabel3=Ltfen Aadaki Lisans Anlamasn okuyun. Kuruluma devam edebilmek iin bu anlamay kabul etmelisiniz. +LicenseAccepted=Anlamay kabul &ediyorum. +LicenseNotAccepted=Anlamay kabul et&miyorum. + +; *** "Bilgiler" sayfas +WizardInfoBefore=Bilgiler +InfoBeforeLabel=Ltfen devam etmeden nce aadaki nemli bilgileri okuyun. +InfoBeforeClickLabel=Kuruluma devam etmeye hazr olduunuzda Sonraki zerine tklayn. +WizardInfoAfter=Bilgiler +InfoAfterLabel=Ltfen devam etmeden nce aadaki nemli bilgileri okuyun. +InfoAfterClickLabel=Kuruluma devam etmeye hazr olduunuzda Sonraki zerine tklayn. + +; *** "Kullanc Bilgileri" sayfas +WizardUserInfo=Kullanc Bilgileri +UserInfoDesc=Ltfen bilgilerinizi yazn. +UserInfoName=K&ullanc Ad: +UserInfoOrg=Ku&rum: +UserInfoSerial=&Seri Numaras: +UserInfoNameRequired=Bir ad yazmalsnz. + +; *** "Hedef Konumunu Sein" sayfas +WizardSelectDir=Hedef Konumunu Sein +SelectDirDesc=[name] nereye kurulsun? +SelectDirLabel3=[name] uygulamas u klasre kurulacak. +SelectDirBrowseLabel=Devam etmek icin Sonraki zerine tklayn. Farkl bir klasr semek iin Gzat zerine tklayn. +DiskSpaceGBLabel=En az [gb] GB bo disk alan gereklidir. +DiskSpaceMBLabel=En az [mb] MB bo disk alan gereklidir. +CannotInstallToNetworkDrive=Uygulama bir a srcs zerine kurulamaz. +CannotInstallToUNCPath=Uygulama bir UNC yolu zerine (\\yol gibi) kurulamaz. +InvalidPath=Src ad ile tam yolu yazmalsnz; rnein: %n%nC:\APP%n%n ya da u ekilde bir UNC yolu:%n%n\\sunucu\paylam +InvalidDrive=Src ya da UNC paylam yok ya da eriilemiyor. Ltfen baka bir tane sein. +DiskSpaceWarningTitle=Yeterli Bo Disk Alan Yok +DiskSpaceWarning=Kurulum iin %1 KB bo alan gerekli, ancak seilmi srcde yalnz %2 KB bo alan var.%n%nGene de devam etmek istiyor musunuz? +DirNameTooLong=Klasr ad ya da yol ok uzun. +InvalidDirName=Klasr ad geersiz. +BadDirName32=Klasr adlarnda u karakterler bulunamaz:%n%n%1 +DirExistsTitle=Klasr Zaten Var" +DirExists=Klasr:%n%n%1%n%zaten var. Kurulum iin bu klasr kullanmak ister misiniz? +DirDoesntExistTitle=Klasr Bulunamad +DirDoesntExist=Klasr:%n%n%1%n%nbulunamad.Klasrn oluturmasn ister misiniz? + +; *** "Bileenleri Sein" sayfas +WizardSelectComponents=Bileenleri Sein +SelectComponentsDesc=Hangi bileenler kurulacak? +SelectComponentsLabel2=Kurmak istediiniz bileenleri sein; kurmak istemediiniz bileenlerin iaretini kaldrn. Devam etmeye hazr olduunuzda Sonraki zerine tklayn. +FullInstallation=Tam Kurulum +; Mmknse 'Compact' ifadesini kendi dilinizde 'Minimal' anlamnda evirmeyin +CompactInstallation=Normal kurulum +CustomInstallation=zel kurulum +NoUninstallWarningTitle=Bileenler Zaten Var +NoUninstallWarning=u bileenlerin bilgisayarnzda zaten kurulu olduu algland:%n%n%1%n%n Bu bileenlerin iaretlerinin kaldrlmas bileenleri kaldrmaz.%n%nGene de devam etmek istiyor musunuz? +ComponentSize1=%1 KB +ComponentSize2=%1 MB +ComponentsDiskSpaceGBLabel=Seili bileenler iin diskte en az [gb] GB bo alan bulunmas gerekli. +ComponentsDiskSpaceMBLabel=Seili bileenler iin diskte en az [mb] MB bo alan bulunmas gerekli. + +; *** "Ek lemleri Sein" sayfas +WizardSelectTasks=Ek lemleri Sein +SelectTasksDesc=Baka hangi ilemler yaplsn? +SelectTasksLabel2=[name] kurulumu srasnda yaplmasn istediiniz ek ileri sein ve Sonraki zerine tklayn. + +; *** "Balat Mens Klasrn Sein" sayfas +WizardSelectProgramGroup=Balat Mens Klasrn Sein +SelectStartMenuFolderDesc=Uygulamann ksayollar nereye eklensin? +SelectStartMenuFolderLabel3=Kurulum yardmcs uygulama ksayollarn aadaki Balat Mens klasrne ekleyecek. +SelectStartMenuFolderBrowseLabel=Devam etmek iin Sonraki zerine tklayn. Farkl bir klasr semek iin Gzat zerine tklayn. +MustEnterGroupName=Bir klasr ad yazmalsnz. +GroupNameTooLong=Klasr ad ya da yol ok uzun. +InvalidGroupName=Klasr ad geersiz. +BadGroupName=Klasr adnda u karakterler bulunamaz:%n%n%1 +NoProgramGroupCheck2=Balat Mens klasr &oluturulmasn + +; *** "Kurulmaya Hazr" sayfas +WizardReady=Kurulmaya Hazr +ReadyLabel1=[name] bilgisayarnza kurulmaya hazr. +ReadyLabel2a=Kuruluma devam etmek iin Sonraki zerine, ayarlar gzden geirip deitirmek iin nceki zerine tklayn. +ReadyLabel2b=Kuruluma devam etmek iin Sonraki zerine tklayn. +ReadyMemoUserInfo=Kullanc bilgileri: +ReadyMemoDir=Hedef konumu: +ReadyMemoType=Kurulum tr: +ReadyMemoComponents=Seilmi bileenler: +ReadyMemoGroup=Balat Mens klasr: +ReadyMemoTasks=Ek ilemler: + +; *** TDownloadWizardPage wizard page and DownloadTemporaryFile +DownloadingLabel=Ek dosyalar indiriliyor... +ButtonStopDownload=ndirmeyi &durdur +StopDownload=ndirmeyi durdurmak istediinize emin misiniz? +ErrorDownloadAborted=ndirme durduruldu +ErrorDownloadFailed=ndirilemedi: %1 %2 +ErrorDownloadSizeFailed=Boyut alnamad: %1 %2 +ErrorFileHash1=Dosya karmas dorulanamad: %1 +ErrorFileHash2=Dosya karmas geersiz: %1 olmas gerekirken %2 +ErrorProgress=Adm geersiz: %1 / %2 +ErrorFileSize=Dosya boyutu geersiz: %1 olmas gerekirken %2 + +; *** "Kuruluma Hazrlanlyor" sayfas +WizardPreparing=Kuruluma Hazrlanlyor +PreparingDesc=[name] bilgisayarnza kurulmaya hazrlanyor. +PreviousInstallNotCompleted=nceki uygulama kurulumu ya da kaldrlmas tamamlanmam. Bu kurulumun tamamlanmas iin bilgisayarnz yeniden balatmalsnz.%n%nBilgisayarnz yeniden balattktan sonra ilemi tamamlamak iin [name] kurulum yardmcsn yeniden altrn. +CannotContinue=Kuruluma devam edilemiyor. kmak iin ptal zerine tklayn. +ApplicationsFound=Kurulum yardmcs tarafndan gncellenmesi gereken dosyalar, u uygulamalar tarafndan kullanyor. Kurulum yardmcsnn bu uygulamalar otomatik olarak kapatmasna izin vermeniz nerilir. +ApplicationsFound2=Kurulum yardmcs tarafndan gncellenmesi gereken dosyalar, u uygulamalar tarafndan kullanyor. Kurulum yardmcsnn bu uygulamalar otomatik olarak kapatmasna izin vermeniz nerilir. Kurulum tamamlandktan sonra, uygulamalar yeniden balatlmaya allacak. +CloseApplications=&Uygulamalar kapatlsn +DontCloseApplications=Uygulamalar &kapatlmasn +ErrorCloseApplications=Kurulum yardmcs uygulamalar kapatamad. Kurulum yardmcs tarafndan gncellenmesi gereken dosyalar kullanan uygulamalar el ile kapatmanz nerilir. +PrepareToInstallNeedsRestart=Kurulum iin bilgisayarn yeniden balatlmas gerekiyor. Bilgisayar yeniden balattktan sonra [name] kurulumunu tamamlamak iin kurulum yardmcsn yeniden altrn.%n%nBilgisayar imdi yeniden balatmak ister misiniz? + +; *** "Kuruluyor" sayfas +WizardInstalling=Kuruluyor +InstallingLabel=Ltfen [name] bilgisayarnza kurulurken bekleyin. + +; *** "Kurulum Tamamland" sayfas +FinishedHeadingLabel=[name] kurulum yardmcs tamamlanyor +FinishedLabelNoIcons=Bilgisayarnza [name] kurulumu tamamland. +FinishedLabel=Bilgisayarnza [name] kurulumu tamamland. Simgeleri yklemeyi setiyseniz, simgelere tklayarak uygulamay balatabilirsiniz. +ClickFinish=Kurulum yardmcsndan kmak iin Bitti zerine tklayn. +FinishedRestartLabel=[name] kurulumunun tamamlanmas iin, bilgisayarnz yeniden balatlmal. imdi yeniden balatmak ister misiniz? +FinishedRestartMessage=[name] kurulumunun tamamlanmas iin, bilgisayarnz yeniden balatlmal.%n%nimdi yeniden balatmak ister misiniz? +ShowReadmeCheck=Evet README dosyas grntlensin +YesRadio=&Evet, bilgisayar imdi yeniden balatlsn +NoRadio=&Hayr, bilgisayar daha sonra yeniden balatacam +; used for example as 'Run MyProg.exe' +RunEntryExec=%1 altrlsn +; used for example as 'View Readme.txt' +RunEntryShellExec=%1 grntlensin + +; *** "Kurulum iin Sradaki Disk Gerekli" iletileri +ChangeDiskTitle=Kurulum Yardmcs Sradaki Diske Gerek Duyuyor +SelectDiskLabel2=Ltfen %1 numaral diski takp Tamam zerine tklayn.%n%nDiskteki dosyalar aadakinden farkl bir klasrde bulunuyorsa, doru yolu yazn ya da Gzat zerine tklayarak doru klasr sein. +PathLabel=&Yol: +FileNotInDir2="%1" dosyas "%2" iinde bulunamad. Ltfen doru diski takn ya da baka bir klasr sein. +SelectDirectoryLabel=Ltfen sonraki diskin konumunu belirtin. + +; *** Kurulum aamas iletileri +SetupAborted=Kurulum tamamlanamad.%n%nLtfen sorunu dzelterek kurulum yardmcsn yeniden altrn. +AbortRetryIgnoreSelectAction=Yaplacak ilemi sein +AbortRetryIgnoreRetry=&Yeniden denensin +AbortRetryIgnoreIgnore=&Sorun yok saylp devam edilsin +AbortRetryIgnoreCancel=Kurulum iptal edilsin + +; *** Kurulum durumu iletileri +StatusClosingApplications=Uygulamalar kapatlyor... +StatusCreateDirs=Klasrler oluturuluyor... +StatusExtractFiles=Dosyalar ayklanyor... +StatusCreateIcons=Ksayollar oluturuluyor... +StatusCreateIniEntries=INI kaytlar oluturuluyor... +StatusCreateRegistryEntries=Kayt Defteri kaytlar oluturuluyor... +StatusRegisterFiles=Dosyalar kaydediliyor... +StatusSavingUninstall=Kaldrma bilgileri kaydediliyor... +StatusRunProgram=Kurulum tamamlanyor... +StatusRestartingApplications=Uygulamalar yeniden balatlyor... +StatusRollback=Deiiklikler geri alnyor... + +; *** eitli hata iletileri +ErrorInternal2= hata: %1 +ErrorFunctionFailedNoCode=%1 tamamlanamad. +ErrorFunctionFailed=%1 tamamlanamad; kod %2 +ErrorFunctionFailedWithMessage=%1 tamamlanamad; kod %2.%n%3 +ErrorExecutingProgram=u dosya yrtlemedi:%n%1 + +; *** Kayt defteri hatalar +ErrorRegOpenKey=Kayt defteri anahtar alrken bir sorun kt:%n%1%2 +ErrorRegCreateKey=Kayt defteri anahtar eklenirken bir sorun kt:%n%1%2 +ErrorRegWriteKey=Kayt defteri anahtar yazlrken bir sorun kt:%n%1%2 + +; *** INI hatalar +ErrorIniEntry="%1" dosyasna INI kayd eklenirken bir sorun kt. + +; *** Dosya kopyalama hatalar +FileAbortRetryIgnoreSkipNotRecommended=&Bu dosya atlansn (nerilmez) +FileAbortRetryIgnoreIgnoreNotRecommended=&Sorun yok saylp devam edilsin (nerilmez) +SourceIsCorrupted=Kaynak dosya bozulmu +SourceDoesntExist="%1" kaynak dosyas bulunamad +ExistingFileReadOnly2=Var olan dosya salt okunabilir olarak iaretlenmi olduundan zerine yazlamad. +ExistingFileReadOnlyRetry=&Salt okunur iareti kaldrlp yeniden denensin +ExistingFileReadOnlyKeepExisting=&Var olan dosya korunsun +ErrorReadingExistingDest=Var olan dosya okunmaya allrken bir sorun kt. +FileExistsSelectAction=Yaplacak ilemi sein +FileExists2=Dosya zaten var. +FileExistsOverwriteExisting=&Var olan dosyann zerine yazlsn +FileExistsKeepExisting=Var &olan dosya korunsun +FileExistsOverwriteOrKeepAll=&Sonraki akmalarda da bu ilem yaplsn +ExistingFileNewerSelectAction=Yaplacak ilemi sein +ExistingFileNewer2=Var olan dosya, kurulum yardmcs tarafndan yazlmaya allandan daha yeni. +ExistingFileNewerOverwriteExisting=&Var olan dosyann zerine yazlsn +ExistingFileNewerKeepExisting=Var &olan dosya korunsun (nerilir) +ExistingFileNewerOverwriteOrKeepAll=&Sonraki akmalarda bu ilem yaplsn +ErrorChangingAttr=Var olan dosyann znitelikleri deitirilirken bir sorun kt: +ErrorCreatingTemp=Hedef klasrde bir dosya oluturulurken bir sorun kt: +ErrorReadingSource=Kaynak dosya okunurken bir sorun kt: +ErrorCopying=Dosya kopyalanrken bir sorun kt: +ErrorReplacingExistingFile=Var olan dosya deitirilirken bir sorun kt: +ErrorRestartReplace=Yeniden balatmada zerine yazlamad: +ErrorRenamingTemp=Hedef klasrdeki bir dosyann ad deitirilirken sorun kt: +ErrorRegisterServer=DLL/OCX kayt edilemedi: %1 +ErrorRegSvr32Failed=RegSvr32 ilemi u kod ile tamamlanamad: %1 +ErrorRegisterTypeLib=Tr kitapl kayt defterine eklenemedi: %1 + +; *** Kaldrma srasnda grntlenecek ad iaretleri +; used for example as 'My Program (32-bit)' +UninstallDisplayNameMark=%1 (%2) +; used for example as 'My Program (32-bit, All users)' +UninstallDisplayNameMarks=%1 (%2, %3) +UninstallDisplayNameMark32Bit=32 bit +UninstallDisplayNameMark64Bit=64 bit +UninstallDisplayNameMarkAllUsers=Tm kullanclar +UninstallDisplayNameMarkCurrentUser=Geerli kullanc + +; *** Kurulum sonras hatalar +ErrorOpeningReadme=README dosyas alrken bir sorun kt. +ErrorRestartingComputer=Kurulum yardmcs bilgisayarnz yeniden balatamyor. Ltfen bilgisayarnz yeniden balatn. + +; *** Kaldrma yardmcs iletileri +UninstallNotFound="%1" dosyas bulunamad. Uygulama kaldrlamyor. +UninstallOpenError="%1" dosyas alamad. Uygulama kaldrlamyor. +UninstallUnsupportedVer="%1" uygulama kaldrma gnlk dosyasnn biimi, bu kaldrma yardmcs srm tarafndan anlalamad. Uygulama kaldrlamyor. +UninstallUnknownEntry=Kaldrma gnlnde bilinmeyen bir kayt (%1) bulundu. +ConfirmUninstall=%1 uygulamasn tm bileenleri ile birlikte tamamen kaldrmak istediinize emin misiniz? +UninstallOnlyOnWin64=Bu kurulum yalnz 64 bit Windows zerinden kaldrlabilir. +OnlyAdminCanUninstall=Bu kurulum yalnz ynetici haklarna sahip bir kullanc tarafndan kaldrlabilir. +UninstallStatusLabel=Ltfen %1 uygulamas bilgisayarnzdan kaldrlrken bekleyin. +UninstalledAll=%1 uygulamas bilgisayarnzdan kaldrld. +UninstalledMost=%1 uygulamas kaldrld.%n%nBaz bileenler kaldrlamad. Bunlar el ile silebilirsiniz. +UninstalledAndNeedsRestart=%1 kaldrma ileminin tamamlanmas iin bilgisayarnzn yeniden balatlmas gerekli.%n%nimdi yeniden balatmak ister misiniz? +UninstallDataCorrupted="%1" dosyas bozulmu. Kaldrlamyor. + +; *** Kaldrma aamas iletileri +ConfirmDeleteSharedFileTitle=Paylalan Dosya Silinsin mi? +ConfirmDeleteSharedFile2=Sisteme gre, paylalan u dosya baka bir uygulama tarafndan kullanlmyor ve kaldrlabilir. Bu paylalm dosyay silmek ister misiniz?%n%nBu dosya, baka herhangi bir uygulama tarafndan kullanlyor ise, silindiinde dier uygulama dzgn almayabilir. Emin deilseniz Hayr zerine tklayn. Dosyay sisteminizde brakmann bir zarar olmaz. +SharedFileNameLabel=Dosya ad: +SharedFileLocationLabel=Konum: +WizardUninstalling=Kaldrma Durumu +StatusUninstalling=%1 kaldrlyor... + +; *** Kapatmay engelleme nedenleri +ShutdownBlockReasonInstallingApp=%1 kuruluyor. +ShutdownBlockReasonUninstallingApp=%1 kaldrlyor. + +; The custom messages below aren't used by Setup itself, but if you make +; use of them in your scripts, you'll want to translate them. + +[CustomMessages] + +NameAndVersion=%1 %2 srm +AdditionalIcons=Ek simgeler: +CreateDesktopIcon=Masast simg&esi oluturulsun +CreateQuickLaunchIcon=Hzl Balat simgesi &oluturulsun +ProgramOnTheWeb=%1 Web Sitesi +UninstallProgram=%1 Uygulamasn Kaldr +LaunchProgram=%1 Uygulamasn altr +AssocFileExtension=%1 &uygulamas ile %2 dosya uzants ilikilendirilsin +AssocingFileExtension=%1 uygulamas ile %2 dosya uzants ilikilendiriliyor... +AutoStartProgramGroupDescription=Balang: +AutoStartProgram=%1 otomatik olarak balatlsn +AddonHostProgramNotFound=%1 setiiniz klasrde bulunamad.%n%nYine de devam etmek istiyor musunuz? \ No newline at end of file diff --git a/bin/lib/innosetup/Languages/Ukrainian.isl b/bin/lib/innosetup/Languages/Ukrainian.isl new file mode 100644 index 0000000..c12c6eb --- /dev/null +++ b/bin/lib/innosetup/Languages/Ukrainian.isl @@ -0,0 +1,385 @@ +; *** Inno Setup version 6.1.0+ Ukrainian messages *** +; Author: Dmytro Onyshchuk +; E-Mail: mrlols3@gmail.com +; Please report all spelling/grammar errors, and observations. +; Version 2020.08.04 + +; *** Inno Setup 6.1.0 *** +; : +; E-Mail: mrlols3@gmail.com +; , . +; 2020.08.04 + +[LangOptions] +; The following three entries are very important. Be sure to read and +; understand the '[LangOptions] section' topic in the help file. +LanguageName=<0423><043A><0440><0430><0457><043D><0441><044C><043A><0430> +LanguageID=$0422 +LanguageCodePage=1251 +; If the language you are translating to requires special font faces or +; sizes, uncomment any of the following entries and change them accordingly. +;DialogFontName= +;DialogFontSize=8 +;WelcomeFontName=Verdana +;WelcomeFontSize=12 +;TitleFontName=Arial +;TitleFontSize=29 +;CopyrightFontName=Arial +;CopyrightFontSize=8 + +[Messages] + +; *** +SetupAppTitle= +SetupWindowTitle= %1 +UninstallAppTitle= +UninstallAppFullTitle= %1 + +; *** Misc. common +InformationTitle= +ConfirmTitle=ϳ +ErrorTitle= + +; *** SetupLdr messages +SetupLdrStartupMessage= %1 ', ? +LdrCannotCreateTemp= . +LdrCannotExecTemp= . +HelpTextNote= + +; *** Startup error messages +LastErrorMessage=%1.%n%n %2: %3 +SetupFileMissing= %1 . , . +SetupFileCorrupt= . , . +SetupFileCorruptOrWrongVer= . , . +InvalidParameter= :%n%n%1 +SetupAlreadyRunning= . +WindowsVersionNotSupported= Windows, '. +WindowsServicePackRequired= %1 Service Pack %2 . +NotOnThisPlatform= %1. +OnlyOnThisPlatform= %1. +OnlyOnTheseArchitectures= ' Windows :%n%n%1 +WinVersionTooLowError= %1 %2 . +WinVersionTooHighError= %1 %2 . +AdminPrivilegesRequired= . +PowerUserPrivilegesRequired= . +SetupAppRunningError=, %1 .%n%n , ﳿ OK , . +UninstallAppRunningError=, %1 .%n%n , ﳿ OK , . + +; *** Startup questions +PrivilegesRequiredOverrideTitle= +PrivilegesRequiredOverrideInstruction= +PrivilegesRequiredOverrideText1=%1 ( ), . +PrivilegesRequiredOverrideText2=%1 , ( ). +PrivilegesRequiredOverrideAllUsers= & +PrivilegesRequiredOverrideAllUsersRecommended= & () +PrivilegesRequiredOverrideCurrentUser= +PrivilegesRequiredOverrideCurrentUserRecommended= & () + +; *** г +ErrorCreatingDir= "%1" +ErrorTooManyFilesInDir= "%1", + +; *** +ExitSetupTitle= +ExitSetupMessage= . , .%n%n .%n%n ? +AboutSetupMenuItem=& ... +AboutSetupTitle= +AboutSetupMessage=%1 %2%n%3%n%n%1 :%n%4 +AboutSetupNote= +TranslatorNote=Ukrainian translation by Dmytro Onyshchuk + +; *** +ButtonBack=< & +ButtonNext=& > +ButtonInstall=& +ButtonOK=OK +ButtonCancel= +ButtonYes=& +ButtonYesToAll= & +ButtonNo=&ͳ +ButtonNoToAll=& +ButtonFinish=& +ButtonBrowse=&... +ButtonWizardBrowse=&... +ButtonNewFolder=& + +; *** ij " " +SelectLanguageTitle= +SelectLanguageLabel= , . + +; *** +ClickNext= 볻, , . +BeveledLabel= +BrowseDialogTitle= +BrowseDialogLabel= ʻ. +NewFolderName= + +; *** "" +WelcomeLabel1= [name]. +WelcomeLabel2= [name/ver] .%n%n . + +; *** "" +WizardPassword= +PasswordLabel1= . +PasswordLabel3= , 볻, . . +PasswordEditLabel=&: +IncorrectPassword= . , . + +; *** "˳ " +WizardLicense=˳ +LicenseLabel= , . +LicenseLabel3= , . , . +LicenseAccepted= & +LicenseNotAccepted= & + +; *** "" +WizardInfoBefore= +InfoBeforeLabel= , , . +InfoBeforeClickLabel= , 볻. +WizardInfoAfter= +InfoAfterLabel= , , . +InfoAfterClickLabel= , 볻. + +; *** " " +WizardUserInfo= +UserInfoDesc= , . +UserInfoName=& : +UserInfoOrg=&: +UserInfoSerial=& : +UserInfoNameRequired= '. + +; *** " " +WizardSelectDir= +SelectDirDesc= [name]? +SelectDirLabel3= [name] . +SelectDirBrowseLabel= 볻, . , . +DiskSpaceGBLabel= [gb] . +DiskSpaceMBLabel= [mb] M . +CannotInstallToNetworkDrive= . +CannotInstallToUNCPath= . +InvalidPath= , :%n%nC:\APP%n%n UNC:%n%n\\\ +InvalidDrive= , . , . +DiskSpaceWarningTitle= +DiskSpaceWarning= %1 , %2 .%n%n ? +DirNameTooLong=' . +InvalidDirName= . +BadDirName32=' :%n%n%1 +DirExistsTitle= +DirExists=:%n%n%1%n%n . ? +DirDoesntExistTitle= +DirDoesntExist=:%n%n%1%n%n . ? + +; *** " " +WizardSelectComponents= +SelectComponentsDesc= ? +SelectComponentsLabel2= ; . 볻, . +FullInstallation= +; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) +CompactInstallation= +CustomInstallation= +NoUninstallWarningTitle= +NoUninstallWarning=, :%n%n%1%n%n³ .%n%n ? +ComponentSize1=%1 K +ComponentSize2=%1 M +ComponentsDiskSpaceGBLabel= [gb] . +ComponentsDiskSpaceMBLabel= [mb] M . + +; *** " " +WizardSelectTasks= +SelectTasksDesc= ? +SelectTasksLabel2= [name] , 볻. + +; *** " " +WizardSelectProgramGroup= +SelectStartMenuFolderDesc= ? +SelectStartMenuFolderLabel3= . +SelectStartMenuFolderBrowseLabel= 볻, . , . +MustEnterGroupName= ' . +GroupNameTooLong= . +InvalidGroupName= . +BadGroupName=' :%n%n%1 +NoProgramGroupCheck2=& + +; *** " " +WizardReady= +ReadyLabel1= [name] . +ReadyLabel2a= , , . +ReadyLabel2b= . +ReadyMemoUserInfo= : +ReadyMemoDir= : +ReadyMemoType= : +ReadyMemoComponents= : +ReadyMemoGroup= : +ReadyMemoTasks= : + +; *** TDownloadWizardPage wizard page and DownloadTemporaryFile +DownloadingLabel= ... +ButtonStopDownload=& +StopDownload= ? +ErrorDownloadAborted= +ErrorDownloadFailed= : %1 %2 +ErrorDownloadSizeFailed= : %1 %2 +ErrorFileHash1= : %1 +ErrorFileHash2= : %1, %2 +ErrorProgress= : %1 %2 +ErrorFileSize= : %1, %2 + +; *** "ϳ " +WizardPreparing=ϳ +PreparingDesc= [name] . +PreviousInstallNotCompleted= . .%n%nϳ , [name]. +CannotContinue= . , . +ApplicationsFound= , . . +ApplicationsFound2= , . . ϳ , . +CloseApplications=& +DontCloseApplications=& +ErrorCloseApplications= . , , , . +PrepareToInstallNeedsRestart= . ϳ , [name]%n%n ? + +; *** "" +WizardInstalling= +InstallingLabel= , , [name] '. + +; *** " " +FinishedHeadingLabel= [name] +FinishedLabelNoIcons= [name] . +FinishedLabel= [name] . . +ClickFinish= . +FinishedRestartLabel= [name] . ? +FinishedRestartMessage= [name] .%n%n ? +ShowReadmeCheck=, README +YesRadio=&, +NoRadio=&ͳ, +; used for example as 'Run MyProg.exe' +RunEntryExec=³ %1 +; used for example as 'View Readme.txt' +RunEntryShellExec= %1 + +; *** "Setup Needs the Next Disk" stuff +ChangeDiskTitle= +SelectDiskLabel2= , %1 OK.%n%n , , . +PathLabel=&: +FileNotInDir2= "%1" "%2". , . +SelectDirectoryLabel= , . + +; *** Installation phase messages +SetupAborted= .%n%n , . +AbortRetryIgnoreSelectAction= +AbortRetryIgnoreRetry=& +AbortRetryIgnoreIgnore=& +AbortRetryIgnoreCancel=³ + +; *** +StatusClosingApplications= ... +StatusCreateDirs= ... +StatusExtractFiles= ... +StatusCreateIcons= ... +StatusCreateIniEntries= INI ... +StatusCreateRegistryEntries= ... +StatusRegisterFiles= ... +StatusSavingUninstall= ... +StatusRunProgram= ... +StatusRestartingApplications= ... +StatusRollback= ... + +; *** г +ErrorInternal2= : %1 +ErrorFunctionFailedNoCode=%1 +ErrorFunctionFailed=%1 ; %2 +ErrorFunctionFailedWithMessage=%1 ; %2.%n%3 +ErrorExecutingProgram= :%n%1 + +; *** +ErrorRegOpenKey= :%n%1\%2 +ErrorRegCreateKey= :%n%1\%2 +ErrorRegWriteKey= :%n%1\%2 + +; *** INI +ErrorIniEntry= INI- "%1". + +; *** +FileAbortRetryIgnoreSkipNotRecommended=& ( ) +FileAbortRetryIgnoreIgnoreNotRecommended=& ( ) +SourceIsCorrupted= +SourceDoesntExist= "%1" +ExistingFileReadOnly2= , . +ExistingFileReadOnlyRetry=& " " +ExistingFileReadOnlyKeepExisting=& +ErrorReadingExistingDest= : +FileExistsSelectAction= +FileExists2= . +FileExistsOverwriteExisting=& +FileExistsKeepExisting=& +FileExistsOverwriteOrKeepAll=& +ExistingFileNewerSelectAction= +ExistingFileNewer2= , . +ExistingFileNewerOverwriteExisting=& +ExistingFileNewerKeepExisting=& () +ExistingFileNewerOverwriteOrKeepAll=& +ErrorChangingAttr= : +ErrorCreatingTemp= : +ErrorReadingSource= : +ErrorCopying= : +ErrorReplacingExistingFile= : +ErrorRestartReplace= RestartReplace: +ErrorRenamingTemp= : +ErrorRegisterServer= DLL/OCX: %1 +ErrorRegSvr32Failed= RegSvr32, %1 +ErrorRegisterTypeLib= : %1 + +; *** Uninstall display name markings +UninstallDisplayNameMark=%1 (%2) +UninstallDisplayNameMarks=%1 (%2, %3) +UninstallDisplayNameMark32Bit=32- +UninstallDisplayNameMark64Bit=64- +UninstallDisplayNameMarkAllUsers= +UninstallDisplayNameMarkCurrentUser= + +; *** Post-installation errors +ErrorOpeningReadme= README. +ErrorRestartingComputer= '. , . + +; *** +UninstallNotFound= "%1" , . +UninstallOpenError= "%1". +UninstallUnsupportedVer= "%1" . +UninstallUnknownEntry= (%1) +ConfirmUninstall= , %1 ? +UninstallOnlyOnWin64= 64- Windows. +OnlyAdminCanUninstall= . +UninstallStatusLabel= , , %1 '. +UninstalledAll=%1 '. +UninstalledMost= %1 .%n%n . . +UninstalledAndNeedsRestart= %1 .%n%n ? +UninstallDataCorrupted= "%1" . + +; *** Uninstallation phase messages +ConfirmDeleteSharedFileTitle= ? +ConfirmDeleteSharedFile2= , . ?%n%n , . , ͳ. . +SharedFileNameLabel=' : +SharedFileLocationLabel=: +WizardUninstalling= +StatusUninstalling= %1... + + +; *** +ShutdownBlockReasonInstallingApp= %1. +ShutdownBlockReasonUninstallingApp= %1. + +; The custom messages below aren't used by Setup itself, but if you make +; use of them in your scripts, you'll want to translate them. + +[CustomMessages] + +NameAndVersion=%1, %2 +AdditionalIcons= : +CreateDesktopIcon= & +CreateQuickLaunchIcon= & +ProgramOnTheWeb= %1 +UninstallProgram= %1 +LaunchProgram=³ %1 +AssocFileExtension=& %1 %2 +AssocingFileExtension= %1 %2... +AutoStartProgramGroupDescription=: +AutoStartProgram= %1 +AddonHostProgramNotFound=%1 %n%n ? diff --git a/bin/lib/innosetup/Setup.e32 b/bin/lib/innosetup/Setup.e32 new file mode 100644 index 0000000..d4103d6 Binary files /dev/null and b/bin/lib/innosetup/Setup.e32 differ diff --git a/bin/lib/innosetup/app/SetupClassicIcon.ico b/bin/lib/innosetup/SetupClassicIcon.ico similarity index 100% rename from bin/lib/innosetup/app/SetupClassicIcon.ico rename to bin/lib/innosetup/SetupClassicIcon.ico diff --git a/bin/lib/innosetup/SetupLdr.e32 b/bin/lib/innosetup/SetupLdr.e32 new file mode 100644 index 0000000..bf3f7e5 Binary files /dev/null and b/bin/lib/innosetup/SetupLdr.e32 differ diff --git a/bin/lib/innosetup/app/WizClassicImage-IS.bmp b/bin/lib/innosetup/WizClassicImage-IS.bmp similarity index 100% rename from bin/lib/innosetup/app/WizClassicImage-IS.bmp rename to bin/lib/innosetup/WizClassicImage-IS.bmp diff --git a/bin/lib/innosetup/app/WizClassicImage.bmp b/bin/lib/innosetup/WizClassicImage.bmp similarity index 100% rename from bin/lib/innosetup/app/WizClassicImage.bmp rename to bin/lib/innosetup/WizClassicImage.bmp diff --git a/bin/lib/innosetup/app/WizClassicSmallImage-IS.bmp b/bin/lib/innosetup/WizClassicSmallImage-IS.bmp similarity index 100% rename from bin/lib/innosetup/app/WizClassicSmallImage-IS.bmp rename to bin/lib/innosetup/WizClassicSmallImage-IS.bmp diff --git a/bin/lib/innosetup/app/WizClassicSmallImage.bmp b/bin/lib/innosetup/WizClassicSmallImage.bmp similarity index 100% rename from bin/lib/innosetup/app/WizClassicSmallImage.bmp rename to bin/lib/innosetup/WizClassicSmallImage.bmp diff --git a/bin/lib/innosetup/app/Compil32.exe b/bin/lib/innosetup/app/Compil32.exe deleted file mode 100644 index 03160f1..0000000 Binary files a/bin/lib/innosetup/app/Compil32.exe and /dev/null differ diff --git a/bin/lib/innosetup/app/Examples/64BitThreeArch.iss b/bin/lib/innosetup/app/Examples/64BitThreeArch.iss deleted file mode 100644 index 4480e1d..0000000 --- a/bin/lib/innosetup/app/Examples/64BitThreeArch.iss +++ /dev/null @@ -1,64 +0,0 @@ -; -- 64BitThreeArch.iss -- -; Demonstrates how to install a program built for three different -; architectures (x86, x64, Arm64) using a single installer. - -; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES! - -[Setup] -AppName=My Program -AppVersion=1.5 -WizardStyle=modern -DefaultDirName={autopf}\My Program -DefaultGroupName=My Program -UninstallDisplayIcon={app}\MyProg.exe -Compression=lzma2 -SolidCompression=yes -OutputDir=userdocs:Inno Setup Examples Output -; "ArchitecturesInstallIn64BitMode=x64compatible or arm64" instructs -; Setup to use "64-bit install mode" on x64-compatible systems and -; Arm64 systems, meaning Setup should use the native 64-bit Program -; Files directory and the 64-bit view of the registry. On all other -; OS architectures (e.g., 32-bit x86), Setup will use "32-bit -; install mode". -ArchitecturesInstallIn64BitMode=x64compatible or arm64 - -[Files] -; In order of preference, we want to install: -; - Arm64 binaries on Arm64 systems -; - else, x64 binaries on x64-compatible systems -; - else, x86 binaries - -; Place all Arm64-specific files here, using 'Check: PreferArm64Files' on each entry. -Source: "MyProg-Arm64.exe"; DestDir: "{app}"; DestName: "MyProg.exe"; Check: PreferArm64Files - -; Place all x64-specific files here, using 'Check: PreferX64Files' on each entry. -; Only the first entry should include the 'solidbreak' flag. -Source: "MyProg-x64.exe"; DestDir: "{app}"; DestName: "MyProg.exe"; Check: PreferX64Files; Flags: solidbreak - -; Place all x86-specific files here, using 'Check: PreferX86Files' on each entry. -; Only the first entry should include the 'solidbreak' flag. -Source: "MyProg.exe"; DestDir: "{app}"; Check: PreferX86Files; Flags: solidbreak - -; Place all common files here. -; Only the first entry should include the 'solidbreak' flag. -Source: "MyProg.chm"; DestDir: "{app}"; Flags: solidbreak -Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme - -[Icons] -Name: "{group}\My Program"; Filename: "{app}\MyProg.exe" - -[Code] -function PreferArm64Files: Boolean; -begin - Result := IsArm64; -end; - -function PreferX64Files: Boolean; -begin - Result := not PreferArm64Files and IsX64Compatible; -end; - -function PreferX86Files: Boolean; -begin - Result := not PreferArm64Files and not PreferX64Files; -end; diff --git a/bin/lib/innosetup/app/Examples/MyProg-Arm64.exe b/bin/lib/innosetup/app/Examples/MyProg-Arm64.exe deleted file mode 100644 index 389416f..0000000 Binary files a/bin/lib/innosetup/app/Examples/MyProg-Arm64.exe and /dev/null differ diff --git a/bin/lib/innosetup/app/Examples/MyProg-x64.exe b/bin/lib/innosetup/app/Examples/MyProg-x64.exe deleted file mode 100644 index f5a9057..0000000 Binary files a/bin/lib/innosetup/app/Examples/MyProg-x64.exe and /dev/null differ diff --git a/bin/lib/innosetup/app/Examples/MyProg.exe b/bin/lib/innosetup/app/Examples/MyProg.exe deleted file mode 100644 index f8709f5..0000000 Binary files a/bin/lib/innosetup/app/Examples/MyProg.exe and /dev/null differ diff --git a/bin/lib/innosetup/app/Examples/PowerShell.iss b/bin/lib/innosetup/app/Examples/PowerShell.iss deleted file mode 100644 index 291babb..0000000 --- a/bin/lib/innosetup/app/Examples/PowerShell.iss +++ /dev/null @@ -1,87 +0,0 @@ -; -- PowerShell.iss -- -; Demonstrates calling Powershell at compile time and at run time. -; At compile time it first generates a random password and then it shows it and copies it to the clipboard. -; At run time it shows the serial number of the system. - -; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES! - -#define PowerShellExe "powershell.exe" -#define PowerShellCommandParam "-ExecutionPolicy Bypass -Command" - -#define ExecPowerShell(str Command) \ - Local[0] = PowerShellCommandParam + " " + AddQuotes(Command), \ - Message("Executing PowerShell command: " + Local[0]), \ - ExecAndGetFirstLine(PowerShellExe, Local[0]) - -#define Password ExecPowerShell( \ - "Add-Type -AssemblyName 'System.Web';" + \ - "[System.Web.Security.Membership]::GeneratePassword(12, 4);") - -#expr ExecPowerShell( \ - "$Password = '" + Password + "';" + \ - "Set-Clipboard -Value $Password;" + \ - "Add-Type -AssemblyName System.Windows.Forms;" + \ - "[System.Windows.Forms.MessageBox]::Show(" + \ - "'The generated password (copied to clipboard) is: ' + $Password + '" + NewLine + NewLine + \ - "Click OK to continue.', 'ISPP')") - -[Setup] -AppName=My Program -AppVersion=1.5 -WizardStyle=modern -DefaultDirName={autopf}\My Program -DefaultGroupName=My Program -UninstallDisplayIcon={app}\MyProg.exe -Compression=lzma2 -SolidCompression=yes -OutputDir=userdocs:Inno Setup Examples Output -Password={#Password} - -[Files] -Source: "MyProg.exe"; DestDir: "{app}" -Source: "MyProg.chm"; DestDir: "{app}" -Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme - -[Icons] -Name: "{group}\My Program"; Filename: "{app}\MyProg.exe" - -[Code] -var - Line: String; - -procedure ExecAndGetFirstLineLog(const S: String; const Error, FirstLine: Boolean); -begin - if not Error and (Line = '') and (Trim(S) <> '') then - Line := S; { First non-empty line found, store it } - Log('Exec output: ' + S); -end; - -function ExecAndGetFirstLine(const Filename, Params, WorkingDir: String; var ResultCode: Integer): String; -begin - Line := ''; - try - ExecAndLogOutput(Filename, Params, WorkingDir, SW_SHOWNORMAL, ewWaitUntilTerminated, ResultCode, @ExecAndGetFirstLineLog); - except - Log(GetExceptionMessage); - end; - Result := Line; -end; - -function ExecPowerShell(const Command: String): String; -var - FullCommand: String; - ResultCode: Integer; -begin - FullCommand := '{#PowerShellCommandParam} ' + AddQuotes(Command); - Log('Executing PowerShell command: ' + FullCommand); - Result := ExecAndGetFirstLine('{#PowerShellExe}', FullCommand, '', ResultCode); -end; - -function InitializeSetup: Boolean; -var - SerialNumber: String; -begin - SerialNumber := ExecPowerShell('Get-WmiObject -Class Win32_BIOS | Select-Object -ExpandProperty SerialNumber'); - MsgBox(Format('Serial number: %s'#10#10'Click OK to continue.', [SerialNumber]), mbInformation, MB_OK); - Result := True; -end; \ No newline at end of file diff --git a/bin/lib/innosetup/app/ISCC.exe b/bin/lib/innosetup/app/ISCC.exe deleted file mode 100644 index 972df86..0000000 Binary files a/bin/lib/innosetup/app/ISCC.exe and /dev/null differ diff --git a/bin/lib/innosetup/app/ISCmplr.dll b/bin/lib/innosetup/app/ISCmplr.dll deleted file mode 100644 index 7dd1087..0000000 Binary files a/bin/lib/innosetup/app/ISCmplr.dll and /dev/null differ diff --git a/bin/lib/innosetup/app/ISPP.dll b/bin/lib/innosetup/app/ISPP.dll deleted file mode 100644 index d3ff975..0000000 Binary files a/bin/lib/innosetup/app/ISPP.dll and /dev/null differ diff --git a/bin/lib/innosetup/app/ISetup-dark.chm b/bin/lib/innosetup/app/ISetup-dark.chm deleted file mode 100644 index 983a44c..0000000 Binary files a/bin/lib/innosetup/app/ISetup-dark.chm and /dev/null differ diff --git a/bin/lib/innosetup/app/ISetup.chm b/bin/lib/innosetup/app/ISetup.chm deleted file mode 100644 index 11d0674..0000000 Binary files a/bin/lib/innosetup/app/ISetup.chm and /dev/null differ diff --git a/bin/lib/innosetup/app/Languages/Arabic.isl b/bin/lib/innosetup/app/Languages/Arabic.isl deleted file mode 100644 index 35b9a6b..0000000 --- a/bin/lib/innosetup/app/Languages/Arabic.isl +++ /dev/null @@ -1,393 +0,0 @@ -; *** Inno Setup version 6.4.0+ arabic messages *** -; Arabic translation Translated by nacer baaziz (nacerstile@gmail.com) -; -; To download user-contributed translations of this file, go to: -; https://jrsoftware.org/files/istrans/ -; -; Note: When translating this text, do not add periods (.) to the end of -; messages that didn't have them already, because on those messages Inno -; Setup adds the periods automatically (appending a period would result in -; two periods being displayed). - -[LangOptions] -; The following three entries are very important. Be sure to read and -; understand the '[LangOptions] section' topic in the help file. -LanguageName=العربية -LanguageID=$0401 -LanguageCodePage=0 -RightToLeft=yes -; If the language you are translating to requires special font faces or -; sizes, uncomment any of the following entries and change them accordingly. -;DialogFontName= -;DialogFontSize=8 -;WelcomeFontName=Verdana -;WelcomeFontSize=12 -;TitleFontName=Arial -;TitleFontSize=29 -;CopyrightFontName=Arial -;CopyrightFontSize=8 - -[Messages] - -; *** Application titles -SetupAppTitle=تثبيت -SetupWindowTitle=تثبيت - %1 -UninstallAppTitle=إزالة التثبيت -UninstallAppFullTitle=إزالة تثبيت %1 - -; *** Misc. common -InformationTitle=معلومات -ConfirmTitle=تأكيد -ErrorTitle=خطأ - -; *** SetupLdr messages -SetupLdrStartupMessage=هذا المعالج سيقوم بتثبيت %1. هل تريد المتابعة? -LdrCannotCreateTemp=تعذر إنشاء الملفات المؤقتة, تم فشل معالج التثبيت. -LdrCannotExecTemp=تعذر تشغيل الملفات من المجلد المؤقت. فشل معالج التثبيت. -HelpTextNote= - -; *** Startup error messages -LastErrorMessage=%1.%n%n خطأ %2: %3 -SetupFileMissing=الملف %1 مفقود من دليل التثبيت. الرجاء تصحيح المشكلة أو الحصول على نسخة جديدة من البرنامج. -SetupFileCorrupt=ملفات الإعداد تالفة. الرجاء الحصول على نسخة جديدة من البرنامج. -SetupFileCorruptOrWrongVer=ملفات الإعداد تالفة أو غير متوافقة مع هذا الإصدار من برنامج الإعداد. الرجاء تصحيح المشكلة أو الحصول على نسخة جديدة من البرنامج. -InvalidParameter=تم تمرير أوامر غير صالحة إلى سطر الأوامر : %n%n%1 -SetupAlreadyRunning=برنامج الإعداد قيد التشغيل بالفعل. -WindowsVersionNotSupported=لا يدعم هذا البرنامج إصدار Windows الذي يعمل به الكمبيوتر. -WindowsServicePackRequired=هذا البرنامج يتطلب %1 حزمة الخدمة %2 أو أعلى. -NotOnThisPlatform=لن يتم تشغيل هذا البرنامج على %1. -OnlyOnThisPlatform=يجب تشغيل هذا البرنامج على %1. -OnlyOnTheseArchitectures=يمكن تثبيت هذا البرنامج فقط على إصدارات Windows المصممة لهندسة المعالج التالية : %n%n%1 -WinVersionTooLowError=هذا البرنامج يتطلب %1 الإصدار %2 أو أعلى. -WinVersionTooHighError=لا يمكن تثبيت هذا البرنامج على %1 الإصدار %2 أو أعلى. -AdminPrivilegesRequired=يجب أن يتم تسجيل دخولك كمسؤول عند تثبيت هذا البرنامج. -PowerUserPrivilegesRequired=يجب أن يتم تسجيل دخولك كمسؤول أو أن تكون عضو في مجموعة المستخدمين المميزين عند تثبيت هذا البرنامج. -SetupAppRunningError=لقد كشف معالج الإعداد أن %1 يعمل بالفعل. %n%n يرجى إغلاق كل أجزائه الآن , ثم إضغط حسنا للمتابعة أو إلغاء الأمر للخروج. -UninstallAppRunningError=كشف معالج إلغاء التثبيت بأن %1 يعمل بالفعل.%n%n يرجى إغلاق كل أجزائه الآن , ثم إضغط حسنا للمتابعة أو إلغاء الأمر للخروج. - -; *** Startup questions -PrivilegesRequiredOverrideTitle=تحديد وضع التثبيت -PrivilegesRequiredOverrideInstruction=تحديد وضع التثبيت -PrivilegesRequiredOverrideText1=يمكن ل %1 أن يُثَبَّت عند جميع المستخدمين (يتطلب إمتيازات المسؤول), أو في حسابك فقط. -PrivilegesRequiredOverrideText2=يمكنك تثبيت %1 في حسابك فقط ، أو عند جميع المستخدمين (يتطلب إمتيازات المسؤول). -PrivilegesRequiredOverrideAllUsers=التثبيت ل&كافة المستخدمين -PrivilegesRequiredOverrideAllUsersRecommended=تثبيت ل&كافة المستخدمين (مستحسن) -PrivilegesRequiredOverrideCurrentUser=تثبيت في حسابي &فقط -PrivilegesRequiredOverrideCurrentUserRecommended=تثبيت في حسابي &فقط (مستحسن) - -; *** Misc. errors -ErrorCreatingDir=تعذر على برنامج الإعداد إنشاء المجلد "%1" -ErrorTooManyFilesInDir=تعذر إنشاء ملف في المجلد "%1" لأنه يحتوي على ملفات كثيرة جداً - -; *** Setup common messages -ExitSetupTitle=الخروج من معالج التثبيت -ExitSetupMessage=لم يكتمل الإعداد. إذا قمت بالخروج الآن، لن يتم تثبيت البرنامج.%n%n يمكنك تشغيل برنامج الإعداد مرة أخرى في وقت آخر لإكمال التثبيت.%n%n إنهاء الإعداد؟ -AboutSetupMenuItem=&حول الإعداد... -AboutSetupTitle=حول برنامج الإعداد -AboutSetupMessage=%1 الإصدار %2%n%3%n%n%1 صفحة الأنترنت:%n%4 -AboutSetupNote= -TranslatorNote=تم ترجمة المعالج إلى اللغة العربية بواسطة ناصر بعزيز - -; *** Buttons -ButtonBack=< ال&سابق -ButtonNext=ال&تالي > -ButtonInstall=&تثبيت -ButtonOK=&حسنا -ButtonCancel=إل&غاء الأمر -ButtonYes=&نعم -ButtonYesToAll=نعم لل&كل -ButtonNo=&لا -ButtonNoToAll=لا &للكل -ButtonFinish=إ&نهاء -ButtonBrowse=اس&تعراض... -ButtonWizardBrowse=اس&تعراض... -ButtonNewFolder=إنشاء مجلد &جديد - -; *** "Select Language" dialog messages -SelectLanguageTitle=إختر لغة معالج التثبيت -SelectLanguageLabel=حدد اللغة التي يجب استخدامها أثناء التثبيت. - -; *** Common wizard text -ClickNext=اضغط على التالي للمتابعة، أو إلغاء الأمر لإنهاء عملية التثبيت. -BeveledLabel= -BrowseDialogTitle=تصفح لاختيار مجلد -BrowseDialogLabel=حدد مجلدًا في القائمة أدناه، ثم انقر فوق حسنا. -NewFolderName=مجلد جديد - -; *** "Welcome" wizard page -WelcomeLabel1=مرحبا بكم في معالج تثبيت [name] -WelcomeLabel2=هذا المعالج سيقوم بتثبيت [name/ver] على جهازك. %n%nمن المستحسن أن تقوم بإغلاق كافة التطبيقات الأخرى قبل المتابعة. - -; *** "Password" wizard page -WizardPassword=كلمة المرور -PasswordLabel1=هذا التثبيت محمي بكلمة مرور. -PasswordLabel3=الرجاء تقديم كلمة المرور، ثم اضغط على التالي للمتابعة. كلمات المرور حساسة لحالة الأحرف. -PasswordEditLabel=&كلمة المرور: -IncorrectPassword=كلمة المرور التي أدخلتها غير صحيحة. يرجى إعادة المحاولة. - -; *** "License Agreement" wizard page -WizardLicense=اتفاقية الترخيص -LicenseLabel=يرجى قراءة المعلومات الهامة التالية قبل المتابعة. -LicenseLabel3=الرجاء قراءة اتفاقية الترخيص التالية. يجب قبول شروط هذه الاتفاقية قبل متابعة التثبيت. -LicenseAccepted=قرأت وأ&وافق على كل ما ذكر في هذه الإتفاقية -LicenseNotAccepted=أنا &لا أوافق على هذه الإتفاقية - -; *** "Information" wizard pages -WizardInfoBefore=معلومات -InfoBeforeLabel=يرجى قراءة المعلومات الهامة التالية قبل المتابعة. -InfoBeforeClickLabel=عندما تكون جاهزًا للاستمرار في عملية التثبيت اضغط على التالي. -WizardInfoAfter=معلومات -InfoAfterLabel=يرجى قراءة المعلومات الهامة التالية قبل المتابعة. -InfoAfterClickLabel=عندما تكون جاهزًا للاستمرار في عملية التثبيت اضغط على التالي. - -; *** "User Information" wizard page -WizardUserInfo=معلومات المستخدم -UserInfoDesc=يرجى إدخال معلوماتك. -UserInfoName=إسم ال&مستخدم : -UserInfoOrg=المن&ظمة: -UserInfoSerial=&الرقم التسلسلي: -UserInfoNameRequired=يجب إدخال إسم. - -; *** "Select Destination Location" wizard page -WizardSelectDir=تحديد موقع الوِجْهة -SelectDirDesc=أين يجب تثبيت [name]؟ -SelectDirLabel3=سيقوم معالج التثبيت بتثبيت [name] في المجلد التالي. -SelectDirBrowseLabel=للمتابعة، انقر فوق التالي. إذا كنت ترغب في تحديد مجلد آخر، انقر فوق استعراض. -DiskSpaceGBLabel=تحتاج على الأقل [gb] GB من المساحة لتثبيت البرنامج. -DiskSpaceMBLabel=تحتاج على الأقل [mb] MB من المساحة لتثبيت البرنامج. -CannotInstallToNetworkDrive=يتعذر على برنامج الإعداد التثبيت على محرك أقراص من خلال الشبكة. -CannotInstallToUNCPath=يتعذر على برنامج الإعداد تثبيت مسار UNC. -InvalidPath=يجب إدخال مسار كامل مع حرف محرك الأقراص; على سبيل المثال: %n%nC:\APP%n%أو مسار UNC في النموذج:%n%n\\server\share -InvalidDrive=محرك الأقراص أو مشاركة UNC التي حددتها غير موجود أو غير قابل للوصول. الرجاء تحديد آخر. -DiskSpaceWarningTitle=مساحة القرص غير كافية -DiskSpaceWarning=Sيتطلب الإعداد على الأقل %1 KB من المساحة الفارغة للتثبيت، ولكن محرك الأقراص المحدد فيه فقط %2 KB متوفرة.%n%nهل تريد المتابعة على أية حال؟ -DirNameTooLong=اسم المجلد أو المسار طويل جداً. -InvalidDirName=اسم المجلد غير صالح. -BadDirName32=لا يمكن لأسماء المجلدات تضمين أي من الأحرف التالية:%n%n%1 -DirExistsTitle=المجلد موجود بالفعل -DirExists=المجلد:%n%n%1%n%n موجود بالفعل. هل ترغب في التثبيت على هذا المجلد على أي حال؟ -DirDoesntExistTitle=المجلد غير موجود -DirDoesntExist=المجلد:%n%n%1%n%nغير موجود. هل تريد إنشاء المجلد؟ - -; *** "Select Components" wizard page -WizardSelectComponents=تحديد المكونات -SelectComponentsDesc=ما هي المكونات التي يجب تثبيتها؟ -SelectComponentsLabel2=حدد المكونات التي تريد تثبيتها ، وقم بتعطيل المكونات التي لا تريد تثبيتها. انقر فوق "التالي" عندما تكون مستعدًا للمتابعة. -FullInstallation=تثبيت كامل -; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) -CompactInstallation=تثبيت محدود -CustomInstallation=تثبيت مخصص -NoUninstallWarningTitle=مكونات موجودة -NoUninstallWarning=اكتشف برنامج الإعداد أن المكونات التالية مثبتة بالفعل على جهاز الكمبيوتر الخاص بك: %n%n%1%n%nلن يؤدي إلغاء تحديد هذه المكونات إلى إزالة تثبيتها.%n%nهل ترغب في الاستمرار على أي حال? -ComponentSize1=%1 KB -ComponentSize2=%1 MB -ComponentsDiskSpaceGBLabel=الاختيار الحالي يتطلب على الأقل [gb] GB من مساحة القرص. -ComponentsDiskSpaceMBLabel=الاختيار الحالي يتطلب على الأقل [mb] MB من مساحة القرص. - -; *** "Select Additional Tasks" wizard page -WizardSelectTasks=حدد المهام الإضافية -SelectTasksDesc=ما المهام الإضافية التي ينبغي تنفيذها؟ -SelectTasksLabel2=حدد المهام الإضافية التي ترغب في أن يقوم الإعداد بتنفيذها أثناء تثبيت [name], ثم إضغط على التالي. - -; *** "Select Start Menu Folder" wizard page -WizardSelectProgramGroup=حدد مجلد قائمة ابدأ -SelectStartMenuFolderDesc=أين يجب أن يضع الإعداد اختصارات البرنامج؟ -SelectStartMenuFolderLabel3=سيقوم برنامج الإعداد بإنشاء اختصارات البرنامج في مجلد قائمة ابدأ التالية. -SelectStartMenuFolderBrowseLabel=للمتابعة، اضغط على التالي. إذا كنت ترغب في تحديد مجلد آخر، انقر فوق استعراض. -MustEnterGroupName=يجب إدخال اسم مجلد. -GroupNameTooLong=اسم المجلد أو المسار طويل جداً. -InvalidGroupName=اسم المجلد غير صالح. -BadGroupName=لا يمكن أن يتضمن اسم المجلد أي من الأحرف التالية:%n%n%1 -NoProgramGroupCheck2=&عدم إنشاء مجلد في قائمة ابدأ - -; *** "Ready to Install" wizard page -WizardReady=جاهز للتثبيت -ReadyLabel1=الإعداد جاهز الآن لبدء تثبيت [name] على جهازك. -ReadyLabel2a=اضغط على "تثبيت" لمتابعة التثبيت، أو على "السابق" إذا كنت ترغب في مراجعة أو تغيير أية إعدادات. -ReadyLabel2b=اضغط على تثبيت للاستمرار في عملية التثبيت. -ReadyMemoUserInfo=معلومات المستخدم: -ReadyMemoDir=مسار الوِجْهة: -ReadyMemoType=نوع الإعداد: -ReadyMemoComponents=المكونات المحددة: -ReadyMemoGroup=مجلد قائمة ابدأ: -ReadyMemoTasks=مهام إضافية: - -; *** TDownloadWizardPage wizard page and DownloadTemporaryFile -DownloadingLabel=تحميل الملفات الإضافية... -ButtonStopDownload=إي&قاف التحميل -StopDownload=هل أنت متأكد من أنك ترغب في إيقاف التحميل؟ -ErrorDownloadAborted=تم إلغاء التحميل -ErrorDownloadFailed=فشل تحميل: %1 %2 -ErrorDownloadSizeFailed=خطأ في قراءة الحجم: %1 %2 -ErrorFileHash1=خطأ في قراءة الهاش الخاص بالملف: %1 -ErrorFileHash2=خطأ في هاش الملف: كان من المتوقع أن يكن : %1, بينما تم إيجاد : %2 -ErrorProgress=خطأ في الحصول على نسبة التقدم: %1 من %2 -ErrorFileSize=خطأ في حجم الملف: المتوقع هو : %1, الحجم الذي وجدناه هو : %2 - -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=جاري فك ضغط الملفات الإضافية... -ButtonStopExtraction=إي&قاف فك الضغط -StopExtraction=هل حقا ترغب في إيقاف فك الضغط? -ErrorExtractionAborted=تم إيقاف عملية فك الضغط -ErrorExtractionFailed=فشل فك الضغط : %1 - -; *** "Preparing to Install" wizard page -WizardPreparing=التحضير للتثبيت -PreparingDesc=الإعداد يستعد لتثبيت [name] على جهازك. -PreviousInstallNotCompleted=لم يكتمل التثبيت / إزالة البرنامج السابق. ستحتاج إلى إعادة تشغيل الكمبيوتر لإكمال هذا التثبيت.%n%nبعد إعادة تشغيل جهاز الكمبيوتر الخاص بك ، شغّل برنامج الإعداد مرة أخرى لإكمال تثبيت [name]. -CannotContinue=لا يمكن لبرنامج الإعداد المتابعة. يرجى الضغط على "إلغاء" للخروج. -ApplicationsFound=تستخدم التطبيقات التالية الملفات التي تحتاج إلى تحديث بواسطة برنامج الإعداد. يوصى بالسماح لبرنامج الإعداد بإغلاق هذه التطبيقات تلقائيًا. -ApplicationsFound2=تستخدم التطبيقات التالية الملفات التي تحتاج إلى تحديث بواسطة برنامج الإعداد. يوصى بالسماح لبرنامج الإعداد بإغلاق هذه التطبيقات تلقائيًا. بعد اكتمال التثبيت ، سيحاول برنامج الإعداد إعادة تشغيل التطبيقات. -CloseApplications=أغلق التطبيقات &تلقائيًا -DontCloseApplications=&لا تغلق التطبيقات -ErrorCloseApplications=لم يتمكن الإعداد من إغلاق جميع التطبيقات تلقائيًا. يوصى بإغلاق جميع التطبيقات التي تستخدم الملفات التي تحتاج إلى تحديث بواسطة برنامج الإعداد قبل المتابعة. -PrepareToInstallNeedsRestart=برنامج الإعداد يجب أن يقوم بإعادة تشغيل الجهاز. بعد إعادة تشغيل جهازك, قم بتشغيل برنامج الإعداد مرة أخرى لإكمال تثبيت [name].%n%nهل ترغب في إعادة التشغيل الآن? - -; *** "Installing" wizard page -WizardInstalling=جاري التثبيت -InstallingLabel=يرجى الانتظار ريثما يقوم برنامج الإعداد بتثبي [name] على جهازك. - -; *** "Setup Completed" wizard page -FinishedHeadingLabel=إنهاء معالج تثبيت [name] -FinishedLabelNoIcons=إكتمل معالج التثبيت من تثبيت [name] على جهازك. -FinishedLabel=اكتمل معالج التثبيت من تثبيت [name] على جهازك. قد يتم تشغيل التطبيق عن طريق تحديد الاختصارات المثبتة. -ClickFinish=إضغط على إنهاء للخروج من معالج التثبيت -FinishedRestartLabel=لاستكمال تثبيت [name], يجب على برنامج الإعداد إعادة تشغيل جهاز الكمبيوتر الخاص بك. هل ترغب في إعادة التشغيل الآن؟ -FinishedRestartMessage=لاستكمال تثبيت [name], يجب على برنامج الإعداد إعادة تشغيل جهاز الكمبيوتر الخاص بك.%n%nهل ترغب في إعادة التشغيل الآن؟ -ShowReadmeCheck=نعم ، أرغب في عرض ملف إقرأني -YesRadio=&نعم أعد تشغيل الكومبيوتر الآن -NoRadio=&لا ، سأعيد تشغيل الكمبيوتر لاحقًا -; used for example as 'Run MyProg.exe' -RunEntryExec=تشغيل %1 -; used for example as 'View Readme.txt' -RunEntryShellExec=عرض %1 - -; *** "Setup Needs the Next Disk" stuff -ChangeDiskTitle=يحتاج برنامج الإعداد إلى القرص التالي -SelectDiskLabel2=الرجاء إدراج القرص %1 وانقر فوق حسنا.%n%nإذا كان يمكن العثور على الملفات الموجودة على هذا القرص في مجلد غير الذي يظهر أدناه، أدخل المسار الصحيح أو انقر فوق استعراض. -PathLabel=&مسار : -FileNotInDir2=لم نتمكن من العثور على الملف "%1" في "%2". الرجاء إدراج القرص الصحيح أو تحديد مجلد آخر. -SelectDirectoryLabel=الرجاء تحديد موقع القرص التالي. - -; *** Installation phase messages -SetupAborted=لم يتم إكمال التثبيت. %n%nالرجاء تصحيح المشكلة وتشغيل الإعداد مرة أخرى. -AbortRetryIgnoreSelectAction=حدد إجراء -AbortRetryIgnoreRetry=&حاول مجددا -AbortRetryIgnoreIgnore=&تجاهل الخطأ والمتابعة -AbortRetryIgnoreCancel=إلغاء التثبيت - -; *** Installation status messages -StatusClosingApplications=جاري إغلاق التطبيقات... -StatusCreateDirs=جاري إنشاء المجلدات... -StatusExtractFiles=يتم استخراج الملفات... -StatusCreateIcons=يجري إنشاء الإختصارات... -StatusCreateIniEntries=يتم إنشاء مدخلات INI... -StatusCreateRegistryEntries=يجري الآن إنشاء مفاتيح السجل... -StatusRegisterFiles=يتم الآن تسجيل الملفات... -StatusSavingUninstall=جاري تسجيل معلومات إزالة التثبيت... -StatusRunProgram=جاري الإنتهاء من التثبيت... -StatusRestartingApplications=يتم إعادة تشغيل التطبيقات... -StatusRollback=جاري التراجع عن التغييرات... - -; *** Misc. errors -ErrorInternal2=خطأ داخلي: %1 -ErrorFunctionFailedNoCode=فشل %1 -ErrorFunctionFailed=فشل %1; رقم الخطء %2 -ErrorFunctionFailedWithMessage=فشل %1; رقم الخطء %2.%n%3 -ErrorExecutingProgram=الإعداد غير قابل على تشغيل الملف:%n%1 - -; *** Registry errors -ErrorRegOpenKey=خطأ في فتح مفتاح التسجيل:%n%1\%2 -ErrorRegCreateKey=خطأ في إنشاء مفتاح التسجيل:%n%1\%2 -ErrorRegWriteKey=خطأ في الكتابة على مفتاح التسجيل:%n%1\%2 - -; *** INI errors -ErrorIniEntry=حدث خطأ في إنشاء إدخال INI في الملف "%1". - -; *** File copying errors -FileAbortRetryIgnoreSkipNotRecommended=&تخطي هذا الملف (غير مستحسن) -FileAbortRetryIgnoreIgnoreNotRecommended=&تجاهل الخطأ والمتابعة (غير مستحسن) -SourceIsCorrupted=الملف المصدر تالف -SourceDoesntExist=الملف "%1"غير موجود -ExistingFileReadOnly2=تعذر استبدال الملف الموجود لأنه تم تحديده للقراءة فقط. -ExistingFileReadOnlyRetry=&أزل وضع القراءة فقط عن الملفات ثم حاول مرة أخرى -ExistingFileReadOnlyKeepExisting=&إحتفظ بالملفات الموجودة -ErrorReadingExistingDest=حدث خطأ أثناء محاولة قراءة الملف الموجود: -FileExistsSelectAction=اختر إجراء -FileExists2=الملف موجود بالفعل. -FileExistsOverwriteExisting=&استبدال الملف الموجود -FileExistsKeepExisting=ا&بقاء الملف الموجود -FileExistsOverwriteOrKeepAll=ا&فعل هذا للنزاعات القادمة -ExistingFileNewerSelectAction=اختر إجراء -ExistingFileNewer2=الملف الموجود أحدث من الملف الذي سيقوم معالج الإعداد بتثبيته. -ExistingFileNewerOverwriteExisting=&&استبدال الملف الموجود -ExistingFileNewerKeepExisting=ال&ابقاء على الملف الموجود (مستحسن) -ExistingFileNewerOverwriteOrKeepAll=ا&فعل هذا مع النزاعات القادمة -ErrorChangingAttr=حدث خطأ أثناء محاولة تغيير سمات الملف الموجود: -ErrorCreatingTemp=حدث خطأ أثناء محاولة إنشاء ملف في الدليل الوجهة: -ErrorReadingSource=حدث خطأ أثناء محاولة قراءة ملف مصدر: -ErrorCopying=حدث خطأ أثناء محاولة نسخ ملف: -ErrorReplacingExistingFile=حدث خطأ أثناء محاولة استبدال الملف الموجود: -ErrorRestartReplace=فشل إعادة تشغيل "استبدال": -ErrorRenamingTemp=حدث خطأ أثناء محاولة إعادة تسمية ملف في الدليل الوجهة: -ErrorRegisterServer=تعذر تسجيل ملفات DLL/OCX: %1 -ErrorRegSvr32Failed=فشل RegSvr32 مع رمز الخروج %1 -ErrorRegisterTypeLib=الإعداد غير قادر على تسجيل مكتبة النوع: %1 - -; *** Uninstall display name markings -; used for example as 'My Program (32-bit)' -UninstallDisplayNameMark=%1 (%2) -; used for example as 'My Program (32-bit, All users)' -UninstallDisplayNameMarks=%1 (%2, %3) -UninstallDisplayNameMark32Bit=32-bit -UninstallDisplayNameMark64Bit=64-bit -UninstallDisplayNameMarkAllUsers=كافة المستخدمين -UninstallDisplayNameMarkCurrentUser=المستخدم الحالي - -; *** Post-installation errors -ErrorOpeningReadme=حدث خطأ أثناء محاولة فتح ملف إقرأني. -ErrorRestartingComputer=لم يتمكن برنامج الإعداد من إعادة تشغيل الكمبيوتر. الرجاء القيام بذلك يدوياً. - -; *** Uninstaller messages -UninstallNotFound=الملف "%1" غير موجود. لا يمكن إزالة التثبيت. -UninstallOpenError=تعذر فتح "%1". لا يمكن إزالة التثبيت. -UninstallUnsupportedVer=ملف سجل الإزالة "%1" في تنسيق غير معروف من قبل هذا الإصدار من برنامج إلغاء التثبيت. لا يمكن إزالة التثبيت -UninstallUnknownEntry=إدخال غير معروف (%1) تمت مصادفته في سجل إلغاء التثبيت -ConfirmUninstall=هل أنت متأكد من أنك تريد إزالة %1 تماما, وجميع مكوناته? -UninstallOnlyOnWin64=يمكن إلغاء تثبيت هذا التثبيت على Windows 64-بت فقط. -OnlyAdminCanUninstall=يمكن إلغاء تثبيت هذا البرنامج فقط من قبل مستخدم له امتيازات إدارية. -UninstallStatusLabel=يرجى الإنتظار ريثما يتم إزالة تثبيت %1 من جهازك. -UninstalledAll=تم إزالة %1 تماما من جهازك بنجاح. -UninstalledMost=اكتمل إزالة %1.%n%nتعذر إزالة بعض العناصر. يمكن إزالتها يدوياً. -UninstalledAndNeedsRestart=لإكمال إلغاء تثبيت %1, يجب إعادة تشغيل الكمبيوتر.%n%nهل تريد إعادة تشغيل الآن؟ -UninstallDataCorrupted=الملف "%1" تالف. لا يمكن إزالة التثبيت - -; *** Uninstallation phase messages -ConfirmDeleteSharedFileTitle=إزالة ملف مشترك؟ -ConfirmDeleteSharedFile2=يشير النظام إلى أن الملف المشترك التالي لم يعد في الاستخدام من قبل أي برامج. هل ترغب في أن يقوم برنامج الإعداد بإزالة هذا الملف المشترك?%n%nإذا كانت أية برامج لا تزال تستخدم هذا الملف وتتم إزالته، قد لا تعمل هذه البرامج بشكل صحيح. إذا كنت غير متأكد، اختر لا. ترك الملف على النظام الخاص بك لن يسبب أي ضرر. -SharedFileNameLabel=اسم الملف: -SharedFileLocationLabel=الموقع : -WizardUninstalling=حالة إزالة التثبيت -StatusUninstalling=جاري إزالة تثبيت %1... - -; *** Shutdown block reasons -ShutdownBlockReasonInstallingApp=جاري تثبيت %1. -ShutdownBlockReasonUninstallingApp=جاري إزالة تثبيت %1. - -; The custom messages below aren't used by Setup itself, but if you make -; use of them in your scripts, you'll want to translate them. - -[CustomMessages] - -NameAndVersion=%1 الإصدار %2 -AdditionalIcons=اختصارات إضافية: -CreateDesktopIcon=إنشاء اختصار في سطح المكتب -CreateQuickLaunchIcon=إنشاء اختصار "التشغيل السريع" -ProgramOnTheWeb=%1 على الأنترنت -UninstallProgram=إزالة تثبيت %1 -LaunchProgram=تشغيل %1 -AssocFileExtension=ربط %1 مع صيغة ملف %2 -AssocingFileExtension=جاري ربط %1 مع صيغة ملف %2 -AutoStartProgramGroupDescription=بدأ التشغيل: -AutoStartProgram=تشغيل %1 تلقائيا -AddonHostProgramNotFound= تعذر العثور على %1 في الموقع الذي إخترته.%n%nهل تريد المتابعة على أية حال؟ diff --git a/bin/lib/innosetup/app/Languages/Korean.isl b/bin/lib/innosetup/app/Languages/Korean.isl deleted file mode 100644 index c24068a..0000000 --- a/bin/lib/innosetup/app/Languages/Korean.isl +++ /dev/null @@ -1,398 +0,0 @@ -; *** Inno Setup version 6.4.0+ Korean messages *** - -; ▒ 6.4.0+ Translator: VenusGirl (venusgirl@outlook.com) -; ▒ 6.2.0+ Translator: Logan.Hwang (logan.hwang@blueant.kr) -; ▒ 6.0.3+ Translator: SungDong Kim (acroedit@gmail.com) -; ▒ 5.5.3+ Translator: Domddol (domddol@gmail.com) -; ▒ Contributors: Hansoo KIM (iryna7@gmail.com), Woong-Jae An (a183393@hanmail.net) -; ▒ 이 번역은 한국어 맞춤법을 준수합니다. -; -; 이 파일의 사용자 제공 번역을 다운로드하려면 다음으로 이동하십시오: -; https://jrsoftware.org/files/istrans/ - -; 참고: 이 텍스트를 번역할 때는 InnoSetup 메시지에 -; 마침표가 자동으로 추가되므로 아직 없는 메시지의 끝에 -; 마침표(.)를 추가하지 마십시오 (마침표를 추가하면 -; 두 개의 마침표가 표시됩니다). - -[LangOptions] -; 다음 세 항목은 매우 중요합니다. 도움말 파일의 -; '[LangOptions] 섹션' 항목을 읽고 이해하십시오. -LanguageName=한국어 -LanguageID=$0412 -LanguageCodePage=949 -; 번역할 언어가 특수 글꼴 또는 크기를 필요로 하는 경우 -; 다음 항목 중 하나를 주석 해제하고 적절하게 변경하십시오. -;DialogFontName= -;DialogFontSize=8 -;WelcomeFontName=Verdana -;WelcomeFontSize=12 -;TitleFontName=Arial -;TitleFontSize=29 -;CopyrightFontName=Arial -;CopyrightFontSize=8 - -[Messages] - -; *** Application titles -SetupAppTitle=설치 -SetupWindowTitle=%1 설치 -UninstallAppTitle=제거 -UninstallAppFullTitle=%1 제거 - -; *** Misc. common -InformationTitle=정보 -ConfirmTitle=확인 -ErrorTitle=오류 - -; *** SetupLdr messages -SetupLdrStartupMessage=%1을(를) 설치합니다, 계속하시겠습니까? -LdrCannotCreateTemp=임시 파일을 만들 수 없습니다. 설치가 중단되었습니다. -LdrCannotExecTemp=임시 디렉터리에서 파일을 실행할 수 없습니다. 설치가 중단되었습니다. -HelpTextNote= - -; *** Startup error messages -LastErrorMessage=%1.%n%n오류 %2: %3 -SetupFileMissing=%1 파일이 설치 디렉터리에 없습니다. 문제를 해결하거나 프로그램의 새 사본을 구하십시오. -SetupFileCorrupt=설치 파일이 손상되었습니다. 프로그램의 새 사본을 구하십시오. -SetupFileCorruptOrWrongVer=설치 파일이 손상되었거나 이 버전의 설치 프로그램과 호환되지 않습니다. 문제를 해결하거나 프로그램의 새 복사본을 구하십시오. -InvalidParameter=명령줄에 잘못된 매개변수가 전달되었습니다:%n%n%1 -SetupAlreadyRunning=설치가 이미 실행 중입니다. -WindowsVersionNotSupported=이 프로그램은 컴퓨터에서 실행 중인 Windows 버전을 지원하지 않습니다. -WindowsServicePackRequired=이 프로그램을 사용하려면 %1 서비스 팩 %2 이상이 필요합니다. -NotOnThisPlatform=이 프로그램은 %1에서 실행되지 않습니다. -OnlyOnThisPlatform=이 프로그램은 %1에서 실행되어야 합니다. -OnlyOnTheseArchitectures=이 프로그램은 다음 프로세서 아키텍처용으로 설계된 Windows 버전에만 설치할 수 있습니다:%n%n%1 -WinVersionTooLowError=이 프로그램에는 %1 버전 %2 이상이 필요합니다. -WinVersionTooHighError=%1 버전 %2 이상에 이 프로그램을 설치할 수 없습니다. -AdminPrivilegesRequired=이 프로그램을 설치할 때 관리자로 로그인해야 합니다. -PowerUserPrivilegesRequired=이 프로그램을 설치할 때 관리자 또는 Power Users 그룹의 구성원으로 로그인해야 합니다. -SetupAppRunningError=설치에서 %1이(가) 현재 실행 중임을 감지했습니다.%n%n지금 모든 인스턴스를 닫은 다음 확인을 클릭하여 계속하거나 취소를 클릭하여 종료하십시오. -UninstallAppRunningError=제거에서 %1이(가) 현재 실행 중임을 감지했습니다.%n%n지금 모든 인스턴스를 닫은 다음 확인을 클릭하여 계속하거나 취소를 클릭하여 종료하십시오. - -; *** Startup questions -PrivilegesRequiredOverrideTitle=설치 모드 선택 -PrivilegesRequiredOverrideInstruction=설치 모드를 선택해 주십시오 -PrivilegesRequiredOverrideText1=%1은 모든 사용자 (관리자 권한 필요) 또는 사용자용으로 설치합니다. -PrivilegesRequiredOverrideText2=%1은 현재 사용자 또는 모든 사용자 (관리자 권한 필요)용으로 설치합니다. -PrivilegesRequiredOverrideAllUsers=모든 사용자용으로 설치(&A) -PrivilegesRequiredOverrideAllUsersRecommended=모든 사용자용으로 설치 (추천)(&A) -PrivilegesRequiredOverrideCurrentUser=현재 사용자용으로 설치(&M) -PrivilegesRequiredOverrideCurrentUserRecommended=현재 사용자용으로 설치 (추천)(&M) - -; *** Misc. errors -ErrorCreatingDir=설치 프로그램에서 "%1" 디렉터리를 만들지 못했습니다. -ErrorTooManyFilesInDir="%1" 디렉터리에 파일이 너무 많아서 파일을 만들 수 없습니다 - -; *** Setup common messages -ExitSetupTitle=설치 종료 -ExitSetupMessage=설치가 완료되지 않았습니다. 지금 종료하면 프로그램이 설치되지 않습니다.%n%n설치를 다시 실행하여 설치를 완료할 수 있습니다.%n%n설치를 종료하시겠습니까? -AboutSetupMenuItem=설치 정보(&A)... -AboutSetupTitle=설치 정보 -AboutSetupMessage=%1 버전 %2%n%3%n%n%1 홈 페이지:%n%4 -AboutSetupNote= -TranslatorNote= - -; *** Buttons -ButtonBack=< 뒤로(&B) -ButtonNext=다음(&N) > -ButtonInstall=설치(&I) -ButtonOK=확인 -ButtonCancel=취소 -ButtonYes=예(&Y) -ButtonYesToAll=모두 예(&A) -ButtonNo=아니오(&N) -ButtonNoToAll=모두 아니오(&O) -ButtonFinish=마침(&F) -ButtonBrowse=찾아보기(&B)... -ButtonWizardBrowse=찾아보기(&R)... -ButtonNewFolder=새 폴더 만들기(&M) - -; *** "Select Language" dialog messages -SelectLanguageTitle=설치 언어 선택 -SelectLanguageLabel=설치 중에 사용할 언어를 선택하십시오. - -; *** Common wizard text -ClickNext=다음을 클릭하여 계속하거나 취소를 클릭하여 설치를 종료합니다. -BeveledLabel= -BrowseDialogTitle=폴더 찾아보기 -BrowseDialogLabel=아래 목록에서 폴더를 선택한 후 확인을 클릭하십시오. -NewFolderName=새 폴더 - -; *** "Welcome" wizard page -WelcomeLabel1=[name] 설치 마법사에 오신 것을 환영합니다 -WelcomeLabel2=컴퓨터에 [name/ver]이(가) 설치됩니다.%n%n계속하기 전에 다른 모든 응용 프로그램을 닫는 것이 좋습니다. - -; *** "Password" wizard page -WizardPassword=암호 -PasswordLabel1=이 설치는 암호로 보호됩니다. -PasswordLabel3=암호를 입력한 후 다음을 클릭하여 계속하십시오. 암호는 대소문자를 구분합니다. -PasswordEditLabel=암호(&P): -IncorrectPassword=입력한 암호가 올바르지 않습니다. 다시 시도하십시오. - -; *** "License Agreement" wizard page -WizardLicense=사용권 계약 -LicenseLabel=계속하기 전에 다음 중요한 정보를 읽어보십시오. -LicenseLabel3=다음 사용권 계약을 읽어보십시오. 설치를 계속하기 전에 이 계약 조건에 동의해야 합니다. -LicenseAccepted=동의합니다(&A) -LicenseNotAccepted=동의하지 않습니다(&D) - -; *** "Information" wizard pages -WizardInfoBefore=정보 -InfoBeforeLabel=계속하기 전에 다음 중요한 정보를 읽어보십시오. -InfoBeforeClickLabel=설치를 계속할 준비가 되었으면 다음을 클릭합니다. -WizardInfoAfter=정보 -InfoAfterLabel=계속하기 전에 다음 중요한 정보를 읽어보십시오. -InfoAfterClickLabel=설치를 계속할 준비가 되었으면 다음을 클릭합니다. - -; *** "User Information" wizard page -WizardUserInfo=사용자 정보 -UserInfoDesc=사용자 정보를 입력하십시오. -UserInfoName=사용자 이름(&U): -UserInfoOrg=조직(&O): -UserInfoSerial=일련 번호:(&S): -UserInfoNameRequired=이름을 입력해야 합니다. - -; *** "Select Destination Location" wizard page -WizardSelectDir=대상 위치 선택 -SelectDirDesc=[name]을(를) 어디에 설치하시겠습니까? -SelectDirLabel3=다음 폴더에 [name]을(를) 설치합니다. -SelectDirBrowseLabel=계속하려면 다음을 클릭합니다. 다른 폴더를 선택하려면 찾아보기를 클릭합니다. -DiskSpaceGBLabel=이 프로그램은 최소 [gb] GB의 디스크 여유 공간이 필요합니다. -DiskSpaceMBLabel=이 프로그램은 최소 [mb] MB의 디스크 여유 공간이 필요합니다. -CannotInstallToNetworkDrive=네트워크 드라이브에 설치할 수 없습니다. -CannotInstallToUNCPath=UNC 경로에 설치할 수 없습니다. -InvalidPath=드라이브 문자를 포함한 전체 경로를 입력해야 합니다. 예:%n%nC:\APP%n%n 또는 UNC 경로 형식:%n%n\\server\share -InvalidDrive=선택한 드라이브 또는 UNC 공유가 존재하지 않거나 액세스할 수 없습니다, 다른 경로를 선택하십시오. -DiskSpaceWarningTitle=디스크 공간이 부족합니다 -DiskSpaceWarning=설치 시 최소 %1 KB 디스크 공간이 필요하지만, 선택한 드라이브의 여유 공간은 %2 KB 밖에 없습니다.%n%n그래도 계속하시겠습니까? -DirNameTooLong=폴더 이름 또는 경로가 너무 깁니다. -InvalidDirName=폴더 이름이 유효하지 않습니다. -BadDirName32=폴더 이름은 다음 문자를 포함할 수 없습니다:%n%n%1 -DirExistsTitle=폴더가 존재합니다 -DirExists=폴더 %n%n%1%n%n이(가) 이미 존재합니다, 그래도 해당 폴더에 설치하시겠습니까? -DirDoesntExistTitle=폴더가 존재하지 않습니다 -DirDoesntExist=폴더 %n%n%1%n%n이(가) 존재하지 않습니다, 폴더를 만드시겠습니까? - -; *** "Select Components" wizard page -WizardSelectComponents=구성 요소 선택 -SelectComponentsDesc=어떤 구성 요소를 설치하시겠습니까? -SelectComponentsLabel2=설치하려는 구성 요소를 선택합니다; 설치하지 않으려는 구성 요소의 선택을 취소합니다. 계속할 준비가 되면 다음을 클릭합니다. -FullInstallation=모두 설치 -; 가능하면 'Compact'를 'Minimal'로 번역하지 마십시오 (귀하의 언어로 '최소'를 의미합니다). -CompactInstallation=최소 설치 -CustomInstallation=사용자 지정 설치 -NoUninstallWarningTitle=구성 요소가 존재합니다 -NoUninstallWarning=다음 구성 요소가 컴퓨터에 이미 설치되어 있습니다: %n%n%1%n%n이러한 구성 요소를 선택해도 제거되지 않습니다.%n%n계속하시겠습니까? -ComponentSize1=%1 KB -ComponentSize2=%1 MB -ComponentsDiskSpaceGBLabel=현재 선택은 최소 [gb] GB의 디스크 여유 공간이 필요합니다. -ComponentsDiskSpaceMBLabel=현재 선택은 최소 [mb] MB의 디스크 여유 공간이 필요합니다. - -; *** "Select Additional Tasks" wizard page -WizardSelectTasks=추가 작업 선택 -SelectTasksDesc=어떤 추가 작업을 수행하시겠습니까? -SelectTasksLabel2=[name]을(를) 설치하는 동안 수행할 추가 작업을 선택하고 다음을 클릭합니다. - -; *** "Select Start Menu Folder" wizard page -WizardSelectProgramGroup=시작 메뉴 폴더 선택 -SelectStartMenuFolderDesc=프로그램의 바로가기를 어디에 설치하시겠습니까? -SelectStartMenuFolderLabel3=설치는 다음 시작 메뉴 폴더에 프로그램 바로가기를 만듭니다. -SelectStartMenuFolderBrowseLabel=계속하려면 다음을 클릭합니다. 다른 폴더를 선택하려면 찾아보기를 클릭합니다. -MustEnterGroupName=폴더 이름을 입력하십시오. -GroupNameTooLong=폴더 이름 또는 경로가 너무 깁니다. -InvalidGroupName=폴더 이름이 유효하지 않습니다. -BadGroupName=폴더 이름은 다음 문자를 포함할 수 없습니다:%n%n%1 -NoProgramGroupCheck2=시작 메뉴 폴더를 만들지 않음(&D) - -; *** "Ready to Install" wizard page -WizardReady=설치 준비 완료 -ReadyLabel1=[name]을(를) 컴퓨터에 설치할 준비가 되었습니다. -ReadyLabel2a=설치를 클릭하여 설치를 계속하거나 설정을 검토하거나 변경하려면 뒤로를 클릭합니다. -ReadyLabel2b=설치를 클릭하여 설치를 계속합니다. -ReadyMemoUserInfo=사용자 정보: -ReadyMemoDir=대상 위치: -ReadyMemoType=설치 유형: -ReadyMemoComponents=선택한 구성 요소: -ReadyMemoGroup=시작 메뉴 폴더: -ReadyMemoTasks=추가 작업: - -; *** TDownloadWizardPage wizard page and DownloadTemporaryFile -DownloadingLabel=추가 파일 다운로드 중... -ButtonStopDownload=다운로드 중지(&S) -StopDownload=다운로드를 중지하시겠습니까? -ErrorDownloadAborted=다운로드가 중지되었습니다 -ErrorDownloadFailed=다운로드에 실패했습니다: %1 %2 -ErrorDownloadSizeFailed=크기를 가져오지 못했습니다: %1 %2 -ErrorFileHash1=파일 해시에 실패했습니다: %1 -ErrorFileHash2=잘못된 파일 해시: %1 예상, %2 찾음 -ErrorProgress=잘못된 진행 상황: %1 / %2 -ErrorFileSize=잘못된 파일 크기: %1 예상, %2 찾음 - -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=추가 파일을 추출하는 중... -ButtonStopExtraction=추출 중지(&S) -StopExtraction=추출을 중지하시겠습니까? -ErrorExtractionAborted=추출 중단됨 -ErrorExtractionFailed=추출 실패: %1 - -; *** "Preparing to Install" wizard page -WizardPreparing=설치 준비 중 -PreparingDesc=컴퓨터에 [name] 설치를 준비하는 중입니다. -PreviousInstallNotCompleted=이전 프로그램의 설치/제거가 완료되지 않았습니다. 설치를 완료하려면 컴퓨터를 다시 시작해야 합니다.%n%n컴퓨터를 재시작한 후 설치를 다시 실행하여 [name] 설치를 완료하십시오. -CannotContinue=설치를 계속할 수 없습니다. 종료하려면 취소를 클릭하십시오. -ApplicationsFound=다음 응용 프로그램에서 설치 프로그램에서 업데이트해야 하는 파일을 사용하고 있습니다. 이러한 응용 프로그램을 자동으로 닫도록 허용하는 것이 좋습니다. -ApplicationsFound2=다음 응용 프로그램에서 설치 프로그램에서 업데이트해야 하는 파일을 사용하고 있습니다. 이러한 응용 프로그램을 자동으로 닫도록 허용하는 것이 좋습니다. 설치가 완료되면 응용 프로그램을 다시 시작하려고 시도합니다. -CloseApplications=응용 프로그램 자동 닫기(&A) -DontCloseApplications=응용 프로그램을 닫지 않음(&D) -ErrorCloseApplications=모든 응용 프로그램을 자동으로 닫지 못했습니다. 계속하기 전에 설치 프로그램에서 업데이트해야 하는 파일을 사용하여 모든 응용 프로그램을 닫는 것이 좋습니다. -PrepareToInstallNeedsRestart=컴퓨터를 다시 시작해야 합니다. 컴퓨터를 다시 시작한 후 설치를 다시 실행하여 [name] 설치를 완료하십시오.%n%n지금 다시 시작하시겠습니까? - -; *** "Installing" wizard page -WizardInstalling=설치 중 -InstallingLabel=컴퓨터에 [name]을(를) 설치하는 동안 잠시 기다려 주십시오. - -; *** "Setup Completed" wizard page -FinishedHeadingLabel=[name] 설치 마법사 완료 -FinishedLabelNoIcons=컴퓨터에 [name] 설치를 완료했습니다. -FinishedLabel=컴퓨터에 [name] 설치를 완료했습니다. 설치된 바로가기를 선택하여 응용 프로그램을 시작할 수 있습니다. -ClickFinish=설치를 종료하려면 마침을 클릭하십시오. -FinishedRestartLabel=[name] 설치를 완료하려면 컴퓨터를 다시 시작해야 합니다. 지금 다시 시작하시겠습니까? -FinishedRestartMessage=[name] 설치를 완료하려면 컴퓨터를 다시 시작해야 합니다.%n%n지금 다시 시작하시겠습니까? -ShowReadmeCheck=예, README 파일을 보고 싶습니다. -YesRadio=예, 지금 컴퓨터를 다시 시작합니다(&Y) -NoRadio=아니오, 나중에 컴퓨터를 다시 시작하겠습니다(&N) -; 예를 들어 'Run MyProg.exe'로 사용됩니다' -RunEntryExec=%1 실행 -; 예를 들어 'Readme.txt 보기'로 사용됩니다' -RunEntryShellExec=%1 보기 - -; *** "Setup Needs the Next Disk" stuff -ChangeDiskTitle=설치에 다음 디스크가 필요합니다 -SelectDiskLabel2=디스크 %1을(를) 삽입하고 확인을 클릭하십시오.%n%n이 디스크의 파일을 아래에 표시된 폴더 이외의 폴더에서 찾을 수 있으면 올바른 경로를 입력하거나 찾아보기를 클릭하십시오. -PathLabel=경로(&P): -FileNotInDir2="%1" 파일을 "%2"에서 찾을 수 없습니다. 올바른 디스크를 넣거나 다른 폴더를 선택하십시오. -SelectDirectoryLabel=다음 디스크의 위치를 지정하십시오. - -; *** Installation phase messages -SetupAborted=설치가 완료되지 않았습니다.%n%n문제를 해결한 후 설치를 다시 실행하십시오. -AbortRetryIgnoreSelectAction=작업 선택 -AbortRetryIgnoreRetry=재시도(&T) -AbortRetryIgnoreIgnore=오류를 무시하고 진행(&I) -AbortRetryIgnoreCancel=설치 취소 - -; *** Installation status messages -StatusClosingApplications=응용 프로그램을 닫는 중... -StatusCreateDirs=디렉터리를 만드는 중... -StatusExtractFiles=파일을 추출하는 중... -StatusCreateIcons=바로가기를 만드는 중... -StatusCreateIniEntries=INI 항목을 만드는 중... -StatusCreateRegistryEntries=레지스트리 항목을 만드는 중... -StatusRegisterFiles=파일을 등록하는 중... -StatusSavingUninstall=제거 정보를 저장하는 중... -StatusRunProgram=설치를 완료하는 중... -StatusRestartingApplications=응용 프로그램을 다시 시작하는 중... -StatusRollback=변경 내용을 롤백하는 중... - -; *** Misc. errors -ErrorInternal2=내부 오류: %1 -ErrorFunctionFailedNoCode=%1 실패 -ErrorFunctionFailed=%1 실패; 코드 %2 -ErrorFunctionFailedWithMessage=%1 실패, 코드: %2.%n%3 -ErrorExecutingProgram=파일 실행 오류:%n%1 - -; *** Registry errors -ErrorRegOpenKey=레지스트리 키 열기 오류:%n%1\%2 -ErrorRegCreateKey=레지스트리 키 생성 오류:%n%1\%2 -ErrorRegWriteKey=레지스트리 키 쓰기 오류:%n%1\%2 - -; *** INI errors -ErrorIniEntry="%1" 파일에 INI 항목 만들기 오류입니다. - -; *** File copying errors -FileAbortRetryIgnoreSkipNotRecommended=이 파일 건너뛰기 (추천하지 않음)(&S) -FileAbortRetryIgnoreIgnoreNotRecommended=오류를 무시하고 계속 (추천하지 않음)(&I) -SourceIsCorrupted=원본 파일이 손상되었습니다 -SourceDoesntExist=원본 파일 "%1"이(가) 없습니다 -ExistingFileReadOnly2=읽기 전용으로 표시되어 있으므로 기존 파일을 교체할 수 없습니다. -ExistingFileReadOnlyRetry=읽기 전용 속성을 제거하고 다시 시도(&R) -ExistingFileReadOnlyKeepExisting=기존 파일 유지(&K) -ErrorReadingExistingDest=기존 파일을 읽는 동안 오류 발생: -FileExistsSelectAction=작업 선택 -FileExists2=파일이 이미 존재합니다. -FileExistsOverwriteExisting=기존 파일 덮어쓰기(&O) -FileExistsKeepExisting=기존 파일 유지(&K) -FileExistsOverwriteOrKeepAll=다음 충돌에 대해 이 작업 수행(&D) -ExistingFileNewerSelectAction=작업 선택 -ExistingFileNewer2=설치 프로그램에서 설치하려는 파일보다 기존 파일이 더 최신입니다. -ExistingFileNewerOverwriteExisting=기존 파일 덮어쓰기(&O) -ExistingFileNewerKeepExisting=기존 파일 유지 (추천)(&K) -ExistingFileNewerOverwriteOrKeepAll=다음 충돌에 대해 이 작업 수행(&D) -ErrorChangingAttr=기존 파일의 속성을 변경하는 동안 오류 발생: -ErrorCreatingTemp=대상 디렉터리에 파일을 만드는 동안 오류 발생: -ErrorReadingSource=원본 파일을 읽는 동안 오류 발생: -ErrorCopying=파일을 복사하는 동안 오류 발생: -ErrorReplacingExistingFile=기존 파일을 교체하는 동안 오류 발생: -ErrorRestartReplace=RestartReplace 실패: -ErrorRenamingTemp=대상 디렉터리 내의 파일 이름을 바꾸는 동안 오류 발생: -ErrorRegisterServer=DLL/OCX를 등록할 수 없습니다: %1 -ErrorRegSvr32Failed=종료 코드 %1로 인해 RegSvr32가 실패했습니다 -ErrorRegisterTypeLib=유형 라이브러리를 등록할 수 없습니다: %1 - -; *** Uninstall display name markings -; 예를 들어 '내 프로그램'으로 사용됩니다 (32비트)' -UninstallDisplayNameMark=%1 (%2) -; 예를 들어 '내 프로그램'으로 사용됩니다 (32비트, 모든 사용자)' -UninstallDisplayNameMarks=%1 (%2, %3) -UninstallDisplayNameMark32Bit=32비트 -UninstallDisplayNameMark64Bit=64비트 -UninstallDisplayNameMarkAllUsers=모든 사용자 -UninstallDisplayNameMarkCurrentUser=현재 사용자 - -; *** Post-installation errors -ErrorOpeningReadme=README 파일을 여는 동안 오류가 발생했습니다. -ErrorRestartingComputer=컴퓨터를 다시 시작하지 못했습니다. 이 작업을 수동으로 수행하십시오. - -; *** Uninstaller messages -UninstallNotFound="%1" 파일이 없습니다. 제거할 수 없습니다. -UninstallOpenError="%1" 파일을 열 수 없습니다. 제거할 수 없습니다 -UninstallUnsupportedVer="%1" 제거 로그 파일이 현재 버전의 제거 프로그램에서 인식할 수 없는 형식입니다. 제거할 수 없습니다 -UninstallUnknownEntry=제거 로그에 알 수 없는 항목 (%1)이 있습니다 -ConfirmUninstall=%1 및 해당 구성 요소를 모두 제거하시겠습니까? -UninstallOnlyOnWin64=이 설치는 64비트 Windows에서만 제거할 수 있습니다. -OnlyAdminCanUninstall=이 설치는 관리자 권한이 있는 사용자만 제거할 수 있습니다. -UninstallStatusLabel=%1이(가) 컴퓨터에서 제거되는 동안 기다려 주십시오. -UninstalledAll=%1이(가) 컴퓨터에서 성공적으로 제거되었습니다. -UninstalledMost=%1 제거가 완료되었습니다.%n%n일부 요소를 제거할 수 없습니다. 수동으로 제거할 수 있습니다. -UninstalledAndNeedsRestart=%1 제거를 완료하려면 컴퓨터를 다시 시작해야 합니다.%n%n지금 다시 시작하시겠습니까? -UninstallDataCorrupted="%1" 파일이 손상되었습니다. 제거할 수 없습니다. - -; *** Uninstallation phase messages -ConfirmDeleteSharedFileTitle=공유 파일을 제거하시겠습니까? -ConfirmDeleteSharedFile2=시스템에 다음 공유 파일이 더 이상 어떤 프로그램에서도 사용되지 않는 것으로 표시됩니다. 제거에서 이 공유 파일을 제거하시겠습니까?%n%n이 파일을 계속 사용하고 있고 파일이 제거된 프로그램이 있으면 해당 프로그램이 제대로 작동하지 않을 수 있습니다. 확실하지 않은 경우 아니요를 선택합니다. 파일을 시스템에 남겨두어도 아무런 해가 되지 않습니다. -SharedFileNameLabel=파일 이름: -SharedFileLocationLabel=위치: -WizardUninstalling=제거 상태 -StatusUninstalling=%1을(를) 제거하는 중... - -; *** Shutdown block reasons -ShutdownBlockReasonInstallingApp=%1을(를) 설치하는 중입니다. -ShutdownBlockReasonUninstallingApp=%1을(를) 제거하는 중입니다. - -; 아래 사용자 지정 메시지는 설치 프로그램 자체에서 사용하지 않지만 -; 스크립트에서 사용할 경우 해당 메시지를 번역할 수 있습니다. - -[CustomMessages] - -NameAndVersion=%1 버전 %2 -AdditionalIcons=바로가기 추가: -CreateDesktopIcon=바탕 화면에 바로가기 만들기(&D) -CreateQuickLaunchIcon=빠른 실행 아이콘 만들기(&Q) -ProgramOnTheWeb=%1 웹페이지 -UninstallProgram=%1 제거 -LaunchProgram=%1 실행 -AssocFileExtension=%1을(를) %2 파일 확장자에 연결 -AssocingFileExtension=%1을(를) %2 파일 확장자와 연결하는 중... -AutoStartProgramGroupDescription=시작: -AutoStartProgram=%1 자동 시작 -AddonHostProgramNotFound=%1을(를) 선택한 폴더에서 찾을 수 없습니다.%n%n계속하시겠습니까? diff --git a/bin/lib/innosetup/app/Languages/Polish.isl b/bin/lib/innosetup/app/Languages/Polish.isl deleted file mode 100644 index c7c4051..0000000 --- a/bin/lib/innosetup/app/Languages/Polish.isl +++ /dev/null @@ -1,385 +0,0 @@ -; *** Inno Setup version 6.4.0+ Polish messages *** -; Original translations up to 5.5.7: -; Krzysztof Cynarski -; Proofreading, corrections and 5.5.7-6.4.0+ updates: -; Łukasz Abramczuk -; To download user-contributed translations of this file, go to: -; https://jrsoftware.org/files/istrans/ -; -; Note: When translating this text, do not add periods (.) to the end of -; messages that didn't have them already, because on those messages Inno -; Setup adds the periods automatically (appending a period would result in -; two periods being displayed). -; last update: 2020/07/26 - -[LangOptions] -; The following three entries are very important. Be sure to read and -; understand the '[LangOptions] section' topic in the help file. -LanguageName=Polski -LanguageID=$0415 -LanguageCodePage=1250 - -[Messages] - -; *** Application titles -SetupAppTitle=Instalator -SetupWindowTitle=Instalacja - %1 -UninstallAppTitle=Dezinstalator -UninstallAppFullTitle=Dezinstalacja - %1 - -; *** Misc. common -InformationTitle=Informacja -ConfirmTitle=Potwierdź -ErrorTitle=Błąd - -; *** SetupLdr messages -SetupLdrStartupMessage=Ten program zainstaluje aplikację %1. Czy chcesz kontynuować? -LdrCannotCreateTemp=Nie można utworzyć pliku tymczasowego. Instalacja przerwana -LdrCannotExecTemp=Nie można uruchomić pliku z folderu tymczasowego. Instalacja przerwana -HelpTextNote= - -; *** Startup error messages -LastErrorMessage=%1.%n%nBłąd %2: %3 -SetupFileMissing=W folderze instalacyjnym brakuje pliku %1.%nProszę o przywrócenie brakujących plików lub uzyskanie nowej kopii programu instalacyjnego. -SetupFileCorrupt=Pliki instalacyjne są uszkodzone. Zaleca się uzyskanie nowej kopii programu instalacyjnego. -SetupFileCorruptOrWrongVer=Pliki instalacyjne są uszkodzone lub niezgodne z tą wersją instalatora. Proszę rozwiązać problem lub uzyskać nową kopię programu instalacyjnego. -InvalidParameter=W linii komend przekazano nieprawidłowy parametr:%n%n%1 -SetupAlreadyRunning=Instalator jest już uruchomiony. -WindowsVersionNotSupported=Ta aplikacja nie wspiera aktualnie uruchomionej wersji Windows. -WindowsServicePackRequired=Ta aplikacja wymaga systemu %1 z dodatkiem Service Pack %2 lub nowszym. -NotOnThisPlatform=Tej aplikacji nie można uruchomić w systemie %1. -OnlyOnThisPlatform=Ta aplikacja wymaga systemu %1. -OnlyOnTheseArchitectures=Ta aplikacja może być uruchomiona tylko w systemie Windows zaprojektowanym dla procesorów o architekturze:%n%n%1 -WinVersionTooLowError=Ta aplikacja wymaga systemu %1 w wersji %2 lub nowszej. -WinVersionTooHighError=Ta aplikacja nie może być zainstalowana w systemie %1 w wersji %2 lub nowszej. -AdminPrivilegesRequired=Aby przeprowadzić instalację tej aplikacji, konto użytkownika systemu musi posiadać uprawnienia administratora. -PowerUserPrivilegesRequired=Aby przeprowadzić instalację tej aplikacji, konto użytkownika systemu musi posiadać uprawnienia administratora lub użytkownika zaawansowanego. -SetupAppRunningError=Instalator wykrył, iż aplikacja %1 jest aktualnie uruchomiona.%n%nPrzed wciśnięciem przycisku OK zamknij wszystkie procesy aplikacji. Kliknij przycisk Anuluj, aby przerwać instalację. -UninstallAppRunningError=Dezinstalator wykrył, iż aplikacja %1 jest aktualnie uruchomiona.%n%nPrzed wciśnięciem przycisku OK zamknij wszystkie procesy aplikacji. Kliknij przycisk Anuluj, aby przerwać dezinstalację. - -; *** Startup questions --- -PrivilegesRequiredOverrideTitle=Wybierz typ instalacji aplikacji -PrivilegesRequiredOverrideInstruction=Wybierz typ instalacji -PrivilegesRequiredOverrideText1=Aplikacja %1 może zostać zainstalowana dla wszystkich użytkowników (wymagane są uprawnienia administratora) lub tylko dla bieżącego użytkownika. -PrivilegesRequiredOverrideText2=Aplikacja %1 może zostać zainstalowana dla bieżącego użytkownika lub wszystkich użytkowników (wymagane są uprawnienia administratora). -PrivilegesRequiredOverrideAllUsers=Zainstaluj dla &wszystkich użytkowników -PrivilegesRequiredOverrideAllUsersRecommended=Zainstaluj dla &wszystkich użytkowników (zalecane) -PrivilegesRequiredOverrideCurrentUser=Zainstaluj dla &bieżącego użytkownika -PrivilegesRequiredOverrideCurrentUserRecommended=Zainstaluj dla &bieżącego użytkownika (zalecane) - -; *** Misc. errors -ErrorCreatingDir=Instalator nie mógł utworzyć katalogu "%1" -ErrorTooManyFilesInDir=Nie można utworzyć pliku w katalogu "%1", ponieważ zawiera on zbyt wiele plików - -; *** Setup common messages -ExitSetupTitle=Zakończ instalację -ExitSetupMessage=Instalacja nie została zakończona. Jeżeli przerwiesz ją teraz, aplikacja nie zostanie zainstalowana. Można ponowić instalację później poprzez uruchamianie instalatora.%n%nCzy chcesz przerwać instalację? -AboutSetupMenuItem=&O instalatorze... -AboutSetupTitle=O instalatorze -AboutSetupMessage=%1 wersja %2%n%3%n%n Strona domowa %1:%n%4 -AboutSetupNote= -TranslatorNote=Wersja polska: Krzysztof Cynarski%n%nOd wersji 5.5.7: Łukasz Abramczuk%n - -; *** Buttons -ButtonBack=< &Wstecz -ButtonNext=&Dalej > -ButtonInstall=&Instaluj -ButtonOK=OK -ButtonCancel=Anuluj -ButtonYes=&Tak -ButtonYesToAll=Tak na &wszystkie -ButtonNo=&Nie -ButtonNoToAll=N&ie na wszystkie -ButtonFinish=&Zakończ -ButtonBrowse=&Przeglądaj... -ButtonWizardBrowse=P&rzeglądaj... -ButtonNewFolder=&Utwórz nowy folder - -; *** "Select Language" dialog messages -SelectLanguageTitle=Język instalacji -SelectLanguageLabel=Wybierz język używany podczas instalacji: - -; *** Common wizard text -ClickNext=Kliknij przycisk Dalej, aby kontynuować, lub Anuluj, aby zakończyć instalację. -BeveledLabel= -BrowseDialogTitle=Wskaż folder -BrowseDialogLabel=Wybierz folder z poniższej listy, a następnie kliknij przycisk OK. -NewFolderName=Nowy folder - -; *** "Welcome" wizard page -WelcomeLabel1=Witamy w instalatorze aplikacji [name] -WelcomeLabel2=Aplikacja [name/ver] zostanie teraz zainstalowana na komputerze.%n%nZalecane jest zamknięcie wszystkich innych uruchomionych programów przed rozpoczęciem procesu instalacji. - -; *** "Password" wizard page -WizardPassword=Hasło -PasswordLabel1=Ta instalacja jest zabezpieczona hasłem. -PasswordLabel3=Podaj hasło, a następnie kliknij przycisk Dalej, aby kontynuować. W hasłach rozróżniane są wielkie i małe litery. -PasswordEditLabel=&Hasło: -IncorrectPassword=Wprowadzone hasło jest nieprawidłowe. Spróbuj ponownie. - -; *** "License Agreement" wizard page -WizardLicense=Umowa Licencyjna -LicenseLabel=Przed kontynuacją należy zapoznać się z poniższą ważną informacją. -LicenseLabel3=Proszę przeczytać tekst Umowy Licencyjnej. Przed kontynuacją instalacji należy zaakceptować warunki umowy. -LicenseAccepted=&Akceptuję warunki umowy -LicenseNotAccepted=&Nie akceptuję warunków umowy - -; *** "Information" wizard pages -WizardInfoBefore=Informacja -InfoBeforeLabel=Przed kontynuacją należy zapoznać się z poniższą informacją. -InfoBeforeClickLabel=Kiedy będziesz gotowy do instalacji, kliknij przycisk Dalej. -WizardInfoAfter=Informacja -InfoAfterLabel=Przed kontynuacją należy zapoznać się z poniższą informacją. -InfoAfterClickLabel=Gdy będziesz gotowy do zakończenia instalacji, kliknij przycisk Dalej. - -; *** "User Information" wizard page -WizardUserInfo=Dane użytkownika -UserInfoDesc=Proszę podać swoje dane. -UserInfoName=Nazwa &użytkownika: -UserInfoOrg=&Organizacja: -UserInfoSerial=Numer &seryjny: -UserInfoNameRequired=Nazwa użytkownika jest wymagana. - -; *** "Select Destination Location" wizard page -WizardSelectDir=Lokalizacja docelowa -SelectDirDesc=Gdzie ma zostać zainstalowana aplikacja [name]? -SelectDirLabel3=Instalator zainstaluje aplikację [name] do wskazanego poniżej folderu. -SelectDirBrowseLabel=Kliknij przycisk Dalej, aby kontynuować. Jeśli chcesz wskazać inny folder, kliknij przycisk Przeglądaj. -DiskSpaceGBLabel=Instalacja wymaga przynajmniej [gb] GB wolnego miejsca na dysku. -DiskSpaceMBLabel=Instalacja wymaga przynajmniej [mb] MB wolnego miejsca na dysku. -CannotInstallToNetworkDrive=Instalator nie może zainstalować aplikacji na dysku sieciowym. -CannotInstallToUNCPath=Instalator nie może zainstalować aplikacji w ścieżce UNC. -InvalidPath=Należy wprowadzić pełną ścieżkę wraz z literą dysku, np.:%n%nC:\PROGRAM%n%nlub ścieżkę sieciową (UNC) w formacie:%n%n\\serwer\udział -InvalidDrive=Wybrany dysk lub udostępniony folder sieciowy nie istnieje. Proszę wybrać inny. -DiskSpaceWarningTitle=Niewystarczająca ilość wolnego miejsca na dysku -DiskSpaceWarning=Instalator wymaga co najmniej %1 KB wolnego miejsca na dysku. Wybrany dysk posiada tylko %2 KB dostępnego miejsca.%n%nCzy mimo to chcesz kontynuować? -DirNameTooLong=Nazwa folderu lub ścieżki jest za długa. -InvalidDirName=Niepoprawna nazwa folderu. -BadDirName32=Nazwa folderu nie może zawierać żadnego z następujących znaków:%n%n%1 -DirExistsTitle=Folder już istnieje -DirExists=Poniższy folder już istnieje:%n%n%1%n%nCzy mimo to chcesz zainstalować aplikację w tym folderze? -DirDoesntExistTitle=Folder nie istnieje -DirDoesntExist=Poniższy folder nie istnieje:%n%n%1%n%nCzy chcesz, aby został utworzony? - -; *** "Select Components" wizard page -WizardSelectComponents=Komponenty instalacji -SelectComponentsDesc=Które komponenty mają zostać zainstalowane? -SelectComponentsLabel2=Zaznacz komponenty, które chcesz zainstalować i odznacz te, których nie chcesz zainstalować. Kliknij przycisk Dalej, aby kontynuować. -FullInstallation=Instalacja pełna -; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) -CompactInstallation=Instalacja podstawowa -CustomInstallation=Instalacja użytkownika -NoUninstallWarningTitle=Zainstalowane komponenty -NoUninstallWarning=Instalator wykrył, że na komputerze są już zainstalowane następujące komponenty:%n%n%1%n%nOdznaczenie któregokolwiek z nich nie spowoduje ich dezinstalacji.%n%nCzy pomimo tego chcesz kontynuować? -ComponentSize1=%1 KB -ComponentSize2=%1 MB -ComponentsDiskSpaceGBLabel=Wybrane komponenty wymagają co najmniej [gb] GB na dysku. -ComponentsDiskSpaceMBLabel=Wybrane komponenty wymagają co najmniej [mb] MB na dysku. - -; *** "Select Additional Tasks" wizard page -WizardSelectTasks=Zadania dodatkowe -SelectTasksDesc=Które zadania dodatkowe mają zostać wykonane? -SelectTasksLabel2=Zaznacz dodatkowe zadania, które instalator ma wykonać podczas instalacji aplikacji [name], a następnie kliknij przycisk Dalej, aby kontynuować. - -; *** "Select Start Menu Folder" wizard page -WizardSelectProgramGroup=Folder Menu Start -SelectStartMenuFolderDesc=Gdzie mają zostać umieszczone skróty do aplikacji? -SelectStartMenuFolderLabel3=Instalator utworzy skróty do aplikacji we wskazanym poniżej folderze Menu Start. -SelectStartMenuFolderBrowseLabel=Kliknij przycisk Dalej, aby kontynuować. Jeśli chcesz wskazać inny folder, kliknij przycisk Przeglądaj. -MustEnterGroupName=Musisz wprowadzić nazwę folderu. -GroupNameTooLong=Nazwa folderu lub ścieżki jest za długa. -InvalidGroupName=Niepoprawna nazwa folderu. -BadGroupName=Nazwa folderu nie może zawierać żadnego z następujących znaków:%n%n%1 -NoProgramGroupCheck2=&Nie twórz folderu w Menu Start - -; *** "Ready to Install" wizard page -WizardReady=Gotowy do rozpoczęcia instalacji -ReadyLabel1=Instalator jest już gotowy do rozpoczęcia instalacji aplikacji [name] na komputerze. -ReadyLabel2a=Kliknij przycisk Instaluj, aby rozpocząć instalację lub Wstecz, jeśli chcesz przejrzeć lub zmienić ustawienia. -ReadyLabel2b=Kliknij przycisk Instaluj, aby kontynuować instalację. -ReadyMemoUserInfo=Dane użytkownika: -ReadyMemoDir=Lokalizacja docelowa: -ReadyMemoType=Rodzaj instalacji: -ReadyMemoComponents=Wybrane komponenty: -ReadyMemoGroup=Folder w Menu Start: -ReadyMemoTasks=Dodatkowe zadania: - -; *** TDownloadWizardPage wizard page and DownloadTemporaryFile -DownloadingLabel=Pobieranie dodatkowych plików... -ButtonStopDownload=&Zatrzymaj pobieranie -StopDownload=Czy na pewno chcesz zatrzymać pobieranie? -ErrorDownloadAborted=Pobieranie przerwane -ErrorDownloadFailed=Błąd pobierania: %1 %2 -ErrorDownloadSizeFailed=Pobieranie informacji o rozmiarze nie powiodło się: %1 %2 -ErrorFileHash1=Błąd sumy kontrolnej pliku: %1 -ErrorFileHash2=Nieprawidłowa suma kontrolna pliku: oczekiwano %1, otrzymano %2 -ErrorProgress=Nieprawidłowy postęp: %1 z %2 -ErrorFileSize=Nieprawidłowy rozmiar pliku: oczekiwano %1, otrzymano %2 - -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Wypakowywanie dodatkowych plików... -ButtonStopExtraction=&Zatrzymaj wypakowywanie -StopExtraction=Azy na pewno chcesz zatrzymać wypakowywanie? -ErrorExtractionAborted=Wypakowywanie przerwane -ErrorExtractionFailed=Błąd wypakowywania: %1 - -; *** "Preparing to Install" wizard page -WizardPreparing=Przygotowanie do instalacji -PreparingDesc=Instalator przygotowuje instalację aplikacji [name] na komputerze. -PreviousInstallNotCompleted=Instalacja/dezinstalacja poprzedniej wersji aplikacji nie została zakończona. Aby zakończyć instalację, należy ponownie uruchomić komputer. %n%nNastępnie ponownie uruchom instalator, aby zakończyć instalację aplikacji [name]. -CannotContinue=Instalator nie może kontynuować. Kliknij przycisk Anuluj, aby przerwać instalację. -ApplicationsFound=Poniższe aplikacje używają plików, które muszą zostać uaktualnione przez instalator. Zaleca się zezwolić na automatyczne zamknięcie tych aplikacji przez program instalacyjny. -ApplicationsFound2=Poniższe aplikacje używają plików, które muszą zostać uaktualnione przez instalator. Zaleca się zezwolić na automatyczne zamknięcie tych aplikacji przez program instalacyjny. Po zakończonej instalacji instalator podejmie próbę ich ponownego uruchomienia. -CloseApplications=&Automatycznie zamknij aplikacje -DontCloseApplications=&Nie zamykaj aplikacji -ErrorCloseApplications=Instalator nie był w stanie automatycznie zamknąć wymaganych aplikacji. Zalecane jest zamknięcie wszystkich aplikacji, które aktualnie używają uaktualnianych przez program instalacyjny plików. -PrepareToInstallNeedsRestart=Instalator wymaga ponownego uruchomienia komputera. Po restarcie komputera uruchom instalator ponownie, by dokończyć proces instalacji aplikacji [name].%n%nCzy chcesz teraz uruchomić komputer ponownie? - -; *** "Installing" wizard page -WizardInstalling=Instalacja -InstallingLabel=Poczekaj, aż instalator zainstaluje aplikację [name] na komputerze. - -; *** "Setup Completed" wizard page -FinishedHeadingLabel=Zakończono instalację aplikacji [name] -FinishedLabelNoIcons=Instalator zakończył instalację aplikacji [name] na komputerze. -FinishedLabel=Instalator zakończył instalację aplikacji [name] na komputerze. Aplikacja może być uruchomiona poprzez użycie zainstalowanych skrótów. -ClickFinish=Kliknij przycisk Zakończ, aby zakończyć instalację. -FinishedRestartLabel=Aby zakończyć instalację aplikacji [name], instalator musi ponownie uruchomić komputer. Czy chcesz teraz uruchomić komputer ponownie? -FinishedRestartMessage=Aby zakończyć instalację aplikacji [name], instalator musi ponownie uruchomić komputer.%n%nCzy chcesz teraz uruchomić komputer ponownie? -ShowReadmeCheck=Tak, chcę przeczytać dodatkowe informacje -YesRadio=&Tak, uruchom ponownie teraz -NoRadio=&Nie, uruchomię ponownie później -; used for example as 'Run MyProg.exe' -RunEntryExec=Uruchom aplikację %1 -; used for example as 'View Readme.txt' -RunEntryShellExec=Wyświetl plik %1 - -; *** "Setup Needs the Next Disk" stuff -ChangeDiskTitle=Instalator potrzebuje kolejnego archiwum -SelectDiskLabel2=Proszę włożyć dysk %1 i kliknąć przycisk OK.%n%nJeśli wymieniony poniżej folder nie określa położenia plików z tego dysku, proszę wprowadzić poprawną ścieżkę lub kliknąć przycisk Przeglądaj. -PathLabel=Ś&cieżka: -FileNotInDir2=Ścieżka "%2" nie zawiera pliku "%1". Proszę włożyć właściwy dysk lub wybrać inny folder. -SelectDirectoryLabel=Proszę określić lokalizację kolejnego archiwum instalatora. - -; *** Installation phase messages -SetupAborted=Instalacja nie została zakończona.%n%nProszę rozwiązać problem i ponownie rozpocząć instalację. -AbortRetryIgnoreSelectAction=Wybierz operację -AbortRetryIgnoreRetry=Spróbuj &ponownie -AbortRetryIgnoreIgnore=Z&ignoruj błąd i kontynuuj -AbortRetryIgnoreCancel=Przerwij instalację - -; *** Installation status messages -StatusClosingApplications=Zamykanie aplikacji... -StatusCreateDirs=Tworzenie folderów... -StatusExtractFiles=Dekompresja plików... -StatusCreateIcons=Tworzenie skrótów aplikacji... -StatusCreateIniEntries=Tworzenie zapisów w plikach INI... -StatusCreateRegistryEntries=Tworzenie zapisów w rejestrze... -StatusRegisterFiles=Rejestracja plików... -StatusSavingUninstall=Zapisywanie informacji o dezinstalacji... -StatusRunProgram=Kończenie instalacji... -StatusRestartingApplications=Ponowne uruchamianie aplikacji... -StatusRollback=Cofanie zmian... - -; *** Misc. errors -ErrorInternal2=Wewnętrzny błąd: %1 -ErrorFunctionFailedNoCode=Błąd podczas wykonywania %1 -ErrorFunctionFailed=Błąd podczas wykonywania %1; kod %2 -ErrorFunctionFailedWithMessage=Błąd podczas wykonywania %1; kod %2.%n%3 -ErrorExecutingProgram=Nie można uruchomić:%n%1 - -; *** Registry errors -ErrorRegOpenKey=Błąd podczas otwierania klucza rejestru:%n%1\%2 -ErrorRegCreateKey=Błąd podczas tworzenia klucza rejestru:%n%1\%2 -ErrorRegWriteKey=Błąd podczas zapisu do klucza rejestru:%n%1\%2 - -; *** INI errors -ErrorIniEntry=Błąd podczas tworzenia pozycji w pliku INI: "%1". - -; *** File copying errors -FileAbortRetryIgnoreSkipNotRecommended=&Pomiń plik (niezalecane) -FileAbortRetryIgnoreIgnoreNotRecommended=Z&ignoruj błąd i kontynuuj (niezalecane) -SourceIsCorrupted=Plik źródłowy jest uszkodzony -SourceDoesntExist=Plik źródłowy "%1" nie istnieje -ExistingFileReadOnly2=Istniejący plik nie może zostać zastąpiony, gdyż jest oznaczony jako "Tylko do odczytu". -ExistingFileReadOnlyRetry=&Usuń atrybut "Tylko do odczytu" i spróbuj ponownie -ExistingFileReadOnlyKeepExisting=&Zachowaj istniejący plik -ErrorReadingExistingDest=Wystąpił błąd podczas próby odczytu istniejącego pliku: -FileExistsSelectAction=Wybierz czynność -FileExists2=Plik już istnieje. -FileExistsOverwriteExisting=&Nadpisz istniejący plik -FileExistsKeepExisting=&Zachowaj istniejący plik -FileExistsOverwriteOrKeepAll=&Wykonaj tę czynność dla kolejnych przypadków -ExistingFileNewerSelectAction=Wybierz czynność -ExistingFileNewer2=Istniejący plik jest nowszy niż ten, który instalator próbuje skopiować. -ExistingFileNewerOverwriteExisting=&Nadpisz istniejący plik -ExistingFileNewerKeepExisting=&Zachowaj istniejący plik (zalecane) -ExistingFileNewerOverwriteOrKeepAll=&Wykonaj tę czynność dla kolejnych przypadków -ErrorChangingAttr=Wystąpił błąd podczas próby zmiany atrybutów pliku docelowego: -ErrorCreatingTemp=Wystąpił błąd podczas próby utworzenia pliku w folderze docelowym: -ErrorReadingSource=Wystąpił błąd podczas próby odczytu pliku źródłowego: -ErrorCopying=Wystąpił błąd podczas próby kopiowania pliku: -ErrorReplacingExistingFile=Wystąpił błąd podczas próby zamiany istniejącego pliku: -ErrorRestartReplace=Próba zastąpienia plików przy ponownym uruchomieniu komputera nie powiodła się. -ErrorRenamingTemp=Wystąpił błąd podczas próby zmiany nazwy pliku w folderze docelowym: -ErrorRegisterServer=Nie można zarejestrować DLL/OCX: %1 -ErrorRegSvr32Failed=Funkcja RegSvr32 zakończyła się z kodem błędu %1 -ErrorRegisterTypeLib=Nie mogę zarejestrować biblioteki typów: %1 - -; *** Uninstall display name markings -; used for example as 'My Program (32-bit)' -UninstallDisplayNameMark=%1 (%2) -; used for example as 'My Program (32-bit, All users)' -UninstallDisplayNameMarks=%1 (%2, %3) -UninstallDisplayNameMark32Bit=wersja 32-bitowa -UninstallDisplayNameMark64Bit=wersja 64-bitowa -UninstallDisplayNameMarkAllUsers=wszyscy użytkownicy -UninstallDisplayNameMarkCurrentUser=bieżący użytkownik - -; *** Post-installation errors -ErrorOpeningReadme=Wystąpił błąd podczas próby otwarcia pliku z informacjami dodatkowymi. -ErrorRestartingComputer=Instalator nie mógł ponownie uruchomić tego komputera. Proszę wykonać tę czynność samodzielnie. - -; *** Uninstaller messages -UninstallNotFound=Plik "%1" nie istnieje. Nie można przeprowadzić dezinstalacji. -UninstallOpenError=Plik "%1" nie mógł zostać otwarty. Nie można przeprowadzić dezinstalacji. -UninstallUnsupportedVer=Ta wersja programu dezinstalacyjnego nie rozpoznaje formatu logu dezinstalacji w pliku "%1". Nie można przeprowadzić dezinstalacji. -UninstallUnknownEntry=W logu dezinstalacji wystąpiła nieznana pozycja (%1) -ConfirmUninstall=Czy na pewno chcesz usunąć aplikację %1 i wszystkie jej składniki? -UninstallOnlyOnWin64=Ta aplikacja może być odinstalowana tylko w 64-bitowej wersji systemu Windows. -OnlyAdminCanUninstall=Ta instalacja może być odinstalowana tylko przez użytkownika z uprawnieniami administratora. -UninstallStatusLabel=Poczekaj, aż aplikacja %1 zostanie usunięta z komputera. -UninstalledAll=Aplikacja %1 została usunięta z komputera. -UninstalledMost=Dezinstalacja aplikacji %1 zakończyła się.%n%nNiektóre elementy nie mogły zostać usunięte. Należy usunąć je samodzielnie. -UninstalledAndNeedsRestart=Komputer musi zostać ponownie uruchomiony, aby zakończyć proces dezinstalacji aplikacji %1.%n%nCzy chcesz teraz ponownie uruchomić komputer? -UninstallDataCorrupted=Plik "%1" jest uszkodzony. Nie można przeprowadzić dezinstalacji. - -; *** Uninstallation phase messages -ConfirmDeleteSharedFileTitle=Usunąć plik współdzielony? -ConfirmDeleteSharedFile2=System wskazuje, iż następujący plik nie jest już używany przez żaden program. Czy chcesz odinstalować ten plik współdzielony?%n%nJeśli inne programy nadal używają tego pliku, a zostanie on usunięty, mogą one przestać działać prawidłowo. W przypadku braku pewności, kliknij przycisk Nie. Pozostawienie tego pliku w systemie nie spowoduje żadnych szkód. -SharedFileNameLabel=Nazwa pliku: -SharedFileLocationLabel=Położenie: -WizardUninstalling=Stan dezinstalacji -StatusUninstalling=Dezinstalacja aplikacji %1... - -; *** Shutdown block reasons -ShutdownBlockReasonInstallingApp=Instalacja aplikacji %1. -ShutdownBlockReasonUninstallingApp=Dezinstalacja aplikacji %1. - -; The custom messages below aren't used by Setup itself, but if you make -; use of them in your scripts, you'll want to translate them. - -[CustomMessages] - -NameAndVersion=%1 (wersja %2) -AdditionalIcons=Dodatkowe skróty: -CreateDesktopIcon=Utwórz skrót na &pulpicie -CreateQuickLaunchIcon=Utwórz skrót na pasku &szybkiego uruchamiania -ProgramOnTheWeb=Strona internetowa aplikacji %1 -UninstallProgram=Dezinstalacja aplikacji %1 -LaunchProgram=Uruchom aplikację %1 -AssocFileExtension=&Przypisz aplikację %1 do rozszerzenia pliku %2 -AssocingFileExtension=Przypisywanie aplikacji %1 do rozszerzenia pliku %2... -AutoStartProgramGroupDescription=Autostart: -AutoStartProgram=Automatycznie uruchamiaj aplikację %1 -AddonHostProgramNotFound=Aplikacja %1 nie została znaleziona we wskazanym przez Ciebie folderze.%n%nCzy pomimo tego chcesz kontynuować? diff --git a/bin/lib/innosetup/app/Languages/Swedish.isl b/bin/lib/innosetup/app/Languages/Swedish.isl deleted file mode 100644 index b515059..0000000 --- a/bin/lib/innosetup/app/Languages/Swedish.isl +++ /dev/null @@ -1,398 +0,0 @@ -; *** Inno Setup version 6.4.0+ Swedish messages *** -; -; To download user-contributed translations of this file, go to: -; http://www.jrsoftware.org/files/istrans/ -; -; Note: When translating this text, do not add periods (.) to the end of -; messages that didn't have them already, because on those messages Inno -; Setup adds the periods automatically (appending a period would result in -; two periods being displayed). -; -; Translated by stefan@bodingh.se (Stefan Bodingh) -; Reviewed and updated by info@danielnylander.se (Daniel Nylander) -; - -; The following three entries are very important. Be sure to read and -; understand the '[LangOptions] section' topic in the help file. - - -[LangOptions] -LanguageName=Svenska -LanguageID=$041D -LanguageCodePage=1252 -; If the language you are translating to requires special font faces or -; sizes, uncomment any of the following entries and change them accordingly. -;DialogFontName= -;DialogFontSize=8 -;WelcomeFontName=Verdana -;WelcomeFontSize=12 -;TitleFontName=Arial -;TitleFontSize=29 -;CopyrightFontName=Arial -;CopyrightFontSize=8 - - -; *** Application titles - - -[Messages] -SetupAppTitle=Installationsprogram -SetupWindowTitle=Installationsprogram fr %1 -UninstallAppTitle=Avinstallation -UninstallAppFullTitle=%1 Avinstallation - -; *** Misc. common -InformationTitle=Information -ConfirmTitle=Bekrfta -ErrorTitle=Fel - -; *** SetupLdr messages -SetupLdrStartupMessage=%1 kommer att installeras. Vill du fortstta? -LdrCannotCreateTemp=Kan inte skapa en temporrfil. Installationen avbryts -LdrCannotExecTemp=Kan inte kra fil i temporrkatalogen. Installationen avbryts -HelpTextNote= - -; *** Startup error messages -LastErrorMessage=%1.%n%nFel %2: %3 -SetupFileMissing=Filen %1 saknas i installationskatalogen. Rtta till problemet eller hmta en ny kopia av programmet. -SetupFileCorrupt=Installationsfilerna r skadade. Hmta en ny kopia av programmet. -SetupFileCorruptOrWrongVer=Installationsfilerna r skadade, eller stmmer inte verens med denna version av installationsprogrammet. Rtta till felet eller hmta en ny programkopia. -InvalidParameter=En ogiltig parameter angavs p kommandoraden:%n%n%1 -SetupAlreadyRunning=Installationsprogrammet krs redan. -WindowsVersionNotSupported=Detta program saknar std fr den version av Windows som krs p datorn. -WindowsServicePackRequired=Detta program krver %1 Service Pack %2 eller senare. -NotOnThisPlatform=Detta program kan inte kras p %1. -OnlyOnThisPlatform=Detta program mste kras p %1. -OnlyOnTheseArchitectures=Detta program kan bara installeras p Windows-versioner med fljande processorarkitekturer:%n%n%1 -WinVersionTooLowError=Detta program krver %1 version %2 eller senare. -WinVersionTooHighError=Detta program kan inte installeras p %1 version %2 eller senare. -AdminPrivilegesRequired=Du mste vara inloggad som administratr nr du installerar detta program. -PowerUserPrivilegesRequired=Du mste vara inloggad som administratr eller medlem av gruppen Privilegierade anvndare (Power Users) nr du installerar detta program. -SetupAppRunningError=Installationsprogrammet har upptckt att %1 r igng.%n%nAvsluta det angivna programmet nu. Klicka sedan p OK fr att g vidare eller p Avbryt fr att avsluta. -UninstallAppRunningError=Avinstalleraren har upptckt att %1 krs fr tillfllet.%n%nStng all ppna instanser av det nu, klicka sedan p OK fr att g vidare eller p Avbryt fr att avsluta. - -; *** Startup questions -PrivilegesRequiredOverrideTitle=Vlj installationstyp -PrivilegesRequiredOverrideInstruction=Vlj installationstyp -PrivilegesRequiredOverrideText1=%1 kan installeras fr alla anvndare (krver administratrsbehrighet) eller bara fr dig. -PrivilegesRequiredOverrideText2=%1 kan installeras bara fr dig eller fr alla anvndare (krver administratrsbehrighet). -PrivilegesRequiredOverrideAllUsers=Installera fr &alla anvndare -PrivilegesRequiredOverrideAllUsersRecommended=Installera fr &alla anvndare (rekommenderas) -PrivilegesRequiredOverrideCurrentUser=Installera fr &mig enbart -PrivilegesRequiredOverrideCurrentUserRecommended=Installera fr &mig enbart (rekommenderas) - -; *** Misc. errors -ErrorCreatingDir=Installationsprogrammet kunde inte skapa katalogen "%1" -ErrorTooManyFilesInDir=Kunde inte skapa en fil i katalogen "%1" drfr att den innehller fr mnga filer - -; *** Setup common messages -ExitSetupTitle=Avsluta installationen -ExitSetupMessage=Installationen r inte frdig. Om du avslutar nu s kommer programmet inte att installeras.%n%nDu kan kra installationsprogrammet vid ett senare tillflle fr att slutfra installationen.%n%nVill du avbryta installationen? -AboutSetupMenuItem=&Om installationsprogrammet... -AboutSetupTitle=Om installationsprogrammet -AboutSetupMessage=%1 version %2%n%3%n%n%1 webbsida:%n%4 -AboutSetupNote=Svensk versttning r gjord av dickg@go.to 1999, 2002%n%nUppdatering till 3.0.2+ av peter@peterandlinda.com, 4.+ av stefan@bodingh.se, 6.4+ info@danielnylander.se -TranslatorNote= - -; *** Buttons -ButtonBack=< &Tillbaka -ButtonNext=&Nsta > -ButtonInstall=&Installera -ButtonOK=Ok -ButtonCancel=Avbryt -ButtonYes=&Ja -ButtonYesToAll=Ja till &allt -ButtonNo=&Nej -ButtonNoToAll=N&ej till allt -ButtonFinish=&Slutfr -ButtonBrowse=&Blddra... -ButtonWizardBrowse=Bl&ddra... -ButtonNewFolder=Skapa ny mapp - -; *** "Select Language" dialog messages -SelectLanguageTitle=Vlj sprk fr installationen -SelectLanguageLabel=Vlj det sprk som skall anvndas under installationen. - -; *** Common wizard text -ClickNext=Klicka p Nsta fr att fortstta eller p Avbryt fr att avsluta installationen. -BeveledLabel= -BrowseDialogTitle=Vlj mapp -BrowseDialogLabel=Vlj en mapp i listan nedan, klicka sedan p OK. -NewFolderName=Ny mapp - -; *** "Welcome" wizard page -WelcomeLabel1=Vlkommen till installationsprogrammet fr [name]. -WelcomeLabel2=Detta kommer att installera [name/ver] p din dator.%n%nDet rekommenderas att du avslutar alla andra program innan du fortstter. - -; *** "Password" wizard page -WizardPassword=Lsenord -PasswordLabel1=Denna installation r lsenordsskyddad. -PasswordLabel3=Ange lsenordet och klicka sedan p Nsta fr att fortstta. Lsenordet r skiftlgesknsligt. -PasswordEditLabel=&Lsenord: -IncorrectPassword=Lsenordet som du angav r felaktigt. Frsk igen. - -; *** "License Agreement" wizard page -WizardLicense=Licensavtal -LicenseLabel=Ls igenom fljande viktiga information innan du fortstter. -LicenseLabel3=Ls igenom fljande licensavtal. Du mste acceptera villkoren i avtalet innan du kan fortstta med installationen. -LicenseAccepted=Jag &accepterar avtalet -LicenseNotAccepted=Jag accepterar &inte avtalet - -; *** "Information" wizard pages -WizardInfoBefore=Information -InfoBeforeLabel=Ls igenom fljande viktiga information innan du fortstter. -InfoBeforeClickLabel=Klicka p Nsta nr du r klar att fortstta med installationen. -WizardInfoAfter=Information -InfoAfterLabel=Ls igenom fljande viktiga information innan du fortstter. -InfoAfterClickLabel=Klicka p Nsta nr du r klar att fortstta med installationen. - -; *** "User Information" wizard page -WizardUserInfo=Anvndarinformation -UserInfoDesc=Fyll i fljande uppgifter. -UserInfoName=&Namn: -UserInfoOrg=&Organisation: -UserInfoSerial=&Serienummer: -UserInfoNameRequired=Du mste fylla i ett namn. - -; *** "Select Destination Directory" wizard page -WizardSelectDir=Vlj installationsplats -SelectDirDesc=Var skall [name] installeras? -SelectDirLabel3=Installationsprogrammet kommer att installera [name] i fljande mapp -SelectDirBrowseLabel=Fr att fortstta klickar du p Nsta. Om du vill vlja en annan mapp s klickar du p Blddra. -DiskSpaceGBLabel=Programmet krver minst [gb] GB hrddiskutrymme. -DiskSpaceMBLabel=Programmet krver minst [mb] MB hrddiskutrymme. -CannotInstallToNetworkDrive=Installationsprogrammet kan inte installeras p ntverksdisk. -CannotInstallToUNCPath=Installationsprogrammet kan inte installeras p UNC-skvg. -InvalidPath=Du mste ange en fullstndig skvg med enhetsbeteckning; till exempel:%n%nC:\Program%n%neller en UNC-skvg i formatet:%n%n\\server\resurs -InvalidDrive=Enheten som du har valt finns inte eller r inte tillgnglig. Vlj en annan. -DiskSpaceWarningTitle=Inte tillrckligt med diskutrymme -DiskSpaceWarning=Installationsprogrammet behver minst %1 KB ledigt diskutrymme fr installationen men den valda enheten har bara %2 KB tillgngligt.%n%nVill du fortstta nd? -DirNameTooLong=Katalogens namn eller skvg r fr lng. -InvalidDirName=Katalogens namn r inte giltigt. -BadDirName32=Katalogens namn fr inte innehlla ngot av fljande tecken:%n%n%1 -DirExistsTitle=Katalogen finns -DirExists=Katalogen:%n%n%1%n%nfinns redan. Vill du nd fortstta installationen till den valda katalogen? -DirDoesntExistTitle=Katalogen finns inte -DirDoesntExist=Katalogen:%n%n%1%n%nfinns inte. Vill du skapa den? - -; *** "Select Components" wizard page -WizardSelectComponents=Vlj komponenter -SelectComponentsDesc=Vilka komponenter skall installeras? -SelectComponentsLabel2=Vlj de komponenter som du vill ska installeras; avmarkera de komponenter som du inte vill ha. Klicka sedan p Nsta nr du r klar att fortstta. -FullInstallation=Fullstndig installation -; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) -CompactInstallation=Kompakt installation -CustomInstallation=Anpassad installation -NoUninstallWarningTitle=Komponenter finns -NoUninstallWarning=Installationsprogrammet har upptckt att fljande komponenter redan finns installerade p din dator:%n%n%1%n%nAtt avmarkera dessa komponenter kommer inte att avinstallera dom.%n%nVill du fortstta nd? -ComponentSize1=%1 KB -ComponentSize2=%1 MB -ComponentsDiskSpaceGBLabel=Aktuella val krver minst [gb] GB diskutrymme. -ComponentsDiskSpaceMBLabel=Aktuella val krver minst [mb] MB diskutrymme. - -; *** "Select Additional Tasks" wizard page -WizardSelectTasks=Vlj extra uppgifter -SelectTasksDesc=Vilka extra uppgifter skall utfras? -SelectTasksLabel2=Markera ytterligare uppgifter att utfra vid installation av [name], tryck sedan p Nsta. - -; *** "Select Start Menu Folder" wizard page -WizardSelectProgramGroup=Vlj Startmenykatalogen -SelectStartMenuFolderDesc=Var skall installationsprogrammet placera programmets genvgar? -SelectStartMenuFolderLabel3=Installationsprogrammet kommer att skapa programmets genvgar i fljande katalog. -SelectStartMenuFolderBrowseLabel=Fr att fortstta klickar du p Nsta. Om du vill vlja en annan katalog, klickar du p Blddra. -MustEnterGroupName=Du mste ange ett katalognamn. -GroupNameTooLong=Katalogens namn eller skvg r fr lng. -InvalidGroupName=Katalogens namn r inte giltigt. -BadGroupName=Katalognamnet kan inte innehlla ngon av fljande tecken:%n%n%1 -NoProgramGroupCheck2=&Skapa ingen Startmenykatalog - -; *** "Ready to Install" wizard page -WizardReady=Redo att installera -ReadyLabel1=Installationsprogrammet r nu redo att installera [name] p din dator. -ReadyLabel2a=Tryck p Installera om du vill fortstta, eller p g Tillbaka om du vill granska eller ndra p ngot. -ReadyLabel2b=Vlj Installera fr att pbrja installationen. -ReadyMemoUserInfo=Anvndarinformation: -ReadyMemoDir=Installationsplats: -ReadyMemoType=Installationstyp: -ReadyMemoComponents=Valda komponenter: -ReadyMemoGroup=Startmenykatalog: -ReadyMemoTasks=Extra uppgifter: - -; *** TDownloadWizardPage wizard page and DownloadTemporaryFile -DownloadingLabel=Hmtar ner ytterligare filer... -ButtonStopDownload=&Stoppa hmtningen -StopDownload=r du sker p att du vill stoppa hmtningen? -ErrorDownloadAborted=Hmtningen avbruten -ErrorDownloadFailed=Hmtningen misslyckades: %1 %2 -ErrorDownloadSizeFailed=F storlek misslyckades: %1 %2 -ErrorFileHash1=Filhash misslyckades: %1 -ErrorFileHash2=Ogiltig filhash: frvntade %1, fick %2 -ErrorProgress=Ogiltigt frlopp: %1 av %2 -ErrorFileSize=Ogiltig filstorlek: frvntade %1, fick %2 - -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Extraherar ytterligare filer... -ButtonStopExtraction=&Stoppa extrahering -StopExtraction=r du sker p att du vill stoppa extraheringen? -ErrorExtractionAborted=Extrahering avbrts -ErrorExtractionFailed=Extrahering misslyckades: %1 - -; *** "Preparing to Install" wizard page -WizardPreparing=Frbereder installationen -PreparingDesc=Installationsprogrammet frbereder installationen av [name] p din dator. -PreviousInstallNotCompleted=Installationen/avinstallationen av ett tidigare program har inte slutfrts. Du mste starta om datorn fr att avsluta den installationen.%n%nEfter att ha startat om datorn kr du installationsprogrammet igen fr att slutfra installationen av [name]. -CannotContinue=Installationsprogrammet kan inte fortstta. Klicka p Avbryt fr att avsluta. -ApplicationsFound=Fljande program anvnder filer som mste uppdateras av installationsprogrammet. Vi rekommenderar att du lter installationsprogrammet automatiskt stnga dessa program. -ApplicationsFound2=Fljande program anvnder filer som mste uppdateras av installationsprogrammet. Vi rekommenderar att du lter installationsprogrammet automatiskt stnga dessa program. Efter installationen kommer Setup att frska starta programmen igen. -CloseApplications=S&tng programmen automatiskt -DontCloseApplications=&Stng inte programmen -ErrorCloseApplications=Installationsprogrammet kunde inte stnga alla program. Innan installationen fortstter rekommenderar vi att du stnger alla program som anvnder filer som installationsprogrammet behver uppdatera. -PrepareToInstallNeedsRestart=Installationen mste starta om din dator. Nr du har startat om datorn kr du installationsprogrammet igen fr att slutfra installationen av [name].%n%nVill du starta om nu? - -; *** "Installing" wizard page -WizardInstalling=Installerar -InstallingLabel=Vnta under tiden [name] installeras p din dator. - -; *** "Setup Completed" wizard page -FinishedHeadingLabel=Avslutar installationen av [name] -FinishedLabelNoIcons=[name] har nu installerats p din dator. -FinishedLabel=[name] har nu installerats p din dator. Programmet kan startas genom att vlja ngon av de installerade ikonerna. -ClickFinish=Vlj Slutfr fr att avsluta installationen. -FinishedRestartLabel=Fr att slutfra installationen av [name] s mste datorn startas om. Vill du starta om nu? -FinishedRestartMessage=Fr att slutfra installationen av [name] s mste datorn startas om.%n%nVill du starta om datorn nu? -ShowReadmeCheck=Ja, jag vill se filen LSMIG -YesRadio=&Ja, jag vill starta om datorn nu -NoRadio=&Nej, jag startar sjlv om datorn senare -; used for example as 'Run MyProg.exe' -RunEntryExec=Kr %1 -; used for example as 'View Readme.txt' -RunEntryShellExec=Visa %1 - -; *** "Setup Needs the Next Disk" stuff -ChangeDiskTitle=Installationsprogrammet behver nsta diskett -SelectDiskLabel2=Mata in diskett %1 och tryck OK.%n%nOm filerna kan hittas i en annan katalog n den som visas nedan, skriv in rtt skvg eller vlj Blddra. -PathLabel=&Skvg: -FileNotInDir2=Kunde inte hitta filen "%1" i "%2". Var god stt i korrekt diskett eller vlj en annan katalog. -SelectDirectoryLabel=Ange skvgen fr nsta diskett. - -; *** Installation phase messages -SetupAborted=Installationen slutfrdes inte.%n%nRtta till felet och kr installationen igen. -AbortRetryIgnoreSelectAction=Vlj tgrd -AbortRetryIgnoreRetry=&Frsk igen -AbortRetryIgnoreIgnore=&Ignorera felet och fortstt -AbortRetryIgnoreCancel=Avbryt installationen - -; *** Installation status messages -StatusClosingApplications=Stnger programmen... -StatusCreateDirs=Skapar kataloger... -StatusExtractFiles=Packar upp filer... -StatusCreateIcons=Skapar programikoner... -StatusCreateIniEntries=Skriver INI-vrden... -StatusCreateRegistryEntries=Skriver registervrden... -StatusRegisterFiles=Registrerar filer... -StatusSavingUninstall=Sparar information fr avinstallation... -StatusRunProgram=Slutfr installationen... -StatusRestartingApplications=Startar om programmen... -StatusRollback=terstller ndringar... - -; *** Misc. errors -ErrorInternal2=Internt fel: %1 -ErrorFunctionFailedNoCode=%1 misslyckades -ErrorFunctionFailed=%1 misslyckades; kod %2 -ErrorFunctionFailedWithMessage=%1 misslyckades; kod %2.%n%3 -ErrorExecutingProgram=Kan inte kra filen:%n%1 - -; *** Registry errors -ErrorRegOpenKey=Fel vid ppning av registernyckel:%n%1\%2 -ErrorRegCreateKey=Kan inte skapa registernyckel:%n%1\%2 -ErrorRegWriteKey=Kan inte skriva till registernyckel:%n%1\%2 - -; *** INI errors -ErrorIniEntry=Kan inte skriva nytt INI-vrde i filen "%1". - -; *** File copying errors -FileAbortRetryIgnoreSkipNotRecommended=&Hoppa ver den hr filen (rekommenderas inte) -FileAbortRetryIgnoreIgnoreNotRecommended=&Ignorera felet och fortstt (rekommenderas inte) -SourceIsCorrupted=Kllfilen r skadad -SourceDoesntExist=Kllfilen "%1" finns inte -ExistingFileReadOnly2=Den befintliga filen kunde inte bytas ut eftersom den r markerad som skrivskyddad. -ExistingFileReadOnlyRetry=&Ta bort skrivskyddade attributet och frsk igen -ExistingFileReadOnlyKeepExisting=&Behll den befintliga filen -ErrorReadingExistingDest=Ett fel uppstod vid frsk att lsa den befintliga filen: -FileExistsSelectAction=Vlj tgrd -FileExists2=Filen finns redan. -FileExistsOverwriteExisting=&Skriv ver den befintliga filen -FileExistsKeepExisting=&Behll befintlig fil -FileExistsOverwriteOrKeepAll=&Gr detta fr nsta konflikt -ExistingFileNewerSelectAction=Vlj tgrd -ExistingFileNewer2=Den befintliga filen r nyare n den som installationsprogrammet frsker installera. -ExistingFileNewerOverwriteExisting=&Skriv ver den befintliga filen -ExistingFileNewerKeepExisting=&Behll befintlig fil (rekommenderas) -ExistingFileNewerOverwriteOrKeepAll=&Gr detta fr nsta konflikt -ErrorChangingAttr=Ett fel uppstod vid frsk att ndra attribut p den befintliga filen: -ErrorCreatingTemp=Ett fel uppstod vid ett frsk att skapa installationskatalogen: -ErrorReadingSource=Ett fel uppstod vid ett frsk att lsa kllfilen: -ErrorCopying=Ett fel uppstod vid kopiering av filen: -ErrorReplacingExistingFile=Ett fel uppstod vid ett frsk att erstta den befintliga filen: -ErrorRestartReplace=terstartaErstt misslyckades: -ErrorRenamingTemp=Ett fel uppstod vid ett frsk att byta namn p en fil i installationskatalogen: -ErrorRegisterServer=Kunde inte registrera DLL/OCX: %1 -ErrorRegSvr32Failed=RegSvr32 misslyckades med felkod %1 -ErrorRegisterTypeLib=Kunde inte registrera typbibliotek: %1 - -; *** Uninstall display name markings -; used for example as 'My Program (32-bit)' -UninstallDisplayNameMark=%1 (%2) -; used for example as 'My Program (32-bit, All users)' -UninstallDisplayNameMarks=%1 (%2, %3) -UninstallDisplayNameMark32Bit=32-bit -UninstallDisplayNameMark64Bit=64-bit -UninstallDisplayNameMarkAllUsers=Alla anvndare -UninstallDisplayNameMarkCurrentUser=Aktuell anvndare - -; *** Post-installation errors -ErrorOpeningReadme=Ett fel uppstod vid ppnandet av LSMIG-filen. -ErrorRestartingComputer=Installationsprogrammet kunde inte starta om datorn. Starta om den manuellt. - -; *** Uninstaller messages -UninstallNotFound=Filen "%1" finns inte. Kan inte avinstallera. -UninstallOpenError=Filen "%1" kan inte ppnas. Kan inte avinstallera -UninstallUnsupportedVer=Avinstallationsloggen "%1" r i ett format som denna version inte knner igen. Kan inte avinstallera -UninstallUnknownEntry=En oknd rad (%1) hittades i avinstallationsloggen -ConfirmUninstall=r du sker p att du vill ta bort %1 och alla tillhrande komponenter? -UninstallOnlyOnWin64=Denna installation kan endast avinstalleras p en 64-bitarsversion av Windows. -OnlyAdminCanUninstall=Denna installation kan endast avinstalleras av en anvndare med administrativa rttigheter. -UninstallStatusLabel=Vnta under tiden %1 tas bort frn din dator. -UninstalledAll=%1 r nu borttaget frn din dator. -UninstalledMost=Avinstallationen av %1 r nu klar.%n%nEn del filer/kataloger gick inte att ta bort. Dessa kan tas bort manuellt. -UninstalledAndNeedsRestart=Fr att slutfra avinstallationen av %1 mste datorn startas om.%n%nVill du starta om nu? -UninstallDataCorrupted=Filen "%1" r skadad. Kan inte avinstallera - -; *** Uninstallation phase messages -ConfirmDeleteSharedFileTitle=Ta bort delad fil? -ConfirmDeleteSharedFile2=Systemet indikerar att fljande delade fil inte lngre anvnds av ngra program. Vill du ta bort den delade filen?%n%n%1%n%nOm ngot program fortfarande anvnder denna fil och den raderas, kommer programmet kanske att sluta fungera. Om du r osker, vlj Nej. Att lta filen ligga kvar i systemet kommer inte att orsaka ngon skada. -SharedFileNameLabel=Filnamn: -SharedFileLocationLabel=Plats: -WizardUninstalling=Avinstallationsstatus -StatusUninstalling=Avinstallerar %1... - -; *** Shutdown block reasons -ShutdownBlockReasonInstallingApp=Installerar %1. -ShutdownBlockReasonUninstallingApp=Avinstallerar %1. - -; The custom messages below aren't used by Setup itself, but if you make -; use of them in your scripts, you'll want to translate them. - -[CustomMessages] -NameAndVersion=%1 version %2 -AdditionalIcons=Ytterligare genvgar: -CreateDesktopIcon=Skapa en &genvg p skrivbordet -CreateQuickLaunchIcon=Skapa &en genvg i Snabbstartfltet -ProgramOnTheWeb=%1 p webben -UninstallProgram=Avinstallera %1 -LaunchProgram=Starta %1 -AssocFileExtension=Associera %1 med filnamnstillgget %2 -AssocingFileExtension=Associerar %1 med filnamnstillgget %2... -AutoStartProgramGroupDescription=Autostart: -AutoStartProgram=Starta automatiskt %1 -AddonHostProgramNotFound=%1 kunde inte hittas i katalogen du valde.%n%nVill du fortstta nd? diff --git a/bin/lib/innosetup/app/Languages/Tamil.isl b/bin/lib/innosetup/app/Languages/Tamil.isl deleted file mode 100644 index 378ca40..0000000 --- a/bin/lib/innosetup/app/Languages/Tamil.isl +++ /dev/null @@ -1,392 +0,0 @@ -; *** Inno Setup version 6.4.0+ English messages *** -; தமிழ்நேரம் (https://TamilNeram.github.io) -;anishprabu.t@gmail.com -; To download user-contributed translations of this file, go to: -; https://jrsoftware.org/files/istrans/ -; -; Note: When translating this text, do not add periods (.) to the end of -; messages that didn't have them already, because on those messages Inno -; Setup adds the periods automatically (appending a period would result in -; two periods being displayed). - -[LangOptions] -; The following three entries are very important. Be sure to read and -; understand the '[LangOptions] section' topic in the help file. -LanguageName=தமிழ் -LanguageID=$0449 -LanguageCodePage=0 -; If the language you are translating to requires special font faces or -; sizes, uncomment any of the following entries and change them accordingly. -;DialogFontName=TACBarathi -;DialogFontSize=12 -;WelcomeFontName=TACBarathi -;WelcomeFontSize=12 -;TitleFontName=Arial -;TitleFontSize=29 -;CopyrightFontName=TACBarathi -;CopyrightFontSize=12 - -[Messages] - -; *** Application titles -SetupAppTitle=அமைவு -SetupWindowTitle=அமைவு - %1 -UninstallAppTitle=நிறுவல் நீக்குதல் -UninstallAppFullTitle=%1 நிறுவல் நீக்குதல் - -; *** Misc. common -InformationTitle=செய்தி -ConfirmTitle=உறுதிப்படுத்தல் -ErrorTitle=பிழை - -; *** SetupLdr messages -SetupLdrStartupMessage=இது %1 ஐ நிறுவும். நீங்கள் தொடர விரும்புகிறீர்களா? -LdrCannotCreateTemp=தற்காலிக கோப்பை உருவாக்க முடியவில்லை. அமைப்பு கைவிடப்பட்டது -LdrCannotExecTemp=தற்காலிக கோப்பகத்தில் கோப்பை இயக்க முடியவில்லை. அமைப்பு கைவிடப்பட்டது -HelpTextNote= - -; *** Startup error messages -LastErrorMessage=%1.%n%nபிழை %2: %3 -SetupFileMissing=நிறுவல் கோப்பகத்திலிருந்து %1 கோப்பு இல்லை. தயவுசெய்து சிக்கலை சரிசெய்யவும் அல்லது நிரலின் புதிய நகலைப் பெறவும். -SetupFileCorrupt=அமைவு கோப்புகள் சிதைந்துள்ளன. திட்டத்தின் புதிய நகலைப் பெறுங்கள். -SetupFileCorruptOrWrongVer=அமைவு கோப்புகள் சிதைந்துள்ளன, அல்லது அமைப்பின் இந்த பதிப்போடு பொருந்தாது. தயவுசெய்து சிக்கலை சரிசெய்யவும் அல்லது நிரலின் புதிய நகலைப் பெறவும். -InvalidParameter=கட்டளை வரியில் தவறான அளவுரு அனுப்பப்பட்டது:%n%n%1 -SetupAlreadyRunning=அமைப்பு ஏற்கனவே இயங்குகிறது. -WindowsVersionNotSupported=உங்கள் கணினி இயங்கும் சாளரத்தின் பதிப்பை இந்த நிரல் ஆதரிக்காது. -WindowsServicePackRequired=இந்த திட்டத்திற்கு %1 பணி கட்டு %2 அல்லது அதற்குப் பிறகு தேவைப்படுகிறது. -NotOnThisPlatform=இந்த திட்டம் %1 இல் இயங்காது. -OnlyOnThisPlatform=இந்த நிரல் %1 இல் இயக்கப்பட வேண்டும். -OnlyOnTheseArchitectures=இந்த நிரலை பின்வரும் செயலி கட்டமைப்புகளுக்காக வடிவமைக்கப்பட்ட சாளரங்கள் பதிப்புகளில் மட்டுமே நிறுவ முடியும்:%n%n%1 -WinVersionTooLowError=இந்த நிரலுக்கு %1 பதிப்பு %2 அல்லது அதற்குப் பிறகு தேவைப்படுகிறது. -WinVersionTooHighError=இந்த நிரலை %1 பதிப்பு %2 அல்லது அதற்குப் பிறகு நிறுவ முடியாது. -AdminPrivilegesRequired=இந்த நிரலை நிறுவும் போது நீங்கள் நிர்வாகியாக உள்நுழைய வேண்டும். -PowerUserPrivilegesRequired=இந்த நிரலை நிறுவும் போது நீங்கள் ஒரு நிர்வாகியாகவோ அல்லது ஆற்றல் பயனர்கள் குழுவின் உறுப்பினராகவோ உள்நுழைந்திருக்க வேண்டும். -SetupAppRunningError=%1 தற்போது இயங்குகிறது என்பதை அமைவு கண்டறிந்துள்ளது.%n%n அதன் எல்லா நிகழ்வுகளையும் இப்போது மூடு, பின்னர் தொடர சரி என்பதைக் சொடுக்குக அல்லது வெளியேற ரத்துசெய். -UninstallAppRunningError=%1 தற்போது இயங்குகிறது என்பதை நிறுவல் நீக்குதல் கண்டறிந்துள்ளது.%n%n அதன் எல்லா நிகழ்வுகளையும் இப்போது மூடு, பின்னர் தொடர சரி என்பதைக் சொடுக்குக, அல்லது வெளியேற ரத்துசெய். - -; *** Startup questions -PrivilegesRequiredOverrideTitle=அமைவு நிறுவல் பயன்முறையைத் தேர்ந்தெடுக்கவும் -PrivilegesRequiredOverrideInstruction=நிறுவல் பயன்முறையைத் தேர்ந்தெடுக்கவும் -PrivilegesRequiredOverrideText1=அனைத்து பயனர்களுக்கும் %1 ஐ நிறுவலாம் (நிர்வாக சலுகைகள் தேவை), அல்லது உங்களுக்காக மட்டுமே. -PrivilegesRequiredOverrideText2=உங்களுக்காக மட்டுமே %1 நிறுவ முடியும், அல்லது அனைத்து பயனர்களுக்கும் (நிர்வாக சலுகைகள் தேவை). -PrivilegesRequiredOverrideAllUsers=அனைத்து பயனர்களுக்கும் நிறுவவும் -PrivilegesRequiredOverrideAllUsersRecommended=அனைத்து பயனர்களுக்கும் நிறுவவும் (பரிந்துரைக்கப்படுகிறது) -PrivilegesRequiredOverrideCurrentUser=எனக்கு மட்டும் நிறுவவும் -PrivilegesRequiredOverrideCurrentUserRecommended=எனக்கு மட்டும் நிறுவவும் (பரிந்துரைக்கப்படுகிறது) - -; *** Misc. errors -ErrorCreatingDir=அமைப்பால் "%1" கோப்பகத்தை உருவாக்க முடியவில்லை -ErrorTooManyFilesInDir="%1" கோப்பகத்தில் ஒரு கோப்பை உருவாக்க முடியவில்லை, ஏனெனில் அதில் பல கோப்புகள் உள்ளன - -; *** Setup common messages -ExitSetupTitle=அமைப்பு வெளியேறு -ExitSetupMessage=அமைப்பு முழுமையடையவில்லை. நீங்கள் இப்போது வெளியேறினால், நிரல் நிறுவப்படாது.%n%nநிறுவலை முடிக்க மற்றொரு நேரத்தில் மீண்டும் அமைப்பை இயக்கலாம்.%n%nஅமைவு வெளியேறு? -AboutSetupMenuItem=அமைப்பு பற்றி... -AboutSetupTitle=அமைப்பு பற்றி -AboutSetupMessage=%1 பதிப்பு %2%n%3%n%n%1 முகப்பு பக்கம்:%n%4 -AboutSetupNote=அமைப்பு குறிப்பு -TranslatorNote=தமிழ்நேரக்குழு(https://TamilNeram.github.io) - -; *** Buttons -ButtonBack=< பின் -ButtonNext=முன் > -ButtonInstall=நிறுவு -ButtonOK=சரி -ButtonCancel=ரத்துசெய் -ButtonYes=ஆம் -ButtonYesToAll=அனைத்திற்கும் ஆம் -ButtonNo=இல் -ButtonNoToAll=அனைத்திற்கும் இல் -ButtonFinish=முடி -ButtonBrowse=உலாவு... -ButtonWizardBrowse=உலாவு... -ButtonNewFolder=புதிய கோப்புறையை உருவாக்குங்கள் - -; *** "Select Language" dialog messages -SelectLanguageTitle=அமைவு மொழியைத் தேர்ந்தெடுக்கவும் -SelectLanguageLabel=நிறுவலின் போது பயன்படுத்த மொழியைத் தேர்ந்தெடுக்கவும். - -; *** Common wizard text -ClickNext=தொடர அடுத்து என்பதைக் சொடுக்குக, அல்லது அமைப்பிலிருந்து வெளியேற ரத்துசெய். -BeveledLabel= -BrowseDialogTitle=கோப்புறைக்கு உலாவுக -BrowseDialogLabel=கீழே உள்ள பட்டியலில் ஒரு கோப்புறையைத் தேர்ந்தெடுத்து, சரி என்பதைக் சொடுக்குக. -NewFolderName=புதிய கோப்புறை - -; *** "Welcome" wizard page -WelcomeLabel1=[name] அமைவு வழிகாட்டிக்கு வருக -WelcomeLabel2=இது உங்கள் கணினியில் [name/ver] ஐ நிறுவும்.%n%nதொடர்வதற்கு முன் மற்ற எல்லா பயன்பாடுகளையும் மூட பரிந்துரைக்கப்படுகிறது. - -; *** "Password" wizard page -WizardPassword=கடவுச்சொல் -PasswordLabel1=இந்த நிறுவல் கடவுச்சொல் பாதுகாக்கப்படுகிறது. -PasswordLabel3=கடவுச்சொல்லை வழங்கவும், பின்னர் தொடர அடுத்து என்பதைக் சொடுக்குக. கடவுச்சொற்கள் வழக்கு உணர்திறன் கொண்டவை. -PasswordEditLabel=கடவுச்சொல்: -IncorrectPassword=நீங்கள் உள்ளிட்ட கடவுச்சொல் சரியாக இல்லை. மீண்டும் முயற்சிக்கவும். - -; *** "License Agreement" wizard page -WizardLicense=உரிம ஒப்பந்தம் -LicenseLabel=தொடர்வதற்கு முன் பின்வரும் முக்கியமான தகவல்களைப் படியுங்கள். -LicenseLabel3=பின்வரும் உரிம ஒப்பந்தத்தைப் படியுங்கள். நிறுவலைத் தொடர்வதற்கு முன் இந்த ஒப்பந்தத்தின் விதிமுறைகளை நீங்கள் ஏற்க வேண்டும். -LicenseAccepted=நான் ஒப்பந்தத்தை ஏற்றுக்கொள்கிறேன் -LicenseNotAccepted=நான் ஒப்பந்தத்தை ஏற்கவில்லை - -; *** "Information" wizard pages -WizardInfoBefore=தகவல் -InfoBeforeLabel=தொடர்வதற்கு முன் பின்வரும் முக்கியமான தகவல்களைப் படியுங்கள். -InfoBeforeClickLabel=அமைப்பைத் தொடர நீங்கள் தயாராக இருக்கும்போது, ​​அடுத்து என்பதைக் சொடுக்குக. -WizardInfoAfter=தகவல் -InfoAfterLabel=தொடர்வதற்கு முன் பின்வரும் முக்கியமான தகவல்களைப் படியுங்கள். -InfoAfterClickLabel=அமைப்பைத் தொடர நீங்கள் தயாராக இருக்கும்போது, ​​அடுத்து என்பதைக் சொடுக்குக. - -; *** "User Information" wizard page -WizardUserInfo=பயனர் செய்தி -UserInfoDesc=உங்கள் தகவலை உள்ளிடவும். -UserInfoName=பயனர் பெயர்: -UserInfoOrg=நிறுவனம்: -UserInfoSerial=வரிசை எண்: -UserInfoNameRequired=நீங்கள் ஒரு பெயரை உள்ளிட வேண்டும். - -; *** "Select Destination Location" wizard page -WizardSelectDir=இலக்கு இருப்பிடத்தைத் தேர்ந்தெடுக்கவும் -SelectDirDesc=[name] எங்கே நிறுவப்பட வேண்டும்? -SelectDirLabel3=அமைவு பின்வரும் கோப்புறையில் [name] நிறுவப்படும். -SelectDirBrowseLabel=தொடர, அடுத்து என்பதைக் சொடுக்குக. நீங்கள் வேறு கோப்புறையைத் தேர்ந்தெடுக்க விரும்பினால், உலாவு என்பதைக் சொடுக்குக. -DiskSpaceGBLabel=இலவச வட்டு இடத்தின் குறைந்தபட்சம் [gb] சிபை தேவை. -DiskSpaceMBLabel=இலவச வட்டு இடத்தின் குறைந்தபட்சம் [mb] மெபை தேவை. -CannotInstallToNetworkDrive=பிணைய இயக்ககத்திற்கு அமைவு நிறுவ முடியாது. -CannotInstallToUNCPath=அமைவு ஒரு யுஎன்சி பாதையில் நிறுவ முடியாது. -InvalidPath=இயக்கி எழுத்துடன் முழு பாதையை உள்ளிட வேண்டும்; எடுத்துக்காட்டாக:%n%nசி:\ பயனபாடு%n%nஅல்லது ஒரு யுஎன்சி வடிவத்தில் பாதை:%n%n\\சேவையகம்\பங்கு -InvalidDrive=நீங்கள் தேர்ந்தெடுத்த இயக்கி அல்லது யுஎன்சி பகிர்வு இல்லை அல்லது அணுக முடியாது. மற்றொன்றைத் தேர்ந்தெடுக்கவும். -DiskSpaceWarningTitle=போதுமான வட்டு இடம் இல்லை -DiskSpaceWarning=அமைப்புக்கு நிறுவ குறைந்தபட்சம் %1 கிபை இலவச இடம் தேவைப்படுகிறது, ஆனால் தேர்ந்தெடுக்கப்பட்ட இயக்ககத்தில் %2 கிபை மட்டுமே கிடைக்கிறது. %n%nநீங்கள் எப்படியும் தொடர விரும்புகிறீர்களா? -DirNameTooLong=கோப்புறை பெயர் அல்லது பாதை மிக நீளமானது. -InvalidDirName=கோப்புறை பெயர் செல்லுபடியாகாது. -BadDirName32=கோப்புறை பெயர்கள் பின்வரும் எழுத்துக்களில் எதையும் சேர்க்க முடியாது:%n%n%1 -DirExistsTitle=கோப்புறை உள்ளது -DirExists=இந்த கோப்புறை:%n%n%1%n%nஏற்கனவே உள்ளது. எப்படியும் அந்த கோப்புறையில் நிறுவ விரும்புகிறீர்களா? -DirDoesntExistTitle=கோப்புறை இல்லை -DirDoesntExist=இந்த கோப்புறை:%n%n%1%n%nஇல்லை. கோப்புறை உருவாக்கப்பட விரும்புகிறீர்களா? - -; *** "Select Components" wizard page -WizardSelectComponents=கூறுகளைத் தேர்ந்தெடுக்கவும் -SelectComponentsDesc=எந்த கூறுகளை நிறுவ வேண்டும்? -SelectComponentsLabel2=நீங்கள் நிறுவ விரும்பும் கூறுகளைத் தேர்ந்தெடுக்கவும்; நீங்கள் நிறுவ விரும்பாத கூறுகளை அழிக்கவும். தொடர நீங்கள் தயாராக இருக்கும்போது அடுத்து என்பதைக் சொடுக்குக. -FullInstallation=முழு நிறுவல் -; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) -CompactInstallation=இறுக்க நிறுவல் -CustomInstallation=தனிப்பயன் நிறுவல் -NoUninstallWarningTitle=கூறுகள் உள்ளன -NoUninstallWarning=உங்கள் கணினியில் பின்வரும் கூறுகள் ஏற்கனவே நிறுவப்பட்டுள்ளன என்பதை அமைவு கண்டறிந்துள்ளது:%n%n%1%n%nஇந்த கூறுகளை தேர்ந்துஎடுக்காமல் நிறுவுதல் அவற்றை நிறுவல் நீக்காது.%n%nநீங்கள் எப்படியும் தொடர விரும்புகிறீர்களா? -ComponentSize1=%1 கிபை -ComponentSize2=%1 மெபை -ComponentsDiskSpaceGBLabel=தற்போதைய தேர்வுக்கு வட்டு இடத்தின் குறைந்தபட்சம் [gb] சிபை தேவைப்படுகிறது. -ComponentsDiskSpaceMBLabel=தற்போதைய தேர்வுக்கு குறைந்தபட்சம் [mb] மெபை வட்டு இடம் தேவைப்படுகிறது. - -; *** "Select Additional Tasks" wizard page -WizardSelectTasks=கூடுதல் பணிகளைத் தேர்ந்தெடுக்கவும் -SelectTasksDesc=எந்த கூடுதல் பணிகள் செய்யப்பட வேண்டும்? -SelectTasksLabel2=[name]நிறுவும் போது நீங்கள் அமைக்க விரும்பும் கூடுதல் பணிகளைத் தேர்ந்தெடுக்கவும், பின்னர் அடுத்து என்பதைக் சொடுக்குக. - -; *** "Select Start Menu Folder" wizard page -WizardSelectProgramGroup=தொடக்க பட்டியல் கோப்புறையைத் தேர்ந்தெடுக்கவும் -SelectStartMenuFolderDesc=நிரலின் குறுக்குவழிகளை அமைக்கும் இடம் எங்கே? -SelectStartMenuFolderLabel3=அமைவு பின்வரும் தொடக்க பட்டியல் கோப்புறையில் நிரலின் குறுக்குவழிகளை உருவாக்கும். -SelectStartMenuFolderBrowseLabel=தொடர, அடுத்து என்பதைக் சொடுக்குக. நீங்கள் வேறு கோப்புறையைத் தேர்ந்தெடுக்க விரும்பினால், உலாவு என்பதைக் சொடுக்குக. -MustEnterGroupName=நீங்கள் ஒரு கோப்புறை பெயரை உள்ளிட வேண்டும். -GroupNameTooLong=கோப்புறை பெயர் அல்லது பாதை மிக நீளமானது. -InvalidGroupName=கோப்புறை பெயர் செல்லுபடியாகாது. -BadGroupName=கோப்புறை பெயரில் பின்வரும் எழுத்துக்கள் எதையும் சேர்க்க முடியாது:%n%n%1 -NoProgramGroupCheck2=தொடக்க பட்டியல் கோப்புறையை உருவாக்க வேண்டாம் - -; *** "Ready to Install" wizard page -WizardReady=நிறுவ தயாராக உள்ளது -ReadyLabel1=உங்கள் கணினியில் [name] நிறுவத் தொடங்க அமைவு இப்போது தயாராக உள்ளது. -ReadyLabel2a=நிறுவலைத் தொடர நிறுவு என்பதைக் சொடுக்குக, அல்லது எந்த அமைப்புகளையும் மதிப்பாய்வு செய்ய அல்லது மாற்ற விரும்பினால் பின் சொடுக்குக. -ReadyLabel2b=நிறுவலைத் தொடர நிறுவு என்பதைக் சொடுக்கு செய்க. -ReadyMemoUserInfo=பயனர் தகவல்: -ReadyMemoDir=இலக்கு இடம்: -ReadyMemoType=அமைவு வகை: -ReadyMemoComponents=தேர்ந்தெடுக்கப்பட்ட கூறுகள்: -ReadyMemoGroup=தொடக்கப்பட்டியல் கோப்புறை: -ReadyMemoTasks=கூடுதல் பணிகள்: - -; *** TDownloadWizardPage wizard page and DownloadTemporaryFile -DownloadingLabel=கூடுதல் கோப்புகளைப் பதிவிறக்குகிறது... -ButtonStopDownload=பதிவிறக்குவதை நிறுத்து -StopDownload=பதிவிறக்கத்தை நிறுத்த விரும்புகிறீர்களா? -ErrorDownloadAborted=பதிவிறக்கம் நிறுத்தப்பட்டது -ErrorDownloadFailed=பதிவிறக்கம் தோல்வியுற்றது: %1 %2 -ErrorDownloadSizeFailed=அளவு தோல்வியுற்றது: %1 %2 -ErrorFileHash1=கோப்பு ஆச் தோல்வியுற்றது: %1 -ErrorFileHash2=தவறான கோப்பு ஆச்: எதிர்பார்க்கப்பட்டது %1,காணப்பட்டது %2 -ErrorProgress=தவறான முன்னேற்றம்: %2 இல் %1 -ErrorFileSize=தவறான கோப்பு அளவு: எதிர்பார்க்கப்பட்டது %1, காணப்பட்டது %2 - -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=கூடுதல் கோப்புகளை பிரித்தெடுக்கிறது... -ButtonStopExtraction=பிரித்தெடுப்பதை நிறுத்து (&S) -StopExtraction=பிரித்தெடுப்பதை நிறுத்த விரும்புகிறீர்களா? -ErrorExtractionAborted=பிரித்தெடுத்தல் நிறுத்தப்பட்டது -ErrorExtractionFailed=பிரித்தெடுத்தல் தோல்வியடைந்தது: %1 - -; *** "Preparing to Install" wizard page -WizardPreparing=நிறுவ தயாராகி வருகிறது -PreparingDesc=உங்கள் கணினியில் [name] நிறுவ அமைவு தயாராகி வருகிறது. -PreviousInstallNotCompleted=முந்தைய நிரலின் நிறுவல்/அகற்றுதல் முடிக்கப்படவில்லை. அந்த நிறுவலை முடிக்க உங்கள் கணினியை மறுதொடக்கம் செய்ய வேண்டும்.%n%nஉங்கள் கணினியை மறுதொடக்கம் செய்த பிறகு, [name] நிறுவலை முடிக்க மீண்டும் அமைப்பை இயக்கவும். -CannotContinue=அமைப்பால் தொடர முடியாது. வெளியேற ரத்துசெய் என்பதைக் சொடுக்கு செய்க. -ApplicationsFound=பின்வரும் பயன்பாடுகள் அமைவு மூலம் புதுப்பிக்கப்பட வேண்டிய கோப்புகளைப் பயன்படுத்துகின்றன. இந்த பயன்பாடுகளை தானாக மூடுவதற்கு அமைப்பை அனுமதிக்க பரிந்துரைக்கப்படுகிறது. -ApplicationsFound2=பின்வரும் பயன்பாடுகள் அமைவு மூலம் புதுப்பிக்கப்பட வேண்டிய கோப்புகளைப் பயன்படுத்துகின்றன. இந்த பயன்பாடுகளை தானாக மூடுவதற்கு அமைப்பை அனுமதிக்க பரிந்துரைக்கப்படுகிறது. நிறுவல் முடிந்ததும், அமைவு பயன்பாடுகளை மறுதொடக்கம் செய்ய முயற்சிக்கும். -CloseApplications=பயன்பாட்டை தானாக மூடு -DontCloseApplications=பயன்பாட்டை மூட வேண்டாம் -ErrorCloseApplications=அனைத்து பயன்பாடுகளையும் தானாக மூடுவதற்கு அமைப்பால் முடியவில்லை. தொடர்வதற்கு முன் அமைப்பதன் மூலம் புதுப்பிக்கப்பட வேண்டிய கோப்புகளைப் பயன்படுத்தி அனைத்து பயன்பாடுகளையும் மூடுமாறு பரிந்துரைக்கப்படுகிறது. -PrepareToInstallNeedsRestart=அமைவு உங்கள் கணினியை மறுதொடக்கம் செய்ய வேண்டும். உங்கள் கணினியை மறுதொடக்கம் செய்த பிறகு, [name] நிறுவலை முடிக்க மீண்டும் அமைப்பை இயக்கவும்.%n%nநீங்கள் இப்போது மறுதொடக்கம் செய்ய விரும்புகிறீர்களா? - -; *** "Installing" wizard page -WizardInstalling=நிறுவுகிறது -InstallingLabel=உங்கள் கணினியில் அமைவு [name] நிறுவும் போது காத்திருங்கள் - -; *** "Setup Completed" wizard page -FinishedHeadingLabel=[name] அமைவு வழிகாட்டி நிறைவு -FinishedLabelNoIcons=அமைவு உங்கள் கணினியில் [name] நிறுவலை முடித்துவிட்டது. -FinishedLabel=அமைவு உங்கள் கணினியில் [name] நிறுவலை முடித்துவிட்டது. நிறுவப்பட்ட குறுக்குவழிகளைத் தேர்ந்தெடுப்பதன் மூலம் பயன்பாடு தொடங்கப்படலாம். -ClickFinish=அமைப்பிலிருந்து வெளியேற முடி என்பதைக் சொடுக்கவும். -FinishedRestartLabel=[name] நிறுவலை முடிக்க, அமைவு உங்கள் கணினியை மறுதொடக்கம் செய்ய வேண்டும். இப்போது மறுதொடக்கம் செய்ய விரும்புகிறீர்களா? -FinishedRestartMessage=[name] நிறுவலை முடிக்க, அமைவு உங்கள் கணினியை மறுதொடக்கம் செய்ய வேண்டும்.%n%n நீங்கள் இப்போது மறுதொடக்கம் செய்ய விரும்புகிறீர்களா? -ShowReadmeCheck=ஆம், நான் என்னைபடி கோப்பைக் காண விரும்புகிறேன் -YesRadio=ஆம், இப்போது கணினியை மறுதொடக்கம் செய் -NoRadio=இல்லை, நான் பின்னர் கணினியை மறுதொடக்கம் செய்வேன் -; used for example as 'Run MyProg.exe' -RunEntryExec=இயக்கு %1 -; used for example as 'View Readme.txt' -RunEntryShellExec=காண்க %1 - -; *** "Setup Needs the Next Disk" stuff -ChangeDiskTitle=Setup Needs the Next Disk -SelectDiskLabel2=தயவுசெய்து வட்டு%1 ஐச் செருகவும், பிறகு சரி என்பதைக் சொடுக்கவும்.%n%nஇந்த வட்டில் உள்ள கோப்புகளை கீழே காட்டப்பட்டுள்ளதைத் தவிர வேறு கோப்புறையில் காண்டால், சரியான பாதையை உள்ளிடவும் அல்லது உலாவலைக் சொடுக்கவும். -PathLabel=பாதை: -FileNotInDir2="%1" கோப்பை "%2" இல் கண்டுபிடிக்க முடியவில்லை. சரியான வட்டை செருகவும் அல்லது மற்றொரு கோப்புறையைத் தேர்ந்தெடுக்கவும். -SelectDirectoryLabel=அடுத்த வட்டின் இருப்பிடத்தைக் குறிப்பிடவும். - -; *** Installation phase messages -SetupAborted=அமைவு முடிக்கப்படவில்லை.%n%nசிக்கலை சரிசெய்து மீண்டும் அமைப்பை இயக்கவும்.. -AbortRetryIgnoreSelectAction=செயலைத் தேர்ந்தெடுக்கவும் -AbortRetryIgnoreRetry=மீண்டும் முயற்சிக்கவும் -AbortRetryIgnoreIgnore=பிழையை புறக்கணித்து தொடரவும் -AbortRetryIgnoreCancel=நிறுவலை கைவிடு - -; *** Installation status messages -StatusClosingApplications=பயன்பாடுகளை மூடுகிறது... -StatusCreateDirs=கோப்பகங்களை உருவாக்குதல்... -StatusExtractFiles=கோப்புகளை பிரித்தெடுக்கும்... -StatusCreateIcons=குறுக்குவழிகளை உருவாக்குதல்... -StatusCreateIniEntries=ஐஎன்ஐ உள்ளீடுகளை உருவாக்குகிறது... -StatusCreateRegistryEntries=பதிவேட்டில் உள்ளீடுகளை உருவாக்குதல்... -StatusRegisterFiles=கோப்புகளை பதிவு செய்தல்... -StatusSavingUninstall=நிறுவல் நீக்குதல் தகவல்களை சேமிக்கிறது... -StatusRunProgram=நிறுவலை முடித்தல்... -StatusRestartingApplications=பயன்பாடுகளை மறுதொடக்கம் செய்கிறது... -StatusRollback=மாற்றங்களை மீட்டிநீக்குகிறது... - -; *** Misc. errors -ErrorInternal2=உள் பிழை: %1 -ErrorFunctionFailedNoCode=%1 தோல்வியுற்றது -ErrorFunctionFailed=%1 தோல்வியுற்றது; குறியீடு %2 -ErrorFunctionFailedWithMessage=%1 தோல்வியுற்றது; குறியீடு %2.%n%3 -ErrorExecutingProgram=கோப்பை இயக்க முடியவில்லை:%n%1 - -; *** Registry errors -ErrorRegOpenKey=பதிவேட்டில் திறவுகோல் திறப்புப் பிழை:%n%1 \%2 -ErrorRegCreateKey=பதிவேட்டில் திறவுகோல் உருவாக்கும் பிழை:%n%1 \%2 -ErrorRegWriteKey=பதிவேட்டில் திறவுகோல் எழுதுதல் பிழை:%n%1 \%2 - -; *** INI errors -ErrorIniEntry="%1" கோப்பில் ஐஎன்ஐ உள்ளீட்டை உருவாக்குவது பிழை. - -; *** File copying errors -FileAbortRetryIgnoreSkipNotRecommended=இந்த கோப்பைத் தவிர் (பரிந்துரைக்கப்படவில்லை) -FileAbortRetryIgnoreIgnoreNotRecommended=பிழையை புறக்கணித்து தொடரவும் (பரிந்துரைக்கப்படவில்லை) -SourceIsCorrupted=மூல கோப்பு சிதைந்துள்ளது -SourceDoesntExist=மூல கோப்பு "%1" இல்லை -ExistingFileReadOnly2=தற்போதுள்ள கோப்பை மாற்ற முடியாது, ஏனெனில் அது படிக்க மட்டும் குறிக்கப்பட்டுள்ளது. -ExistingFileReadOnlyRetry=படிக்க மட்டும் பண்புக்கூறு அகற்றி மீண்டும் முயற்சிக்கவும் -ExistingFileReadOnlyKeepExisting=இருக்கும் கோப்பை வைத்திருங்கள் -ErrorReadingExistingDest=இருக்கும் கோப்பைப் படிக்க முயற்சிக்கும்போது பிழை ஏற்பட்டது: -FileExistsSelectAction=செயலைத் தேர்ந்தெடுக்கவும் -FileExists2=கோப்பு ஏற்கனவே உள்ளது. -FileExistsOverwriteExisting=இருக்கும் கோப்பை மேலெழுதவும் -FileExistsKeepExisting=இருக்கும் கோப்பை வைத்திருங்கள் -FileExistsOverwriteOrKeepAll=அடுத்த மோதலுக்கு இதைச் செய்யுங்கள் -ExistingFileNewerSelectAction=செயலைத் தேர்ந்தெடுக்கவும் -ExistingFileNewer2=ஒரு அமைப்பு நிறுவ முயற்சிப்பதை விட தற்போதுள்ள கோப்பு புதியது. -ExistingFileNewerOverwriteExisting=இருக்கும் கோப்பை மேலெழுதவும் -ExistingFileNewerKeepExisting=ஏற்கனவே உள்ள கோப்பை வைத்திருங்கள் (பரிந்துரைக்கப்படுகிறது) -ExistingFileNewerOverwriteOrKeepAll=அடுத்த மோதலுக்கு இதைச் செய்யுங்கள் -ErrorChangingAttr=இருக்கும் கோப்பின் பண்புகளை மாற்ற முயற்சிக்கும்போது பிழை ஏற்பட்டது: -ErrorCreatingTemp=இலக்கு கோப்பகத்தில் ஒரு கோப்பை உருவாக்க முயற்சிக்கும்போது பிழை ஏற்பட்டது: -ErrorReadingSource=மூல கோப்பைப் படிக்க முயற்சிக்கும்போது பிழை ஏற்பட்டது: -ErrorCopying=ஒரு கோப்பை நகலெடுக்க முயற்சிக்கும்போது பிழை ஏற்பட்டது: -ErrorReplacingExistingFile=தற்போதுள்ள கோப்பை மாற்ற முயற்சிக்கும்போது பிழை ஏற்பட்டது: -ErrorRestartReplace=மறுதுவக்கம்மாற்றம் தோல்வியுற்றது: -ErrorRenamingTemp=இலக்கு கோப்பகத்தில் ஒரு கோப்பை மறுபெயரிட முயற்சிக்கும்போது பிழை ஏற்பட்டது: -ErrorRegisterServer=DLL/OCX ஐ பதிவு செய்ய முடியவில்லை: %1 -ErrorRegSvr32Failed=வெளியேறும் குறியீடு %1 உடன் REGSVR32 தோல்வியடைந்தது -ErrorRegisterTypeLib=வகை நூலகத்தை பதிவு செய்ய முடியவில்லை: %1 - -; *** Uninstall display name markings -; used for example as 'My Program (32-bit)' -UninstallDisplayNameMark=%1 (%2) -; used for example as 'My Program (32-bit, All users)' -UninstallDisplayNameMarks=%1 (%2, %3) -UninstallDisplayNameMark32Bit=32-இருமம் -UninstallDisplayNameMark64Bit=64-இருமம் -UninstallDisplayNameMarkAllUsers=அனைத்து பயனர்களும் -UninstallDisplayNameMarkCurrentUser=தற்போதைய பயனர் - -; *** Post-installation errors -ErrorOpeningReadme=என்னைபடி கோப்பைத் திறக்க முயற்சிக்கும்போது பிழை ஏற்பட்டது. -ErrorRestartingComputer=அமைப்பால் கணினியை மறுதொடக்கம் செய்ய முடியவில்லை. தயவுசெய்து இதை கைமுறையாக செய்யுங்கள். - -; *** Uninstaller messages -UninstallNotFound="%1" கோப்பு இல்லை. நிறுவல் நீக்க முடியாது. -UninstallOpenError="%1" கோப்பு திறக்க முடியவில்லை. நிறுவல் நீக்க முடியாது -UninstallUnsupportedVer=நிறுவல் நீக்குபவரின் இந்த பதிப்பால் அங்கீகரிக்கப்படாத வடிவத்தில் நிறுவல் நீக்குதல் பதிவு கோப்பு "%1". நிறுவல் நீக்க முடியாது -UninstallUnknownEntry=நீக்குதல் பதிவில் அறியப்படாத நுழைவு (%1) எதிர்கொள்ளப்பட்டது -ConfirmUninstall=%1 மற்றும் அதன் அனைத்து கூறுகளையும் முழுவதுமாக அகற்ற விரும்புகிறீர்களா? -UninstallOnlyOnWin64=இந்த நிறுவலை 64-இரும சாளரங்களில் மட்டுமே நீக்க முடியும். -OnlyAdminCanUninstall=இந்த நிறுவலை நிர்வாக சலுகைகளைக் கொண்ட பயனரால் மட்டுமே நீக்க முடியும். -UninstallStatusLabel=உங்கள் கணினியிலிருந்து %1 அகற்றப்படும் போது காத்திருங்கள். -UninstalledAll=உங்கள் கணினியிலிருந்து %1 வெற்றிகரமாக அகற்றப்பட்டது. -UninstalledMost=%1 நீக்குதல் முழுமையானது.%n%nசில கூறுகளை அகற்ற முடியவில்லை. இவற்றை கைமுறையாக அகற்றலாம். -UninstalledAndNeedsRestart=%1 இன் நீக்குதலை முடிக்க, உங்கள் கணினி மறுதொடக்கம் செய்யப்பட வேண்டும்.%n%nநீங்கள் இப்போது மறுதொடக்கம் செய்ய விரும்புகிறீர்களா? -UninstallDataCorrupted="%1" கோப்பு சிதைந்துள்ளது. நீக்க முடியாது - -; *** Uninstallation phase messages -ConfirmDeleteSharedFileTitle=பகிரப்பட்ட கோப்பை அகற்றவா? -ConfirmDeleteSharedFile2=எந்தவொரு நிரலாலும் பின்வரும் பகிரப்பட்ட கோப்பு இனி பயன்பாட்டில் இல்லை என்பதை கணினி குறிக்கிறது. இந்த பகிரப்பட்ட கோப்பை நீக்க விரும்புகிறீர்களா?%n%nஎந்த நிரல்களும் இந்த கோப்பைப் பயன்படுத்தி , அது அகற்றப்பட்டால், அந்த நிரல்கள் சரியாக செயல்படாது. உங்களுக்குத் தெரியாவிட்டால், உங்கள் கணினியில் கோப்பை விட்டு வெளியேறுவது இல்லை என்பதைத் தேர்வுசெய்க. -SharedFileNameLabel=கோப்பு பெயர்: -SharedFileLocationLabel=இடம்: -WizardUninstalling=நீக்குதல் நிலை -StatusUninstalling=%1ஐ நீக்குகிறது... - -; *** Shutdown block reasons -ShutdownBlockReasonInstallingApp=%1ஐ நிறுவுகிறது. -ShutdownBlockReasonUninstallingApp=%1ஐ நீக்குகிறது.... - -; The custom messages below aren't used by Setup itself, but if you make -; use of them in your scripts, you'll want to translate them. - -[CustomMessages] - -NameAndVersion=%1 பதிப்பு %2 -AdditionalIcons=கூடுதல் குறுக்குவழிகள்: -CreateDesktopIcon=ஒரு திரைப்பலக குறுக்குவழியை உருவாக்கவும் -CreateQuickLaunchIcon=ஒரு விரைவான தொடக்க குறுக்குவழியை உருவாக்கவும் -ProgramOnTheWeb=வலையில் %1 -UninstallProgram=%1 நிறுவல் நீக்குதல் -LaunchProgram=%1 ஐத் தொடங்கவும் -AssocFileExtension=%1 ஐ %2 கோப்பு நீட்டிப்புடன் இணைக்கவும் -AssocingFileExtension=%1 ஐ %2 கோப்பு நீட்டிப்புடன் இணைத்தல்... -AutoStartProgramGroupDescription=தொடக்கம்: -AutoStartProgram=தானாகவே %1 ஐத் தொடங்கவும் -AddonHostProgramNotFound=நீங்கள் தேர்ந்தெடுத்த கோப்புறையில் %1 இருக்க முடியாது.%n%nநீங்கள் எப்படியும் தொடர விரும்புகிறீர்களா? diff --git a/bin/lib/innosetup/app/Languages/Turkish.isl b/bin/lib/innosetup/app/Languages/Turkish.isl deleted file mode 100644 index 4af6c6a..0000000 --- a/bin/lib/innosetup/app/Languages/Turkish.isl +++ /dev/null @@ -1,391 +0,0 @@ -; *** Inno Setup version 6.4.0+ Turkish messages *** -; Language "Turkce" Turkish Translate by "Ceviren" Kaya Zeren translator@zeron.net -; To download user-contributed translations of this file, go to: -; https://jrsoftware.org/files/istrans/ -; -; Note: When translating this text, do not add periods (.) to the end of -; messages that didn't have them already, because on those messages Inno -; Setup adds the periods automatically (appending a period would result in -; two periods being displayed). - -[LangOptions] -; The following three entries are very important. Be sure to read and -; understand the '[LangOptions] section' topic in the help file. -LanguageName=T<00FC>rk<00E7>e -LanguageID=$041f -LanguageCodePage=1254 -; If the language you are translating to requires special font faces or -; sizes, uncomment any of the following entries and change them accordingly. -;DialogFontName= -;DialogFontSize=8 -;WelcomeFontName=Verdana -;WelcomeFontSize=12 -;TitleFontName=Arial -;TitleFontSize=29 -;CopyrightFontName=Arial -;CopyrightFontSize=8 - -[Messages] - -; *** Uygulama başlıkları -SetupAppTitle=Kurulum yardımcısı -SetupWindowTitle=%1 - Kurulum yardımcısı -UninstallAppTitle=Kaldırma yardımcısı -UninstallAppFullTitle=%1 kaldırma yardımcısı - -; *** Çeşitli ortak metinler -InformationTitle=Bilgi -ConfirmTitle=Onay -ErrorTitle=Hata - -; *** Kurulum yükleyici iletileri -SetupLdrStartupMessage=%1 uygulaması kurulacak. İlerlemek istiyor musunuz? -LdrCannotCreateTemp=Geçici dosya oluşturulamadığından kurulum iptal edildi -LdrCannotExecTemp=Geçici klasördeki dosya çalıştırılamadığından kurulum iptal edildi -HelpTextNote= - -; *** Başlangıç hata iletileri -LastErrorMessage=%1.%n%nHata %2: %3 -SetupFileMissing=Kurulum klasöründe %1 dosyası eksik. Lütfen sorunu çözün ya da uygulamanın yeni bir kopyasıyla yeniden deneyin. -SetupFileCorrupt=Kurulum dosyaları bozulmuş. Lütfen uygulamanın yeni bir kopyasıyla yeniden kurmayı deneyin. -SetupFileCorruptOrWrongVer=Kurulum dosyaları bozulmuş ya da bu kurulum yardımcısı sürümü ile uyumlu değil. Lütfen sorunu çözün ya da uygulamanın yeni bir kopyasıyla yeniden kurmayı deneyin. -InvalidParameter=Komut satırında geçersiz bir parametre yazılmış:%n%n%1 -SetupAlreadyRunning=Kurulum yardımcısı zaten çalışıyor. -WindowsVersionNotSupported=Bu uygulama, bilgisayarınızda yüklü olan Windows sürümü ile uyumlu değil. -WindowsServicePackRequired=Bu uygulama, %1 hizmet paketi %2 ve üzerindeki sürümler ile çalışır. -NotOnThisPlatform=Bu uygulama, %1 üzerinde çalışmaz. -OnlyOnThisPlatform=Bu uygulama, %1 üzerinde çalıştırılmalıdır. -OnlyOnTheseArchitectures=Bu uygulama, yalnızca şu işlemci mimarileri için tasarlanmış Windows sürümleriyle çalışır:%n%n%1 -WinVersionTooLowError=Bu uygulama için %1 sürüm %2 ya da üzeri gereklidir. -WinVersionTooHighError=Bu uygulama, '%1' sürüm '%2' ya da üzerine kurulamaz. -AdminPrivilegesRequired=Bu uygulamayı kurmak için Yönetici yetkileri olan bir kullanıcı ile oturum açılmış olmalıdır. -PowerUserPrivilegesRequired=Bu uygulamayı kurarken, Yönetici ya da Güçlü Kullanıcılar grubundaki bir kullanıcı ile oturum açılmış olması gereklidir. -SetupAppRunningError=Kurulum yardımcısı %1 uygulamasının çalışmakta olduğunu algıladı.%n%nLütfen uygulamanın çalışan tüm kopyalarını kapatıp, ilerlemek için Tamam, kurulum yardımcısından çıkmak için İptal üzerine tıklayın. -UninstallAppRunningError=Kaldırma yardımcısı, %1 uygulamasının çalışmakta olduğunu algıladı.%n%nLütfen uygulamanın çalışan tüm kopyalarını kapatıp, ilerlemek için Tamam ya da kaldırma yardımcısından çıkmak için İptal üzerine tıklayın. - -; *** Başlangıç soruları -PrivilegesRequiredOverrideTitle=Kurulum kipini seçin -PrivilegesRequiredOverrideInstruction=Kurulum kipini seçin -PrivilegesRequiredOverrideText1=%1 tüm kullanıcılar için (yönetici izinleri gerekir) ya da yalnızca sizin hesabınız için kurulabilir. -PrivilegesRequiredOverrideText2=%1 yalnızca sizin hesabınız için ya da tüm kullanıcılar için (yönetici izinleri gerekir) kurulabilir. -PrivilegesRequiredOverrideAllUsers=&Tüm kullanıcılar için kurulsun -PrivilegesRequiredOverrideAllUsersRecommended=&Tüm kullanıcılar için kurulsun (önerilir) -PrivilegesRequiredOverrideCurrentUser=&Yalnızca geçerli kullanıcı için kurulsun -PrivilegesRequiredOverrideCurrentUserRecommended=&Yalnızca geçerli kullanıcı için kurulsun (önerilir) - -; *** Çeşitli hata metinleri -ErrorCreatingDir=Kurulum yardımcısı "%1" klasörünü oluşturamadı. -ErrorTooManyFilesInDir="%1" klasörü içinde çok sayıda dosya olduğundan bir dosya oluşturulamadı - -; *** Ortak kurulum iletileri -ExitSetupTitle=Kurulum yardımcısından çık -ExitSetupMessage=Kurulum tamamlanmadı. Şimdi çıkarsanız, uygulama kurulmayacak.%n%nKurulumu tamamlamak için istediğiniz zaman kurulum yardımcısını yeniden çalıştırabilirsiniz.%n%nKurulum yardımcısından çıkılsın mı? -AboutSetupMenuItem=Kurulum h&akkında... -AboutSetupTitle=Kurulum hakkında -AboutSetupMessage=%1 %2 sürümü%n%3%n%n%1 ana sayfa:%n%4 -AboutSetupNote= -TranslatorNote= - -; *** Düğmeler -ButtonBack=< Ö&nceki -ButtonNext=&Sonraki > -ButtonInstall=&Kur -ButtonOK=Tamam -ButtonCancel=İptal -ButtonYes=E&vet -ButtonYesToAll=&Tümüne evet -ButtonNo=&Hayır -ButtonNoToAll=Tümüne ha&yır -ButtonFinish=&Bitti -ButtonBrowse=&Göz at... -ButtonWizardBrowse=Göz a&t... -ButtonNewFolder=Ye&ni klasör oluştur - -; *** "Kurulum dilini seçin" sayfası iletileri -SelectLanguageTitle=Kurulum Yardımcısı dilini seçin -SelectLanguageLabel=Kurulum süresince kullanılacak dili seçin. - -; *** Ortak metinler -ClickNext=İlerlemek için Sonraki, çıkmak için İptal üzerine tıklayın. -BeveledLabel= -BrowseDialogTitle=Klasöre göz at -BrowseDialogLabel=Aşağıdaki listeden bir klasör seçip, Tamam üzerine tıklayın. -NewFolderName=Yeni klasör - -; *** "Karşılama" sayfası -WelcomeLabel1=[name] Kurulum yardımcısına hoş geldiniz. -WelcomeLabel2=Bilgisayarınıza [name/ver] uygulaması kurulacak.%n%nİlerlemeden önce çalışan diğer tüm uygulamaları kapatmanız önerilir. - -; *** "Parola" sayfası -WizardPassword=Parola -PasswordLabel1=Bu kurulum parola korumalıdır. -PasswordLabel3=Lütfen parolayı yazın ve ilerlemek için Sonraki üzerine tıklayın. Parolalar büyük küçük harflere duyarlıdır. -PasswordEditLabel=&Parola: -IncorrectPassword=Yazdığınız parola doğru değil. Lütfen yeniden deneyin. - -; *** "Lisans anlaşması" sayfası -WizardLicense=Lisans anlaşması -LicenseLabel=Lütfen ilerlemeden önce aşağıdaki önemli bilgileri okuyun. -LicenseLabel3=Lütfen aşağıdaki lisans anlaşmasını okuyun. Uygulamayı kurmak için bu anlaşmayı kabul etmelisiniz. -LicenseAccepted=Anlaşmayı kabul &ediyorum. -LicenseNotAccepted=Anlaşmayı kabul et&miyorum. - -; *** "Bilgiler" sayfası -WizardInfoBefore=Bilgiler -InfoBeforeLabel=Lütfen ilerlemeden önce aşağıdaki önemli bilgileri okuyun. -InfoBeforeClickLabel=Uygulamayı kurmaya hazır olduğunuzda Sonraki üzerine tıklayın. -WizardInfoAfter=Bilgiler -InfoAfterLabel=Lütfen ilerlemeden önce aşağıdaki önemli bilgileri okuyun. -InfoAfterClickLabel=Uygulamayı kurmaya hazır olduğunuzda Sonraki üzerine tıklayın. - -; *** "Kullanıcı bilgileri" sayfası -WizardUserInfo=Kullanıcı bilgileri -UserInfoDesc=Lütfen bilgilerinizi yazın. -UserInfoName=K&ullanıcı adı: -UserInfoOrg=Ku&rum: -UserInfoSerial=&Seri numarası: -UserInfoNameRequired=Bir ad yazmalısınız. - -; *** "Kurulum konumunu seçin" sayfası -WizardSelectDir=Kurulum konumunu seçin -SelectDirDesc=[name] nereye kurulsun? -SelectDirLabel3=[name] uygulaması şu klasöre kurulacak. -SelectDirBrowseLabel=İlerlemek icin Sonraki üzerine tıklayın. Farklı bir klasör seçmek için Göz at üzerine tıklayın. -DiskSpaceGBLabel=En az [gb] GB boş disk alanı gereklidir. -DiskSpaceMBLabel=En az [mb] MB boş disk alanı gereklidir. -CannotInstallToNetworkDrive=Uygulama bir ağ sürücüsü üzerine kurulamaz. -CannotInstallToUNCPath=Uygulama bir UNC yolu üzerine (\\yol gibi) kurulamaz. -InvalidPath=Sürücü adı ile tam yolu yazmalısınız. Örnek: %n%nC:\APP%n%n ya da şu şekilde bir UNC yolu:%n%n\\sunucu\paylaşım -InvalidDrive=Sürücü ya da UNC paylaşımı yok ya da erişilemiyor. Lütfen başka bir tane seçin. -DiskSpaceWarningTitle=Yeterli boş disk alanı yok -DiskSpaceWarning=Kurulum için %1 KB boş alan gerekli, ancak seçilmiş sürücüde yalnızca %2 KB boş alan var.%n%nGene de ilerlemek istiyor musunuz? -DirNameTooLong=Klasör adı ya da yol çok uzun. -InvalidDirName=Klasör adı geçersiz. -BadDirName32=Klasör adlarında şu karakterler bulunamaz:%n%n%1 -DirExistsTitle=Klasör zaten var -DirExists=Klasör:%n%n%1%n%nzaten var. Kurulum için bu klasörü kullanmak ister misiniz? -DirDoesntExistTitle=Klasör bulunamadı -DirDoesntExist=Klasör:%n%n%1%n%nbulunamadı.Klasörün oluşturmasını ister misiniz? - -; *** "Bileşenleri seçin" sayfası -WizardSelectComponents=Bileşenleri seçin -SelectComponentsDesc=Hangi bileşenler kurulacak? -SelectComponentsLabel2=Kurmak istediğiniz bileşenleri seçin; kurmak istemediğiniz bileşenlerin işaretini kaldırın. İlerlemeye hazır olduğunuzda Sonraki üzerine tıklayın. -FullInstallation=Tam kurulum -; Olabiliyorsa 'Compact' ifadesini kendi dilinizde 'Minimal' anlamında çevirmeyin -CompactInstallation=Normal kurulum -CustomInstallation=Özel kurulum -NoUninstallWarningTitle=Bileşenler zaten var -NoUninstallWarning=Şu bileşenlerin bilgisayarınızda zaten kurulu olduğu algılandı:%n%n%1%n%n Bu bileşenlerin işaretlerinin kaldırılması bileşenleri kaldırmaz.%n%nGene de ilerlemek istiyor musunuz? -ComponentSize1=%1 KB -ComponentSize2=%1 MB -ComponentsDiskSpaceGBLabel=Seçilmiş bileşenler için diskte en az [gb] GB boş alan bulunması gerekli. -ComponentsDiskSpaceMBLabel=Seçilmiş bileşenler için diskte en az [mb] MB boş alan bulunması gerekli. - -; *** "Ek işlemleri seçin" sayfası -WizardSelectTasks=Ek işlemleri seçin -SelectTasksDesc=Başka hangi işlemler yapılsın? -SelectTasksLabel2=[name] kurulumu sırasında yapılmasını istediğiniz ek işleri seçin ve Sonraki üzerine tıklayın. - -; *** "Başlat menüsü klasörünü seçin" sayfası -WizardSelectProgramGroup=Başlat menüsü klasörünü seçin -SelectStartMenuFolderDesc=Uygulamanın kısayolları nereye eklensin? -SelectStartMenuFolderLabel3=Kurulum yardımcısı uygulama kısayollarını aşağıdaki Başlat menüsü klasörüne ekleyecek. -SelectStartMenuFolderBrowseLabel=İlerlemek için Sonraki üzerine tıklayın. Farklı bir klasör seçmek için Göz at üzerine tıklayın. -MustEnterGroupName=Bir klasör adı yazmalısınız. -GroupNameTooLong=Klasör adı ya da yol çok uzun. -InvalidGroupName=Klasör adı geçersiz. -BadGroupName=Klasör adında şu karakterler bulunamaz:%n%n%1 -NoProgramGroupCheck2=Başlat menüsü klasörü &oluşturulmasın - -; *** "Kurulmaya hazır" sayfası -WizardReady=Kurulmaya hazır -ReadyLabel1=[name] bilgisayarınıza kurulmaya hazır. -ReadyLabel2a=Kuruluma başlamak için Sonraki üzerine, ayarları gözden geçirip değiştirmek için Önceki üzerine tıklayın. -ReadyLabel2b=Kuruluma başlamak için Sonraki üzerine tıklayın. -ReadyMemoUserInfo=Kullanıcı bilgileri: -ReadyMemoDir=Kurulum konumu: -ReadyMemoType=Kurulum türü: -ReadyMemoComponents=Seçilmiş bileşenler: -ReadyMemoGroup=Başlat menüsü klasörü: -ReadyMemoTasks=Ek işlemler: - -; *** TDownloadWizardPage wizard page and DownloadTemporaryFile -DownloadingLabel=Ek dosyalar indiriliyor... -ButtonStopDownload=İndirmeyi &durdur -StopDownload=İndirmeyi durdurmak istediğinize emin misiniz? -ErrorDownloadAborted=İndirme durduruldu -ErrorDownloadFailed=İndirilemedi: %1 %2 -ErrorDownloadSizeFailed=Boyut alınamadı: %1 %2 -ErrorFileHash1=Dosya karması doğrulanamadı: %1 -ErrorFileHash2=Dosya karması geçersiz: %1 olması gerekirken %2 -ErrorProgress=Adım geçersiz: %1 / %2 -ErrorFileSize=Dosya boyutu geçersiz: %1 olması gerekirken %2 - -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Ek dosyalar ayıklanıyor... -ButtonStopExtraction=Ayıklamayı &durdur -StopExtraction=Ayıklamayı durdurmak istediğinize emin misiniz? -ErrorExtractionAborted=Ayıklama durduruldu -ErrorExtractionFailed=Ayıklanamadı: %1 - -; *** "Kuruluma hazırlanılıyor" sayfası -WizardPreparing=Kuruluma hazırlanılıyor -PreparingDesc=[name] bilgisayarınıza kurulmaya hazırlanıyor. -PreviousInstallNotCompleted=Önceki uygulama kurulumu ya da kaldırılması tamamlanmamış. Bu kurulumun tamamlanması için bilgisayarınızı yeniden başlatmalısınız.%n%nBilgisayarınızı yeniden başlattıktan sonra işlemi tamamlamak için [name] kurulum yardımcısını yeniden çalıştırın. -CannotContinue=Kurulum yapılamadı. Çıkmak için İptal üzerine tıklayın. -ApplicationsFound=Kurulum yardımcısı tarafından güncellenmesi gereken dosyalar, şu uygulamalar tarafından kullanıyor. Kurulum yardımcısının bu uygulamaları otomatik olarak kapatmasına izin vermeniz önerilir. -ApplicationsFound2=Kurulum yardımcısı tarafından güncellenmesi gereken dosyalar, şu uygulamalar tarafından kullanıyor. Kurulum yardımcısının bu uygulamaları otomatik olarak kapatmasına izin vermeniz önerilir. Kurulum tamamlandıktan sonra, uygulamalar yeniden başlatılmaya çalışılacak. -CloseApplications=&Uygulamalar kapatılsın -DontCloseApplications=Uygulamalar &kapatılmasın -ErrorCloseApplications=Kurulum yardımcısı uygulamaları kapatamadı. Kurulum yardımcısı tarafından güncellenmesi gereken dosyaları kullanan uygulamaları el ile kapatmanız önerilir. -PrepareToInstallNeedsRestart=Kurulum için bilgisayarın yeniden başlatılması gerekiyor. Bilgisayarı yeniden başlattıktan sonra [name] kurulumunu tamamlamak için kurulum yardımcısını yeniden çalıştırın.%n%nBilgisayarı şimdi yeniden başlatmak ister misiniz? - -; *** "Kuruluyor" sayfası -WizardInstalling=Kuruluyor -InstallingLabel=Lütfen [name] bilgisayarınıza kurulurken bekleyin. - -; *** "Kurulum Tamamlandı" sayfası -FinishedHeadingLabel=[name] kurulum yardımcısı tamamlanıyor -FinishedLabelNoIcons=Bilgisayarınıza [name] kurulumu tamamlandı. -FinishedLabel=Bilgisayarınıza [name] kurulumu tamamlandı. Simgeleri yüklemeyi seçtiyseniz, simgelere tıklayarak uygulamayı başlatabilirsiniz. -ClickFinish=Kurulum yardımcısından çıkmak için Bitti üzerine tıklayın. -FinishedRestartLabel=[name] kurulumunun tamamlanması için, bilgisayarınız yeniden başlatılmalı. Şimdi yeniden başlatmak ister misiniz? -FinishedRestartMessage=[name] kurulumunun tamamlanması için, bilgisayarınız yeniden başlatılmalı.%n%nŞimdi yeniden başlatmak ister misiniz? -ShowReadmeCheck=Evet README dosyası görüntülensin -YesRadio=&Evet, bilgisayar şimdi yeniden başlatılsın -NoRadio=&Hayır, bilgisayarı daha sonra yeniden başlatacağım -; used for example as 'Run MyProg.exe' -RunEntryExec=%1 çalıştırılsın -; used for example as 'View Readme.txt' -RunEntryShellExec=%1 görüntülensin - -; *** "Kurulum için sıradaki disk gerekli" iletileri -ChangeDiskTitle=Kurulum yardımcısı sıradaki diske gerek duyuyor -SelectDiskLabel2=Lütfen %1 numaralı diski takıp Tamam üzerine tıklayın.%n%nDiskteki dosyalar aşağıdakinden farklı bir klasörde bulunuyorsa, doğru yolu yazın ya da Göz at üzerine tıklayarak doğru klasörü seçin. -PathLabel=&Yol: -FileNotInDir2="%1" dosyası "%2" içinde bulunamadı. Lütfen doğru diski takın ya da başka bir klasör seçin. -SelectDirectoryLabel=Lütfen sonraki diskin konumunu belirtin. - -; *** Kurulum aşaması iletileri -SetupAborted=Kurulum tamamlanamadı.%n%nLütfen sorunu düzelterek kurulum yardımcısını yeniden çalıştırın. -AbortRetryIgnoreSelectAction=Yapılacak işlemi seçin -AbortRetryIgnoreRetry=&Yeniden denensin -AbortRetryIgnoreIgnore=&Sorun yok sayılıp ilerlensin -AbortRetryIgnoreCancel=Kurulum iptal edilsin - -; *** Kurulum durumu iletileri -StatusClosingApplications=Uygulamalar kapatılıyor... -StatusCreateDirs=Klasörler oluşturuluyor... -StatusExtractFiles=Dosyalar ayıklanıyor... -StatusCreateIcons=Kısayollar oluşturuluyor... -StatusCreateIniEntries=INI kayıtları oluşturuluyor... -StatusCreateRegistryEntries=Kayıt Defteri kayıtları oluşturuluyor... -StatusRegisterFiles=Dosyalar kaydediliyor... -StatusSavingUninstall=Kaldırma bilgileri kaydediliyor... -StatusRunProgram=Kurulum tamamlanıyor... -StatusRestartingApplications=Uygulamalar yeniden başlatılıyor... -StatusRollback=Değişiklikler geri alınıyor... - -; *** Çeşitli hata iletileri -ErrorInternal2=İç hata: %1 -ErrorFunctionFailedNoCode=%1 tamamlanamadı. -ErrorFunctionFailed=%1 tamamlanamadı; kod %2 -ErrorFunctionFailedWithMessage=%1 tamamlanamadı; kod %2.%n%3 -ErrorExecutingProgram=Şu dosya yürütülemedi:%n%1 - -; *** Kayıt defteri hataları -ErrorRegOpenKey=Kayıt defteri anahtarı açılırken bir sorun çıktı:%n%1%2 -ErrorRegCreateKey=Kayıt defteri anahtarı eklenirken bir sorun çıktı:%n%1%2 -ErrorRegWriteKey=Kayıt defteri anahtarı yazılırken bir sorun çıktı:%n%1%2 - -; *** INI hataları -ErrorIniEntry="%1" dosyasına INI kaydı eklenirken bir sorun çıktı. - -; *** Dosya kopyalama hataları -FileAbortRetryIgnoreSkipNotRecommended=&Bu dosya atlansın (önerilmez) -FileAbortRetryIgnoreIgnoreNotRecommended=&Sorun yok sayılıp ilerlensin (önerilmez) -SourceIsCorrupted=Kaynak dosya bozulmuş -SourceDoesntExist="%1" kaynak dosyası bulunamadı -ExistingFileReadOnly2=Var olan dosya salt okunabilir olarak işaretlenmiş olduğundan üzerine yazılamadı. -ExistingFileReadOnlyRetry=&Salt okunur işareti kaldırılıp yeniden denensin -ExistingFileReadOnlyKeepExisting=&Var olan dosya korunsun -ErrorReadingExistingDest=Var olan dosya okunmaya çalışılırken bir sorun çıktı. -FileExistsSelectAction=Yapılacak işlemi seçin -FileExists2=Dosya zaten var. -FileExistsOverwriteExisting=&Var olan dosyanın üzerine yazılsın -FileExistsKeepExisting=Var &olan dosya korunsun -FileExistsOverwriteOrKeepAll=&Sonraki çakışmalarda da bu işlem yapılsın -ExistingFileNewerSelectAction=Yapılacak işlemi seçin -ExistingFileNewer2=Var olan dosya, kurulum yardımcısı tarafından yazılmaya çalışılandan daha yeni. -ExistingFileNewerOverwriteExisting=&Var olan dosyanın üzerine yazılsın -ExistingFileNewerKeepExisting=Var &olan dosya korunsun (önerilir) -ExistingFileNewerOverwriteOrKeepAll=&Sonraki çakışmalarda bu işlem yapılsın -ErrorChangingAttr=Var olan dosyanın öznitelikleri değiştirilirken bir sorun çıktı: -ErrorCreatingTemp=Kurulum klasöründe bir dosya oluşturulurken sorun çıktı: -ErrorReadingSource=Kaynak dosya okunurken sorun çıktı: -ErrorCopying=Dosya kopyalanırken sorun çıktı: -ErrorReplacingExistingFile=Var olan dosya değiştirilirken sorun çıktı: -ErrorRestartReplace=Yeniden başlatmada üzerine yazılamadı: -ErrorRenamingTemp=Kurulum klasöründeki bir dosyanın adı değiştirilirken sorun çıktı: -ErrorRegisterServer=DLL/OCX kayıt edilemedi: %1 -ErrorRegSvr32Failed=RegSvr32 işlemi şu kod ile tamamlanamadı: %1 -ErrorRegisterTypeLib=Tür kitaplığı kayıt defterine eklenemedi: %1 - -; *** Kaldırma sırasında görüntülenecek ad işaretleri -; used for example as 'My Program (32-bit)' -UninstallDisplayNameMark=%1 (%2) -; used for example as 'My Program (32-bit, All users)' -UninstallDisplayNameMarks=%1 (%2, %3) -UninstallDisplayNameMark32Bit=32 bit -UninstallDisplayNameMark64Bit=64 bit -UninstallDisplayNameMarkAllUsers=Tüm kullanıcılar -UninstallDisplayNameMarkCurrentUser=Geçerli kullanıcı - -; *** Kurulum sonrası hataları -ErrorOpeningReadme=README dosyası açılırken sorun çıktı. -ErrorRestartingComputer=Kurulum yardımcısı bilgisayarınızı yeniden başlatamıyor. Lütfen bilgisayarınızı yeniden başlatın. - -; *** Kaldırma yardımcısı iletileri -UninstallNotFound="%1" dosyası bulunamadı. Uygulama kaldırılamıyor. -UninstallOpenError="%1" dosyası açılamadı. Uygulama kaldırılamıyor. -UninstallUnsupportedVer="%1" uygulama kaldırma günlük dosyasının biçimi, bu kaldırma yardımcısı sürümü tarafından anlaşılamadı. Uygulama kaldırılamıyor. -UninstallUnknownEntry=Kaldırma günlüğünde bilinmeyen bir kayıt (%1) bulundu. -ConfirmUninstall=%1 uygulamasını tüm bileşenleri ile birlikte tamamen kaldırmak istediğinize emin misiniz? -UninstallOnlyOnWin64=Bu kurulum yalnızca 64 bit Windows üzerinden kaldırılabilir. -OnlyAdminCanUninstall=Bu kurulum yalnızca yönetici yetkileri olan bir kullanıcı tarafından kaldırılabilir. -UninstallStatusLabel=Lütfen %1 uygulaması bilgisayarınızdan kaldırılırken bekleyin. -UninstalledAll=%1 uygulaması bilgisayarınızdan kaldırıldı. -UninstalledMost=%1 uygulaması kaldırıldı.%n%nBazı bileşenler kaldırılamadı. Bunları el ile silebilirsiniz. -UninstalledAndNeedsRestart=%1 kaldırma işleminin tamamlanması için bilgisayarınızın yeniden başlatılması gerekli.%n%nŞimdi yeniden başlatmak ister misiniz? -UninstallDataCorrupted="%1" dosyası bozulmuş. Kaldırılamıyor. - -; *** Kaldırma aşaması iletileri -ConfirmDeleteSharedFileTitle=Paylaşılan dosya silinsin mi? -ConfirmDeleteSharedFile2=Sisteme göre, paylaşılan şu dosya başka bir uygulama tarafından kullanılmıyor ve kaldırılabilir. Bu paylaşılmış dosyayı silmek ister misiniz?%n%nBu dosya, başka herhangi bir uygulama tarafından kullanılıyor ise, silindiğinde diğer uygulama düzgün çalışmayabilir. Emin değilseniz Hayır üzerine tıklayın. Dosyayı sisteminizde bırakmanın bir zararı olmaz. -SharedFileNameLabel=Dosya adı: -SharedFileLocationLabel=Konum: -WizardUninstalling=Kaldırma durumu -StatusUninstalling=%1 kaldırılıyor... - -; *** Kapatmayı engelleme nedenleri -ShutdownBlockReasonInstallingApp=%1 kuruluyor. -ShutdownBlockReasonUninstallingApp=%1 kaldırılıyor. - -; The custom messages below aren't used by Setup itself, but if you make -; use of them in your scripts, you'll want to translate them. - -[CustomMessages] - -NameAndVersion=%1 %2 sürümü -AdditionalIcons=Ek simgeler: -CreateDesktopIcon=Masaüstü simg&esi oluşturulsun -CreateQuickLaunchIcon=Hızlı başlat simgesi &oluşturulsun -ProgramOnTheWeb=%1 sitesi -UninstallProgram=%1 uygulamasını kaldır -LaunchProgram=%1 uygulamasını çalıştır -AssocFileExtension=%1 &uygulaması ile %2 dosya uzantısı ilişkilendirilsin -AssocingFileExtension=%1 uygulaması ile %2 dosya uzantısı ilişkilendiriliyor... -AutoStartProgramGroupDescription=Başlangıç: -AutoStartProgram=%1 otomatik olarak başlatılsın -AddonHostProgramNotFound=%1 seçtiğiniz klasörde bulunamadı.%n%nYine de ilerlemek istiyor musunuz? diff --git a/bin/lib/innosetup/app/Languages/Ukrainian.isl b/bin/lib/innosetup/app/Languages/Ukrainian.isl deleted file mode 100644 index 125987e..0000000 --- a/bin/lib/innosetup/app/Languages/Ukrainian.isl +++ /dev/null @@ -1,383 +0,0 @@ -; *** Inno Setup version 6.4.0+ Ukrainian messages *** -; Author: Dmytro Onyshchuk -; E-Mail: mrlols3@gmail.com -; Please report all spelling/grammar errors, and observations. -; Version 2020.08.04 -; Updated and Reviewed on 24.12.2024 by Sergii Leonov (5IM0f0R@ukr.net) - -; *** Український переклад Inno Setup для версії 6.4.0 та вище*** -; Автор перекладу: Дмитро Онищук -; E-Mail: mrlols3@gmail.com -; Будь ласка, повідомляйте про всі знайдені помилки та зауваження. -; Версія перекладу 2020.08.04 -; Оновлено та переглянуто 24.12.2024, Сергій Леонов (5IM0f0R@ukr.net) - -[LangOptions] -LanguageName=<0423><043A><0440><0430><0457><043D><0441><044C><043A><0430> -LanguageID=$0422 -LanguageCodePage=1251 - -[Messages] - -; *** Application titles -SetupAppTitle=Встановлення -SetupWindowTitle=Встановлення — %1 -UninstallAppTitle=Видалення -UninstallAppFullTitle=Видалення — %1 - -; *** Misc. common -InformationTitle=Інформація -ConfirmTitle=Підтвердження -ErrorTitle=Помилка - -; *** SetupLdr messages -SetupLdrStartupMessage=Ця програма встановить %1 на ваш комп'ютер, бажаєте продовжити? -LdrCannotCreateTemp=Неможливо створити тимчасовий файл. Встановлення перервано -LdrCannotExecTemp=Неможливо виконати файл в тимчасовій папці. Встановлення перервано -HelpTextNote= - -; *** Startup error messages -LastErrorMessage=%1.%n%nПомилка %2: %3 -SetupFileMissing=Файл %1 відсутній в папці встановлення. Будь ласка, виправте цю помилку або отримайте нову копію програми. -SetupFileCorrupt=Файли встановлення пошкоджені. Будь ласка, отримайте нову копію програми. -SetupFileCorruptOrWrongVer=Файли встановлення пошкоджені або несумісні з цією версією програми встановлення. Будь ласка, виправте цю помилку або отримайте нову копію програми. -InvalidParameter=Командний рядок містить недопустимий параметр:%n%n%1 -SetupAlreadyRunning=Програма встановлення вже запущена. -WindowsVersionNotSupported=Ця програма не підтримує версію Windows, встановлену на цьому комп'ютері. -WindowsServicePackRequired=Ця програма вимагає %1 Service Pack %2 або більш пізню версію. -NotOnThisPlatform=Ця програма не буде працювати під %1. -OnlyOnThisPlatform=Ця програма повинна бути відкрита під %1. -OnlyOnTheseArchitectures=Ця програма може бути встановлена лише на комп'ютерах під управлінням Windows для наступних архітектур процесорів:%n%n%1 -WinVersionTooLowError=Ця програма вимагає %1 версії %2 або більш пізню версію. -WinVersionTooHighError=Ця програма не може бути встановлена на %1 версії %2 або більш пізню версію. -AdminPrivilegesRequired=Щоб встановити цю програму ви повинні увійти до системи як адміністратор. -PowerUserPrivilegesRequired=Щоб встановити цю програму ви повинні увійти до системи як адміністратор або як член групи «Досвідчені користувачі». -SetupAppRunningError=Виявлено, що %1 вже відкрита.%n%nБудь ласка, закрийте всі копії програми та натисніть «OK» для продовження, або «Скасувати» для виходу. -UninstallAppRunningError=Виявлено, що %1 вже відкрита.%n%nБудь ласка, закрийте всі копії програми та натисніть «OK» для продовження, або «Скасувати» для виходу. - -; *** Startup questions -PrivilegesRequiredOverrideTitle=Вибір режиму встановлення -PrivilegesRequiredOverrideInstruction=Виберіть режим встановлення -PrivilegesRequiredOverrideText1=%1 може бути встановлено для всіх користувачів (потребує права адміністратора), або тільки для вас. -PrivilegesRequiredOverrideText2=%1 може бути встановлено тільки для вас, або для всіх користувачів (потребує права адміністратора). -PrivilegesRequiredOverrideAllUsers=Встановити для &всіх користувачів -PrivilegesRequiredOverrideAllUsersRecommended=Встановити для &всіх користувачів (рекомендується) -PrivilegesRequiredOverrideCurrentUser=Встановити тільки для мене -PrivilegesRequiredOverrideCurrentUserRecommended=Встановити тільки для &мене (рекомендується) - -; *** Misc. errors -ErrorCreatingDir=Програмі встановлення не вдалося створити папку "%1" -ErrorTooManyFilesInDir=Програмі встановлення не вдалося створити файл в папці "%1", тому що в ньому занадто багато файлів - -; *** Setup common messages -ExitSetupTitle=Вихід з програми встановлення -ExitSetupMessage=Встановлення не завершено. Якщо ви вийдете зараз, програму не буде встановлено.%n%nВи можете відкрити програму встановлення в іншим часом.%n%nВийти з програми встановлення? -AboutSetupMenuItem=&Про програму встановлення... -AboutSetupTitle=Про програму встановлення -AboutSetupMessage=%1 версія %2%n%3%n%n%1 домашня сторінка:%n%4 -AboutSetupNote= -TranslatorNote=Ukrainian translation by Dmytro Onyshchuk - -; *** Buttons -ButtonBack=< &Назад -ButtonNext=&Далі > -ButtonInstall=&Встановити -ButtonOK=OK -ButtonCancel=Скасувати -ButtonYes=&Так -ButtonYesToAll=Так для &Всіх -ButtonNo=&Ні -ButtonNoToAll=Н&і для Всіх -ButtonFinish=&Готово -ButtonBrowse=&Огляд... -ButtonWizardBrowse=О&гляд... -ButtonNewFolder=&Створити папку - -; *** "Select Language" dialog messages -SelectLanguageTitle=Виберіть мову встановлення -SelectLanguageLabel=Виберіть мову, яка буде використовуватися під час встановлення. - -; *** Common wizard text -ClickNext=Натисніть «Далі», щоб продовжити, або «Скасувати» для виходу з програми встановлення. -BeveledLabel= -BrowseDialogTitle=Огляд папок -BrowseDialogLabel=Виберіть папку зі списку та натисніть «ОК». -NewFolderName=Нова папка - -; *** "Welcome" wizard page -WelcomeLabel1=Ласкаво просимо до програми встановлення [name] -WelcomeLabel2=Ця програма встановить [name/ver] на ваш комп’ютер.%n%nРекомендується закрити всі інші програми перед продовженням. - -; *** "Password" wizard page -WizardPassword=Пароль -PasswordLabel1=Ця програма встановлення захищена паролем. -PasswordLabel3=Будь ласка, введіть пароль та натисніть «Далі», щоб продовжити. Пароль чутливий до регістру. -PasswordEditLabel=&Пароль: -IncorrectPassword=Ви ввели неправильний пароль. Будь ласка, спробуйте ще раз. - -; *** "License Agreement" wizard page -WizardLicense=Ліцензійна угода -LicenseLabel=Будь ласка, прочитайте ліцензійну угоду. -LicenseLabel3=Будь ласка, прочитайте ліцензійну угоду. Ви повинні прийняти умови цієї угоди, перш ніж продовжити встановлення. -LicenseAccepted=Я &приймаю умови угоди -LicenseNotAccepted=Я &не приймаю умови угоди - -; *** "Information" wizard pages -WizardInfoBefore=Інформація -InfoBeforeLabel=Будь ласка, прочитайте наступну важливу інформацію, перш ніж продовжити. -InfoBeforeClickLabel=Якщо ви готові продовжити встановлення, натисніть «Далі». -WizardInfoAfter=Інформація -InfoAfterLabel=Будь ласка, прочитайте наступну важливу інформацію, перш ніж продовжити. -InfoAfterClickLabel=Якщо ви готові продовжити встановлення, натисніть «Далі». - -; *** "User Information" wizard page -WizardUserInfo=Інформація про користувача -UserInfoDesc=Будь ласка, введіть дані про себе. -UserInfoName=&Ім’я користувача: -UserInfoOrg=&Організація: -UserInfoSerial=&Серійний номер: -UserInfoNameRequired=Ви повинні ввести ім'я. - -; *** "Select Destination Location" wizard page -WizardSelectDir=Вибір шляху встановлення -SelectDirDesc=Куди ви бажаєте встановити [name]? -SelectDirLabel3=Програма встановить [name] у наступну папку. -SelectDirBrowseLabel=Натисніть «Далі», щоб продовжити. Якщо ви бажаєте вибрати іншу папку, натисніть «Огляд». -DiskSpaceGBLabel=Необхідно як мінімум [gb] Гб вільного дискового простору. -DiskSpaceMBLabel=Необхідно як мінімум [mb] Mб вільного дискового простору. -CannotInstallToNetworkDrive=Встановлення не може проводитися на мережевий диск. -CannotInstallToUNCPath=Встановлення не може проводитися по мережевому шляху. -InvalidPath=Ви повинні вказати повний шлях з буквою диску, наприклад:%n%nC:\APP%n%nабо в форматі UNC:%n%n\\сервер\ресурс -InvalidDrive=Обраний Вами диск чи мережевий шлях не існує, або не доступний. Будь ласка, виберіть інший. -DiskSpaceWarningTitle=Недостатньо дискового простору -DiskSpaceWarning=Для встановлення необхідно як мінімум %1 Кб вільного простору, а на вибраному диску доступно лише %2 Кб.%n%nВи все одно бажаєте продовжити? -DirNameTooLong=Ім'я папки або шлях до неї перевищують допустиму довжину. -InvalidDirName=Вказане ім’я папки недопустиме. -BadDirName32=Ім'я папки не може включати наступні символи:%n%n%1 -DirExistsTitle=Папка існує -DirExists=Папка:%n%n%1%n%nвже існує. Ви все одно бажаєте встановити в цю папку? -DirDoesntExistTitle=Папка не існує -DirDoesntExist=Папка:%n%n%1%n%nне існує. Ви бажаєте створити її? - -; *** "Select Components" wizard page -WizardSelectComponents=Вибір компонентів -SelectComponentsDesc=Які компоненти ви бажаєте встановити? -SelectComponentsLabel2=Виберіть компоненти які ви бажаєте встановити; зніміть відмітку з компонентів які ви не бажаєте встановлювати. Натисніть «Далі», щоб продовжити. -FullInstallation=Повне встановлення -; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) -CompactInstallation=Компактне встановлення -CustomInstallation=Вибіркове встановлення -NoUninstallWarningTitle=Компоненти існують -NoUninstallWarning=Виявлено, що наступні компоненти вже встановленні на вашому комп’ютері:%n%n%1%n%nВідміна вибору цих компонентів не видалить їх.%n%nВи бажаєте продовжити? -ComponentSize1=%1 Kб -ComponentSize2=%1 Mб -ComponentsDiskSpaceGBLabel=Даний вибір вимагає як мінімум [gb] Гб дискового простору. -ComponentsDiskSpaceMBLabel=Даний вибір вимагає як мінімум [mb] Mб дискового простору. - -; *** "Select Additional Tasks" wizard page -WizardSelectTasks=Вибір додаткових завдань -SelectTasksDesc=Які додаткові завдання ви бажаєте виконати? -SelectTasksLabel2=Виберіть додаткові завдання які програма встановлення [name] повинна виконати, потім натисніть «Далі». - -; *** "Select Start Menu Folder" wizard page -WizardSelectProgramGroup=Вибір папки в меню «Пуск» -SelectStartMenuFolderDesc=Де ви бажаєте створити ярлики? -SelectStartMenuFolderLabel3=Програма встановлення створить ярлики у наступній папці меню «Пуск». -SelectStartMenuFolderBrowseLabel=Натисніть «Далі», щоб продовжити. Якщо ви бажаєте вибрати іншу папку, натисніть «Огляд». -MustEnterGroupName=Ви повинні ввести ім'я папки. -GroupNameTooLong=Ім’я папки або шлях до неї перевищують допустиму довжину. -InvalidGroupName=Вказане ім’я папки недопустиме. -BadGroupName=Ім'я папки не може включати наступні символи:%n%n%1 -NoProgramGroupCheck2=&Не створювати папку в меню «Пуск» - -; *** "Ready to Install" wizard page -WizardReady=Усе готово до встановлення -ReadyLabel1=Програма готова розпочати встановлення [name] на ваш комп’ютер. -ReadyLabel2a=Натисніть «Встановити» для продовження встановлення, або «Назад», якщо ви бажаєте переглянути або змінити налаштування встановлення. -ReadyLabel2b=Натисніть «Встановити» для продовження. -ReadyMemoUserInfo=Дані про користувача: -ReadyMemoDir=Шлях встановлення: -ReadyMemoType=Тип встановлення: -ReadyMemoComponents=Вибрані компоненти: -ReadyMemoGroup=Папка в меню «Пуск»: -ReadyMemoTasks=Додаткові завдання: - -; *** TDownloadWizardPage wizard page and DownloadTemporaryFile -DownloadingLabel=Завантаження додаткових файлів... -ButtonStopDownload=&Перервати завантаження -StopDownload=Ви дійсно бажаєте перервати завантаження? -ErrorDownloadAborted=Завантаження перервано -ErrorDownloadFailed=Помилка завантаження: %1 %2 -ErrorDownloadSizeFailed=Помилка отримання розміру: %1 %2 -ErrorFileHash1=Помилка хешу файлу: %1 -ErrorFileHash2=Невірний хеш файлу: очікувався %1, отриманий %2 -ErrorProgress=Помилка виконання: %1 з %2 -ErrorFileSize=Невірний розмір файлу: очікувався %1, отриманий %2 - -; *** TExtractionWizardPage wizard page and Extract7ZipArchive -ExtractionLabel=Розпакування додаткових файлів... -ButtonStopExtraction=&Перервати розпакування -StopExtraction=Ви дійсно бажаєте перервати розпакування? -ErrorExtractionAborted=Розпакування перервано -ErrorExtractionFailed=Помилка розпакування: %1 - -; *** "Preparing to Install" wizard page -WizardPreparing=Підготовка до встановлення -PreparingDesc=Програма встановлення готується до встановлення [name] на ваш комп’ютер. -PreviousInstallNotCompleted=Встановлення або видалення попередньої програми не було завершено. Вам потрібно перезавантажити ваш комп’ютер для завершення минулого встановлення.%n%nПісля перезавантаження відкрийте програму встановлення знову, щоб завершити встановлення [name]. -CannotContinue=Встановлення неможливо продовжити. Будь ласка, натисніть «Скасувати» для виходу. -ApplicationsFound=Наступні програми використовують файли, які повинні бути оновлені програмою встановлення. Рекомендується дозволили програмі встановлення автоматично закрити ці програми. -ApplicationsFound2=Наступні програми використовують файли, які повинні бути оновлені програмою встановлення. Рекомендується дозволили програмі встановлення автоматично закрити ці програми. Після завершення встановлення, програма встановлення спробує знову запустити їх. -CloseApplications=&Автоматично закрити програми -DontCloseApplications=&Не закривати програми -ErrorCloseApplications=Програма встановлення не може автоматично закрити всі програми. Рекомендується закрити всі програми, що використовують файли, які повинні бути оновлені програмою встановлення, перш ніж продовжити. -PrepareToInstallNeedsRestart=Програмі встановлення необхідно перезавантажити ваш ПК. Після перезавантаження ПК, запустіть встановлення знову для завершення встановлення [name]%n%nВи бажаєте перезавантажити зараз? - -; *** "Installing" wizard page -WizardInstalling=Встановлення -InstallingLabel=Будь ласка, зачекайте, поки [name] встановиться на ваш комп'ютер. - -; *** "Setup Completed" wizard page -FinishedHeadingLabel=Завершення встановлення [name] -FinishedLabelNoIcons=Встановлення [name] на ваш комп’ютер завершено. -FinishedLabel=Встановлення [name] на ваш комп’ютер завершено. Встановлені програми можна відкрити за допомогою створених ярликів. -ClickFinish=Натисніть «Готово» для виходу з програми встановлення. -FinishedRestartLabel=Для завершення встановлення [name] необхідно перезавантажити ваш комп’ютер. Перезавантажити комп’ютер зараз? -FinishedRestartMessage=Для завершення встановлення [name] необхідно перезавантажити ваш комп’ютер.%n%nПерезавантажити комп’ютер зараз? -ShowReadmeCheck=Так, я хочу переглянути файл README -YesRadio=&Так, перезавантажити комп’ютер зараз -NoRadio=&Ні, я перезавантажу комп’ютер пізніше -; used for example as 'Run MyProg.exe' -RunEntryExec=Відкрити %1 -; used for example as 'View Readme.txt' -RunEntryShellExec=Переглянути %1 - -; *** "Setup Needs the Next Disk" stuff -ChangeDiskTitle=Необхідно вставити наступний диск -SelectDiskLabel2=Будь ласка, вставте диск %1 і натисніть «OK».%n%nЯкщо потрібні файли можуть знаходитися в іншій папці, на відміну від вказаної нижче, введіть правильний шлях або натисніть «Огляд». -PathLabel=&Шлях: -FileNotInDir2=Файл "%1" не знайдений в "%2". Будь ласка, вставте належний диск або вкажіть іншу папку. -SelectDirectoryLabel=Будь ласка, вкажіть шлях до наступного диску. - -; *** Installation phase messages -SetupAborted=Встановлення не завершено.%n%nБудь ласка, усуньте проблему і відкрийте програму встановлення знову. -AbortRetryIgnoreSelectAction=Виберіть дію -AbortRetryIgnoreRetry=&Спробувати знову -AbortRetryIgnoreIgnore=&Ігнорувати помилку та продовжити -AbortRetryIgnoreCancel=Відмінити встановлення - -; *** Installation status messages -StatusClosingApplications=Закриття програм... -StatusCreateDirs=Створення папок... -StatusExtractFiles=Розпакування файлів... -StatusCreateIcons=Створення ярликів... -StatusCreateIniEntries=Створення INI записів... -StatusCreateRegistryEntries=Створення записів реєстру... -StatusRegisterFiles=Реєстрація файлів... -StatusSavingUninstall=Збереження інформації для видалення... -StatusRunProgram=Завершення встановлення... -StatusRestartingApplications=Перезапуск програм... -StatusRollback=Скасування змін... - -; *** Misc. errors -ErrorInternal2=Внутрішня помилка: %1 -ErrorFunctionFailedNoCode=%1 збій -ErrorFunctionFailed=%1 збій; код %2 -ErrorFunctionFailedWithMessage=%1 збій; код %2.%n%3 -ErrorExecutingProgram=Неможливо виконати файл:%n%1 - -; *** Registry errors -ErrorRegOpenKey=Помилка відкриття ключа реєстру:%n%1\%2 -ErrorRegCreateKey=Помилка створення ключа реєстру:%n%1\%2 -ErrorRegWriteKey=Помилка запису в ключ реєстру:%n%1\%2 - -; *** INI errors -ErrorIniEntry=Помилка при створенні запису в INI-файлі "%1". - -; *** File copying errors -FileAbortRetryIgnoreSkipNotRecommended=&Пропустити файл (не рекомендується) -FileAbortRetryIgnoreIgnoreNotRecommended=&Ігнорувати помилку та продовжити (не рекомендується) -SourceIsCorrupted=Вихідний файл пошкоджений -SourceDoesntExist=Вихідний файл "%1" не існує -ExistingFileReadOnly2=Неможливо замінити існуючий файл, оскільки він позначений лише для читання. -ExistingFileReadOnlyRetry=&Видалити атрибут "лише читання" та спробувати знову -ExistingFileReadOnlyKeepExisting=&Залишити існуючий файл -ErrorReadingExistingDest=Виникла помилка при спробі читання існуючого файлу: -FileExistsSelectAction=Виберіть дію -FileExists2=Файл вже існує. -FileExistsOverwriteExisting=&Замінити існуючий файл -FileExistsKeepExisting=&Зберегти існуючий файл -FileExistsOverwriteOrKeepAll=&Повторити дію для всіх подальших конфліктів -ExistingFileNewerSelectAction=Виберіть дію -ExistingFileNewer2=Існуючий файл новіший, ніж встановлюваємий. -ExistingFileNewerOverwriteExisting=&Замінити існуючий файл -ExistingFileNewerKeepExisting=&Зберегти існуючий файл (рекомендується) -ExistingFileNewerOverwriteOrKeepAll=&Повторити дію для всіх подальших конфліктів -ErrorChangingAttr=Виникла помилка при спробі зміни атрибутів існуючого файлу: -ErrorCreatingTemp=Виникла помилка при спробі створення файлу в папці встановлення: -ErrorReadingSource=Виникла помилка при спробі читання вихідного файлу: -ErrorCopying=Виникла помилка при спробі копіювання файлу: -ErrorReplacingExistingFile=Виникла помилка при спробі заміни існуючого файлу: -ErrorRestartReplace=Помилка RestartReplace: -ErrorRenamingTemp=Виникла помилка при спробі перейменування файлу в папці встановлення: -ErrorRegisterServer=Неможливо зареєструвати DLL/OCX: %1 -ErrorRegSvr32Failed=Помилка при виконанні RegSvr32, код повернення %1 -ErrorRegisterTypeLib=Неможливо зареєструвати бібліотеку типів: %1 - -; *** Uninstall display name markings -; used for example as 'My Program (32-bit)' -UninstallDisplayNameMark=%1 (%2) -; used for example as 'My Program (32-bit, All users)' -UninstallDisplayNameMarks=%1 (%2, %3) -UninstallDisplayNameMark32Bit=32-біт -UninstallDisplayNameMark64Bit=64-біт -UninstallDisplayNameMarkAllUsers=Всі користувачі -UninstallDisplayNameMarkCurrentUser=Поточний користувач - -; *** Post-installation errors -ErrorOpeningReadme=Виникла помилка при спробі відкриття файлу README. -ErrorRestartingComputer=Програмі встановлення не вдалося перезавантажити комп'ютер. Будь ласка, виконайте це самостійно. - -; *** Uninstaller messages -UninstallNotFound=Файл "%1" не існує, видалення неможливе. -UninstallOpenError=Неможливо відкрити файл "%1". Видалення неможливе -UninstallUnsupportedVer=Файл протоколу для видалення "%1" не розпізнаний даною версією програми видалення. Видалення неможливе -UninstallUnknownEntry=Невідомий запис (%1) в файлі протоколу для видалення -ConfirmUninstall=Ви впевнені, що бажаєте видалити %1 і всі його компоненти? -UninstallOnlyOnWin64=Цю програму можливо видалити лише у середовищі 64-бітної версії Windows. -OnlyAdminCanUninstall=Ця програма може бути видалена лише користувачем з правами адміністратора. -UninstallStatusLabel=Будь ласка, зачекайте, поки %1 видалиться з вашого комп'ютера. -UninstalledAll=%1 успішно видалено з вашого комп'ютера. -UninstalledMost=Видалення %1 завершено.%n%nДеякі елемент неможливо видалити. Ви можете видалити їх вручну. -UninstalledAndNeedsRestart=Для завершення видалення %1 необхідно перезавантажити ваш комп’ютер.%n%nПерезавантажити комп’ютер зараз? -UninstallDataCorrupted=Файл "%1" пошкоджений. Видалення неможливе - -; *** Uninstallation phase messages -ConfirmDeleteSharedFileTitle=Видалити загальні файли? -ConfirmDeleteSharedFile2=Система свідчить, що наступний спільний файл більше не використовується іншими програмами. Ви бажаєте видалити цей спільний файл?%n%nЯкщо інші програми все ще використовують цей файл і він видалиться, то ці програми можуть функціонувати неправильно. Якщо ви не впевнені, виберіть «Ні». Залишений файл не нашкодить вашій системі. -SharedFileNameLabel=Ім'я файлу: -SharedFileLocationLabel=Розміщення: -WizardUninstalling=Стан видалення -StatusUninstalling=Видалення %1... - -; *** Shutdown block reasons -ShutdownBlockReasonInstallingApp=Встановлення %1. -ShutdownBlockReasonUninstallingApp=Видалення %1. - -; The custom messages below aren't used by Setup itself, but if you make -; use of them in your scripts, you'll want to translate them. - -[CustomMessages] - -NameAndVersion=%1, версія %2 -AdditionalIcons=Додаткові ярлики: -CreateDesktopIcon=Створити ярлики на &Робочому столі -CreateQuickLaunchIcon=Створити ярлики на &Панелі швидкого запуску -ProgramOnTheWeb=Сайт %1 в Інтернеті -UninstallProgram=Видалити %1 -LaunchProgram=Відкрити %1 -AssocFileExtension=&Асоціювати %1 з розширенням файлу %2 -AssocingFileExtension=Асоціювання %1 з розширенням файлу %2... -AutoStartProgramGroupDescription=Автозавантаження: -AutoStartProgram=Автоматично завантажувати %1 -AddonHostProgramNotFound=%1 не знайдений у вказаній вами папці%n%nВи все одно бажаєте продовжити? diff --git a/bin/lib/innosetup/app/Setup.e32 b/bin/lib/innosetup/app/Setup.e32 deleted file mode 100644 index 4b7c858..0000000 Binary files a/bin/lib/innosetup/app/Setup.e32 and /dev/null differ diff --git a/bin/lib/innosetup/app/SetupLdr.e32 b/bin/lib/innosetup/app/SetupLdr.e32 deleted file mode 100644 index c734fe0..0000000 Binary files a/bin/lib/innosetup/app/SetupLdr.e32 and /dev/null differ diff --git a/bin/lib/innosetup/app/isfaq.url b/bin/lib/innosetup/app/isfaq.url deleted file mode 100644 index 9105455..0000000 --- a/bin/lib/innosetup/app/isfaq.url +++ /dev/null @@ -1,2 +0,0 @@ -[InternetShortcut] -URL=https://jrsoftware.org/isfaq.php diff --git a/bin/lib/innosetup/app/islzma.dll b/bin/lib/innosetup/app/islzma.dll deleted file mode 100644 index 49573c7..0000000 Binary files a/bin/lib/innosetup/app/islzma.dll and /dev/null differ diff --git a/bin/lib/innosetup/app/islzma32.exe b/bin/lib/innosetup/app/islzma32.exe deleted file mode 100644 index 2e9c890..0000000 Binary files a/bin/lib/innosetup/app/islzma32.exe and /dev/null differ diff --git a/bin/lib/innosetup/app/islzma64.exe b/bin/lib/innosetup/app/islzma64.exe deleted file mode 100644 index deb660c..0000000 Binary files a/bin/lib/innosetup/app/islzma64.exe and /dev/null differ diff --git a/bin/lib/innosetup/app/isscint.dll b/bin/lib/innosetup/app/isscint.dll deleted file mode 100644 index e1b47b0..0000000 Binary files a/bin/lib/innosetup/app/isscint.dll and /dev/null differ diff --git a/bin/lib/innosetup/app/whatsnew.htm b/bin/lib/innosetup/app/whatsnew.htm deleted file mode 100644 index e475fac..0000000 --- a/bin/lib/innosetup/app/whatsnew.htm +++ /dev/null @@ -1,156 +0,0 @@ - - - - -Inno Setup 6 Revision History - - - - - -
Inno Setup 6
Revision History
- -

Copyright © 1997-2025 Jordan Russell. All rights reserved.
-Portions Copyright © 2000-2025 Martijn Laan. All rights reserved.
-For conditions of distribution and use, see LICENSE.TXT. -

- -

Want to be notified by e-mail of new Inno Setup releases? Subscribe to the Inno Setup Mailing List!

- -

6.4.1 (2025-02-12)

-

Compiler IDE changes

-
    -
  • Added mouseover tooltips for all Pascal Scripting support functions and class members showing their prototype. Always shows all classes' members instead of just those of the current object's class.
  • -
  • Autocompletion lists now use the same font as the editor.
  • -
  • Fix: When the IDE was started for the first time on a system with a DPI setting over 100%, the editor's initial font size was larger than expected.
  • -
-

Other changes

-
    -
  • {reg:...} constants can now also embed REG_DWORD-type registry values.
  • -
  • Fix: In 6.4.0, using "Shift+" in a HotKey parameter in the [Icons] section didn't work and required "Shift" instead, so for example "Ctrl+ShiftM" instead of "Ctrl+Shift+M".
  • -
  • Fix: In 6.4.0, a custom form shown using [Code] didn't have a taskbar button if Setup's wizard was not visible at the time.
  • -
  • Added official Arabic translation.
  • -
  • Some minor tweaks and improvements.
  • -
- -

6.4.0 (2025-01-09)

-

Compiler IDE changes

-

Updated the Scintilla editor component used by the Compiler IDE to the latest version.

-

Multiple selection editing has been improved:

-
    -
  • Added new Add Next Occurrence menu item to the Edit menu to add the next occurrence of the current word or selected text as an additional selection (Shift+Alt+. or Ctrl+D, see below).
  • -
  • Added new Select All Occurrences menu item to the Edit menu to select all occurrences of the current word or selected text (Shift+Alt+; or Ctrl+Shift+L).
  • -
  • Added new Select All Find Matches menu item to the Edit menu to select all matches of the last find text (Alt+Enter).
    Additionally, the Find (Ctrl+F) and Replace (Ctrl+H) dialogs now both support being closed by Alt+Enter to directly select all matches.
  • -
  • Added shortcuts to add a cursor or selection up or down (Ctrl+Alt+Up and Ctrl+Alt+Down). For multi-line selections this extends the selection up or down and never shrinks.
  • -
  • Added shortcut to add cursors to line ends (Shift+Alt+I). Behaves the same as in Visual Studio Code, so for example does nothing if all selections are empty.
  • -
  • Added shortcuts to add a word or line as an additional selection (Ctrl+Double Click and Ctrl+Triple Click or Alt+Double Click and Alt+Triple Click).
  • -
  • Added shortcut to remove a selection by clicking it (Ctrl+Click or Alt+Click).
  • -
  • Multiple selection now works over Left, Right, Up, Down, Home and End navigation and selection commands.
  • -
  • Multiple selection now works over word and line deletion commands, and line end insertion.
  • -
  • Multiple selection now works better with Copy and Paste commands.
  • -
  • Left, Right, etc. navigation with rectangular selection is now allowed.
  • -
  • The Find and Replace dialogs and the tools from the Tools menu which generate script text now all work better with multiple selections present.
  • -
-

Other editor changes:

-
    -
  • Added support for Visual Studio Code-style editor shortcuts, like Ctrl+D to Add Next Occurrence, Ctrl+Shift+K to delete a line and Alt+Click to add an additional cursor or remove a selection.
    To activate this use the Options menu item in the Tools menu to set the new Keys option in the Editor group to Visual Studio Code.
    The updated Compiler IDE Keyboard And Mouse Commands help topic lists all differences with the classic keyboard and mouse shortcuts.
  • -
  • Only if Visual Studio Code-style editor shortcuts have been activated: Added shortcuts to copy line down (Shift+Alt+Down) and to indent or unindent lines (Ctrl+] and Ctrl+[).
  • -
  • Added parameter hints for all Pascal Scripting support functions for quick reference to the function's parameter names, types, and order. Parameter hints can be invoked manually by pressing Ctrl+Shift+Space or automatically by using the new Invoke parameter hints automatically option which is enabled by default.
  • -
  • Added autocompletion support for all Pascal Scripting support functions, types, constants, etcetera. Existing option Invoke autocompletion automatically controls whether the autocompletion suggestions appear automatically or only when invoked manually by pressing Ctrl+Space or Ctrl+I.
  • -
  • Added parameter hints and autocompletion support for all Pascal Scripting support class members and properties. Both always show all classes' members and properties instead of just those of the current object's class.
  • -
  • Added autocompletion support for all Pascal Scripting event function parameters. Always shows all parameters instead of just those of the current event function.
  • -
  • Added autocompletion support for the [Messages] section.
  • -
  • Improved autocompletion support for all Flags parameters: now works for multiple flags instead of for the first only.
  • -
  • Added new Enable section folding option which allows you to temporarily hide sections while editing by clicking the new minus or plus icons in the editor's gutter or by using the new keyboard shortcuts (Ctrl+Shift+[ to fold and Ctrl+Shift+] to unfold) or menu items. Enabled by default.
  • -
  • The editor's gutter now shows change history to keep track of saved and unsaved modifications. Always enabled.
  • -
  • The editor's font now defaults to Consolas if available, consistent with most other modern editors.
  • -
  • The editor can now be scrolled horizontally instead of vertically by holding the Shift key while rotating the mouse wheel. Horizontal scroll wheels are now also supported.
  • -
  • Cut (Ctrl+X or Shift+Delete) and Copy (Ctrl+C or Ctrl+Insert) now cut or copy the entire line if there's no selection, consistent with most other modern editors.
  • -
  • Added new shortcuts to move selected lines up or down (Alt+Up and Alt+Down).
  • -
  • Added new shortcut and menu item to the Edit menu to toggle line comment (Ctrl+/).
  • -
  • Added new shortcut and menu item to the Edit menu to go to matching brace (Ctrl+Shift+\).
  • -
  • Moved the Word Wrap option to the View menu and added a shortcut for it (Alt+Z).
  • -
  • Added a right-click popup menu to the editor's gutter column for breakpoints.
  • -
  • Added dark mode support to autocompletion lists and also added a minimum width.
  • -
  • Added new Show whitespace option. Disabled by default.
  • -
  • Improved brace highlighting.
  • -
  • Fixed an issue when the Auto indent mode and Allow cursor to move beyond end of lines options are both enabled.
  • -
-

Other Compiler IDE changes:

-
    -
  • Shortcuts Alt+Left and Alt+Right now always navigate back and forward even if Visual Studio-style menu shortcuts have been activated.
    Because of this Alt+Right can no longer be used to initiate auto complete, instead the existing Ctrl+Space or Ctrl+I alternatives must be used.
  • -
  • Moved the list of recently opened files into a new Open Recent submenu of the Files menu.
  • -
  • Added new Use Regular Expressions option to the Edit menu to enable or disable the use of regular expressions for all find and replace operations and added a shortcut for it (Ctrl+Alt+R or Alt+R). Also added a small panel to the statusbar to indicate the current state.
  • -
  • The Find and Replace dialogs now support using Shift+Enter to temporarily search in the opposite direction.
  • -
  • Added shortcuts to select a tab (Ctrl+1 through Ctrl+9).
  • -
  • Added alternative shortcut for the Compile menu item in the Build menu (Shift+F9 or F7).
  • -
  • Added shortcut to the Options menu item in the Tools menu (Ctrl+,).
  • -
  • Removed the length limitation when entering a Sign Tool command and increased control height.
  • -
  • Added a banner which is displayed to each user after each update and links to this revision history.
  • -
  • Enabled dark mode support for the menus on Windows 11 Version 24H2 (2024 Update).
  • -
-

Other changes

-
    -
  • Updated the LZMA SDK used by Inno Setup to the latest version, increasing the speed of LZMA and LZMA2 compression (by 10% in a test with default settings) without changing the compression ratio. Compression memory requirements have increased by about 4%. This also made it possible to add support for extracting 7-Zip archives, see below.
  • -
  • Updated the encryption algorithm and key derivation function used by Inno Setup to XChaCha20 and PBKDF2-HMAC-SHA256 respectively, increasing security. This code is built-in: the separate ISCrypt.dll "encryption module" is no longer used and will be automatically deleted when you update.
  • -
  • Added [Setup] section directive EncryptionKeyDerivation to change the number of PBKDF2-HMAC-SHA256 iterations to use from the default of 200000 to another value.
  • -
  • Replaced all remaining use of MD5 and SHA-1 hashes with SHA-256 hashes, without removing the MD5 and SHA-1 Pascal Scripting and ISPP support functions.
  • -
  • At long last, Setup's wizard window now shows a thumbnail image on its taskbar button, and animates correctly when minimized and restored. As part of this work, support for the long-deprecated [Setup] section directive WindowVisible, which was used to enable a 1990s-style blue gradient background behind the wizard window, has been dropped. For the same reason Pascal Scripting support object MainForm has been removed.
  • -
  • The aspect ratio of Setup's large and small wizard images (as specified by WizardImageFile and WizardSmallImageFile) is now maintained when the window is scaled. Previously, depending on the font and font size used, they could have appeared horizontally stretched or squished.
  • -
  • The size of the small wizard image area has been extended to 58×58 (at standard DPI with the default font). Previous versions used a non-square 55×58 size, which made the default image look slightly stretched.
  • -
  • When disk spanning is enabled and Setup cannot find the needed disk slice file (e.g., setup-2.bin) in the source directory, it no longer automatically searches for it in a directory named DISKx one level up, where x is the disk number. Though consistent with old installers from the 16-bit era, this behavior wasn't documented.
  • -
  • The New Script Wizard now sets UninstallDisplayIcon when an .exe is chosen as the main executable file.
  • -
  • Merged the Inno Setup Preprocessor documentation into the main documentation instead of being separate.
  • -
  • Added a dark mode version of the documentation, automatically used by the Compiler IDE if a dark theme is chosen.
  • -
  • Pascal Scripting changes: -
      -
    • Added new Extract7ZipArchive support function to extract a 7-Zip archive, based on the "7z ANSI-C Decoder" from the LZMA SDK by Igor Pavlov. See the new help topic for information about its limitations.
      Added new CreateExtractionPage support function to easily show the extraction progress to the user.
    • -
    • Added new ExecAndCaptureOutput support function to execute a program or batch file and capture its stdout and stderr outputs separately.
    • -
    • Added new StringJoin, StringSplit, and StringSplitEx support functions.
    • -
    • Output logging now raises an exception if there was an error setting up output redirection (which should be very rare). The PowerShell.iss example script has been updated to catch the exception.
    • -
    • Added new NewFolderName property to support class TInputDirWizardPage update the initial value passed to CreateInputDirPage.
    • -
    • Added new PopupMode and PopupParent properties to support class TForm.
    • -
    • Documented support functions VarArrayGet and VarArraySet which were already available but not documented.
    • -
    • Renamed the FileCopy support function to CopyFile. The old name is still supported, but it is recommended to update your scripts to the new name and the compiler will issue a warning if you don't.
    • -
    • Fixed support function TStream.CopyFrom by adding a BufferSize parameter which was required but missing. Using $100000 as the value is recommended.
    • -
    • Condensed the logging of DLL function imports.
    • -
    • Added new Debugging support function.
    • -
    -
  • -
  • ISPP change: Added support functions GetSHA256OfFile, GetSHA256OfString, and GetSHA256OfUnicodeString.
  • -
  • Inno Setup's Delphi source code has been reorganized to use unit scope names and additionally various units have been renamed for clarity. This makes it a lot easier to get started with working with the Inno Setup source code and making contributions, even with the free Delphi Community Edition.
  • -
  • Added official Swedish and Tamil translations.
  • -
  • Various tweaks and improvements.
  • -
- -

Contributions via GitHub: Thanks to Sergii Leonov, John Stevenson, and jogo- for their contributions!

- -

Thanks to Neil Hodgson and Igor Pavlov for their continued work on Scintilla and the LZMA SDK!

- -

Some messages have been added and changed in this version: (View differences in Default.isl.)

-
    -
  • New messages: -
      -
    • ExtractionLabel, ButtonStopExtraction, StopExtraction, ErrorExtractionAborted, ErrorExtractionFailed.
    • -
    -
  • -
- -

Note: The official Icelandic translation has not yet been updated for these changes. - -

Inno Setup 6.3 Revision History

- - - diff --git a/bin/lib/innosetup/app/isbunzip.dll b/bin/lib/innosetup/isbunzip.dll similarity index 100% rename from bin/lib/innosetup/app/isbunzip.dll rename to bin/lib/innosetup/isbunzip.dll diff --git a/bin/lib/innosetup/app/isbzip.dll b/bin/lib/innosetup/isbzip.dll similarity index 100% rename from bin/lib/innosetup/app/isbzip.dll rename to bin/lib/innosetup/isbzip.dll diff --git a/bin/lib/innosetup/islzma.dll b/bin/lib/innosetup/islzma.dll new file mode 100644 index 0000000..81fd05a Binary files /dev/null and b/bin/lib/innosetup/islzma.dll differ diff --git a/bin/lib/innosetup/islzma32.exe b/bin/lib/innosetup/islzma32.exe new file mode 100644 index 0000000..7562645 Binary files /dev/null and b/bin/lib/innosetup/islzma32.exe differ diff --git a/bin/lib/innosetup/islzma64.exe b/bin/lib/innosetup/islzma64.exe new file mode 100644 index 0000000..fd58a59 Binary files /dev/null and b/bin/lib/innosetup/islzma64.exe differ diff --git a/bin/lib/innosetup/isscint.dll b/bin/lib/innosetup/isscint.dll new file mode 100644 index 0000000..5f8ef49 Binary files /dev/null and b/bin/lib/innosetup/isscint.dll differ diff --git a/bin/lib/innosetup/app/isunzlib.dll b/bin/lib/innosetup/isunzlib.dll similarity index 100% rename from bin/lib/innosetup/app/isunzlib.dll rename to bin/lib/innosetup/isunzlib.dll diff --git a/bin/lib/innosetup/app/iszlib.dll b/bin/lib/innosetup/iszlib.dll similarity index 100% rename from bin/lib/innosetup/app/iszlib.dll rename to bin/lib/innosetup/iszlib.dll diff --git a/bin/lib/innosetup/app/license.txt b/bin/lib/innosetup/license.txt similarity index 91% rename from bin/lib/innosetup/app/license.txt rename to bin/lib/innosetup/license.txt index c7ec217..5a6b873 100644 --- a/bin/lib/innosetup/app/license.txt +++ b/bin/lib/innosetup/license.txt @@ -4,8 +4,8 @@ Inno Setup License Except where otherwise noted, all of the documentation and software included in the Inno Setup package is copyrighted by Jordan Russell. -Copyright (C) 1997-2025 Jordan Russell. All rights reserved. -Portions Copyright (C) 2000-2025 Martijn Laan. All rights reserved. +Copyright (C) 1997-2023 Jordan Russell. All rights reserved. +Portions Copyright (C) 2000-2023 Martijn Laan. All rights reserved. This software is provided "as-is," without any express or implied warranty. In no event shall the author be held liable for any damages arising from the use of this software. diff --git a/bin/lib/innosetup/whatsnew.htm b/bin/lib/innosetup/whatsnew.htm new file mode 100644 index 0000000..5b2970c --- /dev/null +++ b/bin/lib/innosetup/whatsnew.htm @@ -0,0 +1,109 @@ + + + +Inno Setup 6 Revision History + + + + + +
Inno Setup 6
Revision History
+ +

Copyright © 1997-2023 Jordan Russell. All rights reserved.
+Portions Copyright © 2000-2023 Martijn Laan. All rights reserved.
+For conditions of distribution and use, see LICENSE.TXT. +

+ +

Want to be notified by e-mail of new Inno Setup releases? Subscribe to the Inno Setup Mailing List!

+ +

6.2.2 (2023-02-15)

+
    +
  • Changes to further help protect against potential DLL preloading attacks, contributed by Johannes Schindelin from the Git for Windows team.
  • +
  • Pascal Scripting changes: Improved support for downloads using basic authentication, contributed by Christian Beck. +
      +
    • Added new AddEx function to the TDownloadWizardPage support class.
    • +
    • Added new SetDownloadCredentials support function.
    • +
    +
  • Added official Hungarian translation.
  • +
+ +

6.2.1 (2022-04-14)

+
    +
  • Changes to further help protect against potential DLL preloading attacks when running installers or uninstallers under the SYSTEM account, contributed by Johannes Schindelin from the Git for Windows team.
  • +
  • Fixed a cosmetic issue if the icon file specified by the [Setup] section directive SetupIconFile contains more than 13 icons. Thanks to Wilenty and Martin Prikryl for the initial investigation.
  • +
+ +

6.2.0 (2021-06-03)

+

Graphics modernized

+
    +
  • Updated all Compiler IDE's toolbar icons and the wizard images used by the Compiler IDE's New Script Wizard wizard.
  • +
  • Updated the default application icon used by Setup and Uninstall if [Setup] section directive SetupIconFile is not set. To use the old icon again set SetupIconFile to compiler:SetupClassicIcon.ico.
  • +
  • [Setup] section directives WizardImageFile and WizardSmallImageFile now default to a blank value which makes Setup use new built-in wizard images. To use the old wizard images again set WizardImageFile and WizardSmallImageFile to compiler:WizClassicImage.bmp and compiler:WizClassicSmallImage.bmp respectively.
  • +
  • Updated Uninstall's default small wizard image if [Setup] section directive SetupIconFile is not set. Before it would use Setup's default application icon in this case.
  • +
  • Updated the folder, group, and stop icons used by Setup's Select Destination Location, Select Start Menu Folder, and Preparing to Install wizard pages.
  • +
  • Updated the disk icon used by Setup's Setup Needs the Next Disk form.
  • +
  • Pascal Scripting change: Added new InitializeBitmapImageFromIcon support function.
  • +
+

All these icon and images updates include the automatic use of higher quality versions (which were not available before) on higher DPI settings. This includes new automatic use of higher quality icons for the icon on Setup's Select Setup Language form and Uninstall's small wizard image if SetupIconFile is set.

+

Example screenshots:

+ +

Comparison screenshots of the *previous* version:

+ +

Other changes

+
    +
  • Links displayed by [Setup] section directives LicenseFile, InfoBeforeFile and InfoAfterFile are now executed as the original user if possible when clicked.
  • +
  • Added new [Setup] section directives MissingMessagesWarning and NotRecognizedMessagesWarning to disable warnings about messages missing or not recognized for a language.
  • +
  • /LOG: Now logs more uninstaller actions.
  • +
  • The {localappdata} constant can now correctly trigger a used user areas warning.
  • +
  • Compiler IDE change: Fix: Autocomplete support for event functions listed some procedures as functions.
  • +
  • Pascal Scripting changes: +
      +
    • Added new CreateOutputMarqueeProgressPage support function to show marquee progress to the user. See the AllPagesExample.iss example script for an example.
    • +
    • Added new ItemFontStyle and SubItemFontStyle properties to the TNewCheckListBox support class. See the CodeClasses.iss example script for an example.
    • +
    • Added new IsMsiProductInstalled and StrToVersion support functions.
    • +
    • Added new AbortedByUser property to the TDownloadWizardPage support class.
    • +
    • Fix: CreateDownloadPage's progress bar now supports files larger than 2 GB.
    • +
    • Support functions ParamCount and ParamStr now exclude undocumented internal parameters used by Setup and Uninstall.
    • +
    • The built-in download support now allows the download of files for which the server does not specify the file size and its hash checking is no longer case sensitive.
    • +
    +
  • +
  • ISPP change: Added new StrToVersion support function.
  • +
  • Added official Bulgarian translation.
  • +
  • Various documentation improvements.
  • +
  • Minor tweaks.
  • +
+

Inno Setup FAQ updated

+
    +
  • The Inno Setup FAQ has been updated with updated versions of articles taken from the Inno Setup Knowledge Base which is now hidden from the website.
  • +
  • The content of the FAQ is now available on GitHub where you can suggest new entries or other improvements using the Edit button.
  • +
+

QuickStart Pack removed

+
    +
  • The QuickStart Pack installer has been removed because of a lack of added value.
  • +
  • The standard Inno Setup installer now offers to download encryption support if it's missing, like the QuickStart Pack installer did before. If you used the QuickStart Pack installer before, you can use the standard installer to update your installation.
  • +
+ +

Contributions via GitHub: Thanks to Sergii Leonov and Dom Gries for their contributions.

+ +

Inno Setup 6.1 Revision History

+ + + diff --git a/bin/lib/lessmsi.zip b/bin/lib/lessmsi.zip deleted file mode 100644 index 893a5bf..0000000 Binary files a/bin/lib/lessmsi.zip and /dev/null differ diff --git a/bin/lib/lessmsi/AddWindowsExplorerShortcut.exe b/bin/lib/lessmsi/AddWindowsExplorerShortcut.exe deleted file mode 100644 index 1599d8b..0000000 Binary files a/bin/lib/lessmsi/AddWindowsExplorerShortcut.exe and /dev/null differ diff --git a/bin/lib/lessmsi/LessIO.dll b/bin/lib/lessmsi/LessIO.dll deleted file mode 100644 index 6d19924..0000000 Binary files a/bin/lib/lessmsi/LessIO.dll and /dev/null differ diff --git a/bin/lib/lessmsi/de/lessmsi-gui.resources.dll b/bin/lib/lessmsi/de/lessmsi-gui.resources.dll deleted file mode 100644 index 39c355d..0000000 Binary files a/bin/lib/lessmsi/de/lessmsi-gui.resources.dll and /dev/null differ diff --git a/bin/lib/lessmsi/it/lessmsi-gui.resources.dll b/bin/lib/lessmsi/it/lessmsi-gui.resources.dll deleted file mode 100644 index 0dab4ee..0000000 Binary files a/bin/lib/lessmsi/it/lessmsi-gui.resources.dll and /dev/null differ diff --git a/bin/lib/lessmsi/lessmsi-gui.exe b/bin/lib/lessmsi/lessmsi-gui.exe deleted file mode 100644 index 2263efd..0000000 Binary files a/bin/lib/lessmsi/lessmsi-gui.exe and /dev/null differ diff --git a/bin/lib/lessmsi/lessmsi-gui.exe.config b/bin/lib/lessmsi/lessmsi-gui.exe.config deleted file mode 100644 index 11c3755..0000000 --- a/bin/lib/lessmsi/lessmsi-gui.exe.config +++ /dev/null @@ -1,22 +0,0 @@ - - - - -
- - - - - - - - - - 0, 0 - - - 10, 10 - - - - \ No newline at end of file diff --git a/bin/lib/lessmsi/lessmsi.core.dll b/bin/lib/lessmsi/lessmsi.core.dll deleted file mode 100644 index 04a5894..0000000 Binary files a/bin/lib/lessmsi/lessmsi.core.dll and /dev/null differ diff --git a/bin/lib/lessmsi/lessmsi.exe b/bin/lib/lessmsi/lessmsi.exe deleted file mode 100644 index 66e9ba4..0000000 Binary files a/bin/lib/lessmsi/lessmsi.exe and /dev/null differ diff --git a/bin/lib/lessmsi/lessmsi.exe.config b/bin/lib/lessmsi/lessmsi.exe.config deleted file mode 100644 index df9291b..0000000 --- a/bin/lib/lessmsi/lessmsi.exe.config +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/bin/lib/lessmsi/libmspackn.dll b/bin/lib/lessmsi/libmspackn.dll deleted file mode 100644 index ffefc7c..0000000 Binary files a/bin/lib/lessmsi/libmspackn.dll and /dev/null differ diff --git a/bin/lib/lessmsi/mspack.dll b/bin/lib/lessmsi/mspack.dll deleted file mode 100644 index 32fd7fb..0000000 Binary files a/bin/lib/lessmsi/mspack.dll and /dev/null differ diff --git a/bin/lib/lessmsi/wix.dll b/bin/lib/lessmsi/wix.dll deleted file mode 100644 index 32edd2d..0000000 Binary files a/bin/lib/lessmsi/wix.dll and /dev/null differ diff --git a/bin/lib/lessmsi/wixcab.dll b/bin/lib/lessmsi/wixcab.dll deleted file mode 100644 index 3976056..0000000 Binary files a/bin/lib/lessmsi/wixcab.dll and /dev/null differ diff --git a/bin/lib/innosetup/tmp/iscrypt.ico b/bin/lib/tmp/iscrypt.ico similarity index 100% rename from bin/lib/innosetup/tmp/iscrypt.ico rename to bin/lib/tmp/iscrypt.ico diff --git a/bin/lib/innosetup/tmp/isdonate.bmp b/bin/lib/tmp/isdonate.bmp similarity index 100% rename from bin/lib/innosetup/tmp/isdonate.bmp rename to bin/lib/tmp/isdonate.bmp diff --git a/bin/lib/innosetup/tmp/ismail.bmp b/bin/lib/tmp/ismail.bmp similarity index 100% rename from bin/lib/innosetup/tmp/ismail.bmp rename to bin/lib/tmp/ismail.bmp diff --git a/build.gradle b/build.gradle index adb3043..438d78b 100644 --- a/build.gradle +++ b/build.gradle @@ -31,6 +31,12 @@ ext { toolsPath = file("${projectDir}/tools").absolutePath phpdevPath = file("${projectDir}/phpdev").absolutePath tmpPath = file("${buildPath}/tmp").absolutePath + + // Tool paths for prerequisite modules + innosetupPath = file("${libPath}/innosetup").absolutePath + innosetupCompiler = file("${libPath}/innosetup/ISCC.exe").absolutePath + innoextractPath = file("${libPath}/innoextract/innoextract.exe").absolutePath + composerPath = file("${libPath}/composer.phar").absolutePath } // Configure repositories for dependencies @@ -52,16 +58,22 @@ tasks.register('initDirs') { group = 'build setup' description = 'Initialize build directories' + // Capture values at configuration time + def binPathValue = project.ext.binPath + def libPathValue = project.ext.libPath + def buildPathValue = project.ext.buildPath + def tmpPathValue = project.ext.tmpPath + doLast { - mkdir(ext.binPath) - mkdir(ext.libPath) - mkdir(ext.buildPath) - mkdir(ext.tmpPath) - println "✓ Build directories initialized" - println " - Bin: ${ext.binPath}" - println " - Lib: ${ext.libPath}" - println " - Build: ${ext.buildPath}" - println " - Tmp: ${ext.tmpPath}" + mkdir(binPathValue) + mkdir(libPathValue) + mkdir(buildPathValue) + mkdir(tmpPathValue) + println " [OK] Build directories initialized" + println " - Bin: ${binPathValue}" + println " - Lib: ${libPathValue}" + println " - Build: ${buildPathValue}" + println " - Tmp: ${tmpPathValue}" } } @@ -77,7 +89,7 @@ tasks.named('clean') { include '**/*.tmp' include '**/*.log' } - println "✓ Build artifacts cleaned" + println "[OK] Build artifacts cleaned" } } @@ -163,35 +175,42 @@ tasks.register('loadLibs') { dependsOn 'initDirs' + // Capture values at configuration time + def libPathValue = project.ext.libPath + def composerUrl = project.findProperty('composer.url') ?: 'https://github.com/composer/composer/releases/download/2.8.5/composer.phar' + def innoextractUrl = project.findProperty('innoextract.url') ?: 'https://constexpr.org/innoextract/files/innoextract-1.9-windows.zip' + def innosetupUrl = project.findProperty('innosetup.url') ?: 'https://files.jrsoftware.org/is/6/innosetup-6.2.2.exe' + def hashmyfilesUrl = project.findProperty('hashmyfiles.url') ?: 'https://www.nirsoft.net/utils/hashmyfiles-x64.zip' + doLast { println "Downloading required libraries..." def libs = [ [ name: 'composer', - url: 'https://github.com/composer/composer/releases/download/2.8.5/composer.phar', + url: composerUrl, extract: false ], [ name: 'innoextract', - url: 'https://github.com/dscharrer/innoextract/releases/download/1.9/innoextract-1.9-windows.zip', + url: innoextractUrl, extract: true ], [ - name: 'hashmyfiles', - url: 'https://www.nirsoft.net/utils/hashmyfiles-x64.zip', - extract: true + name: 'innosetup', + url: innosetupUrl, + extract: false ], [ - name: 'lessmsi', - url: 'https://github.com/activescott/lessmsi/releases/download/v2.5.1/lessmsi-v2.5.1.zip', + name: 'hashmyfiles', + url: hashmyfilesUrl, extract: true ] ] libs.each { lib -> def fileName = lib.url.substring(lib.url.lastIndexOf('/') + 1) - def destFile = file("${ext.libPath}/${fileName}") + def destFile = file("${libPathValue}/${fileName}") if (!destFile.exists()) { println " Downloading ${lib.name}..." @@ -201,40 +220,75 @@ tasks.register('loadLibs') { output << input } } - println " ✓ ${lib.name} downloaded" + println " [OK] ${lib.name} downloaded" // Extract archives if (lib.extract && fileName.endsWith('.zip')) { - def extractDir = file("${ext.libPath}/${lib.name}") + def extractDir = file("${libPathValue}/${lib.name}") if (!extractDir.exists()) { println " Extracting ${fileName}..." copy { from zipTree(destFile) into extractDir } - println " ✓ ${lib.name} extracted" + println " [OK] ${lib.name} extracted" } } } catch (Exception e) { - println " ✗ Failed to download ${lib.name}: ${e.message}" + println " [X] Failed to download ${lib.name}: ${e.message}" } } else { - println " ✓ ${lib.name} already exists" + println " [OK] ${lib.name} already exists" + } + } + + // Extract InnoSetup using innoextract + def innosetupExe = file("${libPathValue}/innosetup-6.2.2.exe") + def innosetupDir = file("${libPathValue}/innosetup") + def innoextractExe = file("${libPathValue}/innoextract/innoextract.exe") + + if (innosetupExe.exists() && !innosetupDir.exists() && innoextractExe.exists()) { + println " Extracting InnoSetup using innoextract..." + try { + def result = executeCommand("\"${innoextractExe.absolutePath}\" -e -d \"${libPathValue}\" \"${innosetupExe.absolutePath}\"") + if (result.exitCode == 0) { + def extractedDir = file("${libPathValue}/app") + if (extractedDir.exists()) { + extractedDir.renameTo(innosetupDir) + println " [OK] InnoSetup extracted" + } else { + println " [OK] InnoSetup extracted (check directory structure)" + } + } else { + println " [X] Failed to extract InnoSetup: ${result.error}" + } + } catch (Exception e) { + println " [X] Failed to extract InnoSetup: ${e.message}" } + } else if (innosetupDir.exists()) { + println " [OK] InnoSetup already extracted" + } else if (!innoextractExe.exists()) { + println " [!] innoextract not found, cannot extract InnoSetup" } - println "✓ All libraries processed" + println "[OK] All libraries processed" } } // Task: Clean libraries tasks.register('cleanLibs') { group = 'build setup' - description = 'Remove downloaded libraries' + description = 'Remove downloaded libraries and re-download them' + + finalizedBy 'loadLibs' + + // Capture values at configuration time + def libPathValue = project.ext.libPath doLast { - delete file(ext.libPath) - println "✓ Libraries cleaned" + delete file(libPathValue) + println " [OK] Libraries cleaned" + println " Re-downloading libraries..." } } @@ -276,15 +330,15 @@ tasks.register('verify') { println "\nEnvironment Check Results:" println "─".multiply(60) checks.each { name, passed -> - def status = passed ? "✓ PASS" : "✗ FAIL" - def icon = passed ? "✓" : "✗" + def status = passed ? "[OK] PASS" : "✗ FAIL" + def icon = passed ? "[OK]" : "✗" println " ${status.padRight(10)} ${name}" } println "─".multiply(60) def allPassed = checks.values().every { it } if (allPassed) { - println "\n✓ All checks passed! Build environment is ready." + println "\n[OK] All checks passed! Build environment is ready." } else { println "\n⚠ Some checks failed. Please review the requirements." println "\nTo fix missing components:" @@ -305,15 +359,14 @@ tasks.register('verifyLibs') { def requiredLibs = [ 'composer.phar', 'innoextract', - 'hashmyfiles', - 'lessmsi' + 'hashmyfiles' ] def missing = [] requiredLibs.each { lib -> def libFile = file("${ext.libPath}/${lib}") if (libFile.exists()) { - println " ✓ ${lib}" + println " [OK] ${lib}" } else { println " ✗ ${lib} (missing)" missing.add(lib) @@ -321,7 +374,7 @@ tasks.register('verifyLibs') { } if (missing.isEmpty()) { - println "\n✓ All required libraries are present" + println "\n[OK] All required libraries are present" } else { println "\n⚠ Missing libraries: ${missing.join(', ')}" println "Run 'gradle loadLibs' to download missing libraries" @@ -348,7 +401,7 @@ tasks.register('buildProject') { println " - Processing configuration files..." println " - Preparing distribution files..." - println "✓ Build completed successfully" + println "[OK] Build completed successfully" } } @@ -385,10 +438,10 @@ tasks.register('hashAll') { hashFile.append("${file.name}\n") hashFile.append(" MD5: ${md5}\n") hashFile.append(" SHA256: ${sha256}\n\n") - println " ✓ ${file.name}" + println " [OK] ${file.name}" } - println "✓ Hash files generated: ${hashFile.absolutePath}" + println "[OK] Hash files generated: ${hashFile.absolutePath}" } } @@ -435,7 +488,7 @@ tasks.register('packageDist') { } } - println "✓ Distribution packaged: ${distFile.name}" + println "[OK] Distribution packaged: ${distFile.name}" println " Size: ${String.format('%.2f MB', distFile.length() / 1024 / 1024)}" } } @@ -540,9 +593,9 @@ def executeCommand(String command, File workingDir = projectDir) { // This is compatible with configuration cache gradle.taskGraph.whenReady { graph -> println """ - ╔══════════════════════════════════════════════════════════��═════╗ - ║ Bearsampp Build - Pure Gradle ║ - ║ Version: ${project.version.padRight(52)}║ - ╚════════════════════════════════════════════════════════════════╝ + ================================================================ + Bearsampp Build - Pure Gradle + Version: ${project.version} + ================================================================ """.stripIndent() } diff --git a/gradle.properties b/gradle.properties index 3cf2e92..74c218f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -31,7 +31,7 @@ org.gradle.caching=true # Enable configuration cache (experimental but stable) # Significantly speeds up configuration phase -org.gradle.configuration-cache=true +org.gradle.configuration-cache=false # Configure on demand (faster for multi-project builds) # Set to false for single project builds @@ -95,6 +95,22 @@ org.gradle.workers.max=4 #systemProp.https.proxyUser=username #systemProp.https.proxyPassword=password +# ============================================================================ +# TOOL URLS +# ============================================================================ + +# Composer download URL +composer.url=https://github.com/composer/composer/releases/download/2.9.2/composer.phar + +# InnoExtract download URL +innoextract.url=https://constexpr.org/innoextract/files/innoextract-1.9-windows.zip + +# InnoSetup download URL (using older version compatible with innoextract 1.9) +innosetup.url=https://files.jrsoftware.org/is/6/innosetup-6.2.2.exe + +# HashMyFiles download URL +hashmyfiles.url=https://www.nirsoft.net/utils/hashmyfiles-x64.zip + # ============================================================================ # DEBUGGING # ============================================================================ diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..1b33c55 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..ca025c8 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/modules/prerequisites/README.md b/modules/prerequisites/README.md new file mode 100644 index 0000000..20297df --- /dev/null +++ b/modules/prerequisites/README.md @@ -0,0 +1,59 @@ +# Prerequisites Module + +This module builds prerequisite packages using InnoSetup and other tools from the parent dev project. + +## Setup + +1. First, ensure tools are downloaded in the root project: + ```bash + cd E:/Bearsampp-development/dev + gradle loadLibs + ``` + +2. Verify tools are available: + ```bash + gradle :modules:prerequisites:verifyTools + ``` + +## Building + +To build all prerequisite packages: +```bash +gradle :modules:prerequisites:build +``` + +Or from within the module directory: +```bash +cd modules/prerequisites +gradle build +``` + +## How It Works + +The module automatically: +- Accesses InnoSetup compiler from `rootProject.ext.innosetupCompiler` +- Finds all `.iss` files in the module directory +- Compiles them using InnoSetup +- Outputs compiled installers to the build directory + +## Available Tasks + +- `gradle :modules:prerequisites:build` - Build all prerequisites +- `gradle :modules:prerequisites:verifyTools` - Verify required tools are available +- `gradle :modules:prerequisites:cleanModule` - Clean build artifacts +- `gradle :modules:prerequisites:initModule` - Initialize module directories + +## Adding New Prerequisites + +1. Create an InnoSetup script (`.iss` file) in this directory +2. Run `gradle build` - it will automatically be compiled + +## Tool Paths + +The module accesses these tools from the parent project: +- **InnoSetup Compiler**: `rootProject.ext.innosetupCompiler` +- **InnoSetup Path**: `rootProject.ext.innosetupPath` +- **Composer**: `rootProject.ext.composerPath` +- **InnoExtract**: `rootProject.ext.innoextractPath` + +These paths are automatically configured and don't need to be hardcoded. diff --git a/modules/prerequisites/build.gradle b/modules/prerequisites/build.gradle new file mode 100644 index 0000000..7e79e51 --- /dev/null +++ b/modules/prerequisites/build.gradle @@ -0,0 +1,167 @@ +/* + * Bearsampp Prerequisites Module - Gradle Build + * + * This module builds prerequisite packages using InnoSetup + * and other tools provided by the parent dev project. + */ + +plugins { + id 'base' +} + +// Access parent project's tool paths +def devPath = rootProject.ext.devPath +def buildPath = rootProject.ext.buildPath +def innosetupCompiler = rootProject.ext.innosetupCompiler +def innosetupPath = rootProject.ext.innosetupPath +def composerPath = rootProject.ext.composerPath + +// Module-specific paths +ext { + modulePath = projectDir.absolutePath + moduleBuildPath = file("${buildPath}/prerequisites").absolutePath + moduleOutputPath = file("${moduleBuildPath}/output").absolutePath + moduleTmpPath = file("${moduleBuildPath}/tmp").absolutePath +} + +// ============================================================================ +// SETUP TASKS +// ============================================================================ + +tasks.register('initModule') { + group = 'build setup' + description = 'Initialize prerequisites module directories' + + doLast { + mkdir(moduleBuildPath) + mkdir(moduleOutputPath) + mkdir(moduleTmpPath) + println " [OK] Prerequisites module directories initialized" + } +} + +// ============================================================================ +// BUILD TASKS +// ============================================================================ + +tasks.register('buildPrerequisites') { + group = 'build' + description = 'Build all prerequisite packages' + + dependsOn 'initModule' + + doLast { + println "Building prerequisites..." + + // Check if InnoSetup is available + def isccFile = file(innosetupCompiler) + if (!isccFile.exists()) { + throw new GradleException("InnoSetup compiler not found at: ${innosetupCompiler}\nRun 'gradle loadLibs' in the root project first.") + } + + println " Using InnoSetup: ${innosetupCompiler}" + + // Find all .iss files in the module + fileTree(projectDir) { + include '**/*.iss' + }.each { issFile -> + println " Compiling: ${issFile.name}" + + try { + def result = executeCommand("\"${innosetupCompiler}\" /O\"${moduleOutputPath}\" \"${issFile.absolutePath}\"") + + if (result.exitCode == 0) { + println " [OK] ${issFile.name} compiled successfully" + } else { + println " [X] Failed to compile ${issFile.name}" + println " Error: ${result.error}" + } + } catch (Exception e) { + println " [X] Exception compiling ${issFile.name}: ${e.message}" + } + } + + println "[OK] Prerequisites build completed" + } +} + +// ============================================================================ +// VERIFICATION TASKS +// ============================================================================ + +tasks.register('verifyTools') { + group = 'verification' + description = 'Verify that required tools are available' + + doLast { + println "Verifying tools for prerequisites module..." + + def checks = [:] + + // Check InnoSetup + checks['InnoSetup Compiler'] = file(innosetupCompiler).exists() + checks['InnoSetup Directory'] = file(innosetupPath).exists() + + // Check Composer + checks['Composer'] = file(composerPath).exists() + + println "\nTool Check Results:" + println "-".multiply(60) + checks.each { name, passed -> + def status = passed ? "[OK] PASS" : "[X] FAIL" + println " ${status.padRight(12)} ${name}" + } + println "-".multiply(60) + + def allPassed = checks.values().every { it } + if (allPassed) { + println "\n[OK] All tools are available" + } else { + println "\n[!] Some tools are missing" + println "Run 'gradle loadLibs' in the root project to download required tools" + } + } +} + +// ============================================================================ +// CLEAN TASKS +// ============================================================================ + +tasks.register('cleanModule') { + group = 'build' + description = 'Clean prerequisites module build artifacts' + + doLast { + delete moduleBuildPath + println " [OK] Prerequisites module cleaned" + } +} + +// ============================================================================ +// HELPER METHODS +// ============================================================================ + +// Execute shell command +def executeCommand(String command, File workingDir = projectDir) { + def process = command.execute(null, workingDir) + def output = new StringBuilder() + def error = new StringBuilder() + + process.consumeProcessOutput(output, error) + process.waitFor() + + return [ + exitCode: process.exitValue(), + output: output.toString(), + error: error.toString() + ] +} + +// ============================================================================ +// DEFAULT TASK +// ============================================================================ + +// Make 'build' task depend on our custom build +tasks.named('build') { + dependsOn 'buildPrerequisites' +} diff --git a/settings.gradle b/settings.gradle index 56b3f8c..d3c3830 100644 --- a/settings.gradle +++ b/settings.gradle @@ -5,6 +5,10 @@ rootProject.name = 'bearsampp-dev' +// Include subprojects +// Uncomment when prerequisite modules are ready +// include 'modules:prerequisites' + // Enable Gradle features enableFeaturePreview('STABLE_CONFIGURATION_CACHE')