├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── file_version_info.txt ├── generate-zip.py ├── icon.ico ├── icon.png ├── requirements.txt ├── splash.png ├── third-party ├── inno │ ├── Default.isl │ ├── ISCC.exe │ ├── ISCmplr.dll │ ├── ISPP.chm │ ├── ISPP.dll │ ├── ISPPBuiltins.iss │ ├── ISetup.chm │ ├── Languages │ │ ├── Armenian.isl │ │ ├── BrazilianPortuguese.isl │ │ ├── Bulgarian.isl │ │ ├── Catalan.isl │ │ ├── Corsican.isl │ │ ├── Czech.isl │ │ ├── Danish.isl │ │ ├── Dutch.isl │ │ ├── Finnish.isl │ │ ├── French.isl │ │ ├── German.isl │ │ ├── Hebrew.isl │ │ ├── Hungarian.isl │ │ ├── Icelandic.isl │ │ ├── Italian.isl │ │ ├── Japanese.isl │ │ ├── Norwegian.isl │ │ ├── Polish.isl │ │ ├── Portuguese.isl │ │ ├── Russian.isl │ │ ├── Slovak.isl │ │ ├── Slovenian.isl │ │ ├── Spanish.isl │ │ ├── Turkish.isl │ │ └── Ukrainian.isl │ ├── README.txt │ ├── Setup.e32 │ ├── SetupClassicIcon.ico │ ├── SetupLdr.e32 │ ├── WizClassicImage-IS.bmp │ ├── WizClassicImage.bmp │ ├── WizClassicSmallImage-IS.bmp │ ├── WizClassicSmallImage.bmp │ ├── isbunzip.dll │ ├── isbzip.dll │ ├── isfaq.url │ ├── islzma.dll │ ├── islzma32.exe │ ├── islzma64.exe │ ├── isscint.dll │ ├── isunzlib.dll │ ├── iszlib.dll │ ├── license.txt │ └── whatsnew.htm └── rcedit │ ├── README.txt │ └── rcedit-x86.exe └── version.json /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "pip" 4 | directory: "/" 5 | schedule: 6 | interval: "daily" 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | __pycache__ 3 | dist 4 | build 5 | *.spec 6 | upx.exe 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TurboWarp Packager Extras 2 | 3 | Extra utilities to use after running the TurboWarp Packager. Currently, it can: 4 | 5 | - Fix the icon of the executable file 6 | - Create installers 7 | 8 | Most people will want to download the prebuilt versions from https://github.com/TurboWarp/packager-extras/releases 9 | 10 | This is only intended to be run on Windows systems. It may work with things like Wine, but Wine support is not tested and not a priority. 11 | 12 | Written in Python (3.12.2) and PyQt5. 13 | 14 | To build locally: 15 | 16 | ```powershell 17 | # Create virtual env using Python 3.11.9 64-bit 18 | py -3.11 -m venv venv 19 | 20 | # Activate virtual env with the appropriate script for your platform in venv/Scripts, eg. for PowerShell: 21 | .\venv\Scripts\Activate.ps1 22 | 23 | # Install dependencies 24 | pip install -r requirements.txt 25 | 26 | # Start the app for development 27 | python app.py 28 | 29 | # Create executable 30 | pyinstaller --noconsole --noconfirm --clean --add-data 'third-party;third-party' --add-data 'icon.png;.' --name "turbowarp-packager-extras" --version-file file_version_info.txt --icon icon.ico app.py 31 | 32 | # Create zip 33 | python generate-zip.py 34 | ``` 35 | 36 | For each release: 37 | 38 | - Update VERSION in app.py 39 | - Update various versions in file_version_info.txt 40 | 41 | The final executable will be stored in the `dist` folder. 42 | 43 | Some third-party executables are included inside the repository in the `third-party` folder. See the relevant "README.txt" documents in each folder for more information. 44 | 45 | ## License 46 | 47 | TurboWarp Packager Extras is licensed under the GNU General Public License version 3. See LICENSE for more information. 48 | 49 | The output of TurboWarp Packager Extras is a derivative work of the packaged project you selected but NOT a derivative work of TurboWarp Packager Extras itself. 50 | -------------------------------------------------------------------------------- /file_version_info.txt: -------------------------------------------------------------------------------- 1 | # Template was generated from an Electron EXE and pyi-grab_version 2 | # 3 | # UTF-8 4 | # 5 | # For more details about fixed file info 'ffi' see: 6 | # http://msdn.microsoft.com/en-us/library/ms646997.aspx 7 | VSVersionInfo( 8 | ffi=FixedFileInfo( 9 | # filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4) 10 | # Set not needed items to zero 0. 11 | filevers=(1, 8, 0, 0), 12 | prodvers=(1, 8, 0, 0), 13 | # Contains a bitmask that specifies the valid bits 'flags'r 14 | mask=0x3f, 15 | # Contains a bitmask that specifies the Boolean attributes of the file. 16 | flags=0x0, 17 | # The operating system for which this file was designed. 18 | # 0x4 - NT and there is no need to change it. 19 | OS=0x4, 20 | # The general type of file. 21 | # 0x1 - the file is an application. 22 | fileType=0x1, 23 | # The function of the file. 24 | # 0x0 - the function is not defined for this fileType 25 | subtype=0x0, 26 | # Creation date and time stamp. 27 | date=(0, 0) 28 | ), 29 | kids=[ 30 | StringFileInfo( 31 | [ 32 | StringTable( 33 | '040904b0', 34 | [StringStruct('CompanyName', 'Thomas Weber'), 35 | StringStruct('FileDescription', 'TurboWarp Packager Extras'), 36 | StringStruct('FileVersion', '1.8.0'), 37 | StringStruct('InternalName', 'turbowarp-packager-extras.exe'), 38 | StringStruct('LegalCopyright', 'Copyright (C) 2022-2024 Thomas Weber'), 39 | StringStruct('OriginalFilename', ''), 40 | StringStruct('ProductName', 'TurboWarp Packager Extras'), 41 | StringStruct('ProductVersion', '1.8.0')]) 42 | ]), 43 | VarFileInfo([VarStruct('Translation', [1033, 1200])]) 44 | ] 45 | ) -------------------------------------------------------------------------------- /generate-zip.py: -------------------------------------------------------------------------------- 1 | # PowerShell's Compress-Archive creates zips that unix tools have a lot of trouble 2 | # understanding, so we use this small script instead. This makes it easier for people 3 | # to extract and run the program using Wine. 4 | 5 | import shutil 6 | name = shutil.make_archive('dist/turbowarp-packager-extras', 'zip', 'dist', 'turbowarp-packager-extras') 7 | print(f'Generated {name}') 8 | -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/icon.ico -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/icon.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | altgraph==0.17.4 2 | packaging==25.0 3 | pefile==2024.8.26 4 | pillow==11.2.1 5 | pyinstaller==6.13.0 6 | pyinstaller-hooks-contrib==2025.4 7 | PyQt5==5.15.11 8 | PyQt5-Qt5==5.15.2 9 | PyQt5-sip==12.17.0 10 | pywin32-ctypes==0.2.3 -------------------------------------------------------------------------------- /splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/splash.png -------------------------------------------------------------------------------- /third-party/inno/Default.isl: -------------------------------------------------------------------------------- 1 | ; *** Inno Setup version 6.1.0+ English messages *** 2 | ; 3 | ; To download user-contributed translations of this file, go to: 4 | ; https://jrsoftware.org/files/istrans/ 5 | ; 6 | ; Note: When translating this text, do not add periods (.) to the end of 7 | ; messages that didn't have them already, because on those messages Inno 8 | ; Setup adds the periods automatically (appending a period would result in 9 | ; two periods being displayed). 10 | 11 | [LangOptions] 12 | ; The following three entries are very important. Be sure to read and 13 | ; understand the '[LangOptions] section' topic in the help file. 14 | LanguageName=English 15 | LanguageID=$0409 16 | LanguageCodePage=0 17 | ; If the language you are translating to requires special font faces or 18 | ; sizes, uncomment any of the following entries and change them accordingly. 19 | ;DialogFontName= 20 | ;DialogFontSize=8 21 | ;WelcomeFontName=Verdana 22 | ;WelcomeFontSize=12 23 | ;TitleFontName=Arial 24 | ;TitleFontSize=29 25 | ;CopyrightFontName=Arial 26 | ;CopyrightFontSize=8 27 | 28 | [Messages] 29 | 30 | ; *** Application titles 31 | SetupAppTitle=Setup 32 | SetupWindowTitle=Setup - %1 33 | UninstallAppTitle=Uninstall 34 | UninstallAppFullTitle=%1 Uninstall 35 | 36 | ; *** Misc. common 37 | InformationTitle=Information 38 | ConfirmTitle=Confirm 39 | ErrorTitle=Error 40 | 41 | ; *** SetupLdr messages 42 | SetupLdrStartupMessage=This will install %1. Do you wish to continue? 43 | LdrCannotCreateTemp=Unable to create a temporary file. Setup aborted 44 | LdrCannotExecTemp=Unable to execute file in the temporary directory. Setup aborted 45 | HelpTextNote= 46 | 47 | ; *** Startup error messages 48 | LastErrorMessage=%1.%n%nError %2: %3 49 | SetupFileMissing=The file %1 is missing from the installation directory. Please correct the problem or obtain a new copy of the program. 50 | SetupFileCorrupt=The setup files are corrupted. Please obtain a new copy of the program. 51 | SetupFileCorruptOrWrongVer=The setup files are corrupted, or are incompatible with this version of Setup. Please correct the problem or obtain a new copy of the program. 52 | InvalidParameter=An invalid parameter was passed on the command line:%n%n%1 53 | SetupAlreadyRunning=Setup is already running. 54 | WindowsVersionNotSupported=This program does not support the version of Windows your computer is running. 55 | WindowsServicePackRequired=This program requires %1 Service Pack %2 or later. 56 | NotOnThisPlatform=This program will not run on %1. 57 | OnlyOnThisPlatform=This program must be run on %1. 58 | OnlyOnTheseArchitectures=This program can only be installed on versions of Windows designed for the following processor architectures:%n%n%1 59 | WinVersionTooLowError=This program requires %1 version %2 or later. 60 | WinVersionTooHighError=This program cannot be installed on %1 version %2 or later. 61 | AdminPrivilegesRequired=You must be logged in as an administrator when installing this program. 62 | PowerUserPrivilegesRequired=You must be logged in as an administrator or as a member of the Power Users group when installing this program. 63 | SetupAppRunningError=Setup has detected that %1 is currently running.%n%nPlease close all instances of it now, then click OK to continue, or Cancel to exit. 64 | UninstallAppRunningError=Uninstall has detected that %1 is currently running.%n%nPlease close all instances of it now, then click OK to continue, or Cancel to exit. 65 | 66 | ; *** Startup questions 67 | PrivilegesRequiredOverrideTitle=Select Setup Install Mode 68 | PrivilegesRequiredOverrideInstruction=Select install mode 69 | PrivilegesRequiredOverrideText1=%1 can be installed for all users (requires administrative privileges), or for you only. 70 | PrivilegesRequiredOverrideText2=%1 can be installed for you only, or for all users (requires administrative privileges). 71 | PrivilegesRequiredOverrideAllUsers=Install for &all users 72 | PrivilegesRequiredOverrideAllUsersRecommended=Install for &all users (recommended) 73 | PrivilegesRequiredOverrideCurrentUser=Install for &me only 74 | PrivilegesRequiredOverrideCurrentUserRecommended=Install for &me only (recommended) 75 | 76 | ; *** Misc. errors 77 | ErrorCreatingDir=Setup was unable to create the directory "%1" 78 | ErrorTooManyFilesInDir=Unable to create a file in the directory "%1" because it contains too many files 79 | 80 | ; *** Setup common messages 81 | ExitSetupTitle=Exit Setup 82 | ExitSetupMessage=Setup is not complete. If you exit now, the program will not be installed.%n%nYou may run Setup again at another time to complete the installation.%n%nExit Setup? 83 | AboutSetupMenuItem=&About Setup... 84 | AboutSetupTitle=About Setup 85 | AboutSetupMessage=%1 version %2%n%3%n%n%1 home page:%n%4 86 | AboutSetupNote= 87 | TranslatorNote= 88 | 89 | ; *** Buttons 90 | ButtonBack=< &Back 91 | ButtonNext=&Next > 92 | ButtonInstall=&Install 93 | ButtonOK=OK 94 | ButtonCancel=Cancel 95 | ButtonYes=&Yes 96 | ButtonYesToAll=Yes to &All 97 | ButtonNo=&No 98 | ButtonNoToAll=N&o to All 99 | ButtonFinish=&Finish 100 | ButtonBrowse=&Browse... 101 | ButtonWizardBrowse=B&rowse... 102 | ButtonNewFolder=&Make New Folder 103 | 104 | ; *** "Select Language" dialog messages 105 | SelectLanguageTitle=Select Setup Language 106 | SelectLanguageLabel=Select the language to use during the installation. 107 | 108 | ; *** Common wizard text 109 | ClickNext=Click Next to continue, or Cancel to exit Setup. 110 | BeveledLabel= 111 | BrowseDialogTitle=Browse For Folder 112 | BrowseDialogLabel=Select a folder in the list below, then click OK. 113 | NewFolderName=New Folder 114 | 115 | ; *** "Welcome" wizard page 116 | WelcomeLabel1=Welcome to the [name] Setup Wizard 117 | WelcomeLabel2=This will install [name/ver] on your computer.%n%nIt is recommended that you close all other applications before continuing. 118 | 119 | ; *** "Password" wizard page 120 | WizardPassword=Password 121 | PasswordLabel1=This installation is password protected. 122 | PasswordLabel3=Please provide the password, then click Next to continue. Passwords are case-sensitive. 123 | PasswordEditLabel=&Password: 124 | IncorrectPassword=The password you entered is not correct. Please try again. 125 | 126 | ; *** "License Agreement" wizard page 127 | WizardLicense=License Agreement 128 | LicenseLabel=Please read the following important information before continuing. 129 | LicenseLabel3=Please read the following License Agreement. You must accept the terms of this agreement before continuing with the installation. 130 | LicenseAccepted=I &accept the agreement 131 | LicenseNotAccepted=I &do not accept the agreement 132 | 133 | ; *** "Information" wizard pages 134 | WizardInfoBefore=Information 135 | InfoBeforeLabel=Please read the following important information before continuing. 136 | InfoBeforeClickLabel=When you are ready to continue with Setup, click Next. 137 | WizardInfoAfter=Information 138 | InfoAfterLabel=Please read the following important information before continuing. 139 | InfoAfterClickLabel=When you are ready to continue with Setup, click Next. 140 | 141 | ; *** "User Information" wizard page 142 | WizardUserInfo=User Information 143 | UserInfoDesc=Please enter your information. 144 | UserInfoName=&User Name: 145 | UserInfoOrg=&Organization: 146 | UserInfoSerial=&Serial Number: 147 | UserInfoNameRequired=You must enter a name. 148 | 149 | ; *** "Select Destination Location" wizard page 150 | WizardSelectDir=Select Destination Location 151 | SelectDirDesc=Where should [name] be installed? 152 | SelectDirLabel3=Setup will install [name] into the following folder. 153 | SelectDirBrowseLabel=To continue, click Next. If you would like to select a different folder, click Browse. 154 | DiskSpaceGBLabel=At least [gb] GB of free disk space is required. 155 | DiskSpaceMBLabel=At least [mb] MB of free disk space is required. 156 | CannotInstallToNetworkDrive=Setup cannot install to a network drive. 157 | CannotInstallToUNCPath=Setup cannot install to a UNC path. 158 | InvalidPath=You must enter a full path with drive letter; for example:%n%nC:\APP%n%nor a UNC path in the form:%n%n\\server\share 159 | InvalidDrive=The drive or UNC share you selected does not exist or is not accessible. Please select another. 160 | DiskSpaceWarningTitle=Not Enough Disk Space 161 | DiskSpaceWarning=Setup requires at least %1 KB of free space to install, but the selected drive only has %2 KB available.%n%nDo you want to continue anyway? 162 | DirNameTooLong=The folder name or path is too long. 163 | InvalidDirName=The folder name is not valid. 164 | BadDirName32=Folder names cannot include any of the following characters:%n%n%1 165 | DirExistsTitle=Folder Exists 166 | DirExists=The folder:%n%n%1%n%nalready exists. Would you like to install to that folder anyway? 167 | DirDoesntExistTitle=Folder Does Not Exist 168 | DirDoesntExist=The folder:%n%n%1%n%ndoes not exist. Would you like the folder to be created? 169 | 170 | ; *** "Select Components" wizard page 171 | WizardSelectComponents=Select Components 172 | SelectComponentsDesc=Which components should be installed? 173 | SelectComponentsLabel2=Select the components you want to install; clear the components you do not want to install. Click Next when you are ready to continue. 174 | FullInstallation=Full installation 175 | ; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) 176 | CompactInstallation=Compact installation 177 | CustomInstallation=Custom installation 178 | NoUninstallWarningTitle=Components Exist 179 | NoUninstallWarning=Setup has detected that the following components are already installed on your computer:%n%n%1%n%nDeselecting these components will not uninstall them.%n%nWould you like to continue anyway? 180 | ComponentSize1=%1 KB 181 | ComponentSize2=%1 MB 182 | ComponentsDiskSpaceGBLabel=Current selection requires at least [gb] GB of disk space. 183 | ComponentsDiskSpaceMBLabel=Current selection requires at least [mb] MB of disk space. 184 | 185 | ; *** "Select Additional Tasks" wizard page 186 | WizardSelectTasks=Select Additional Tasks 187 | SelectTasksDesc=Which additional tasks should be performed? 188 | SelectTasksLabel2=Select the additional tasks you would like Setup to perform while installing [name], then click Next. 189 | 190 | ; *** "Select Start Menu Folder" wizard page 191 | WizardSelectProgramGroup=Select Start Menu Folder 192 | SelectStartMenuFolderDesc=Where should Setup place the program's shortcuts? 193 | SelectStartMenuFolderLabel3=Setup will create the program's shortcuts in the following Start Menu folder. 194 | SelectStartMenuFolderBrowseLabel=To continue, click Next. If you would like to select a different folder, click Browse. 195 | MustEnterGroupName=You must enter a folder name. 196 | GroupNameTooLong=The folder name or path is too long. 197 | InvalidGroupName=The folder name is not valid. 198 | BadGroupName=The folder name cannot include any of the following characters:%n%n%1 199 | NoProgramGroupCheck2=&Don't create a Start Menu folder 200 | 201 | ; *** "Ready to Install" wizard page 202 | WizardReady=Ready to Install 203 | ReadyLabel1=Setup is now ready to begin installing [name] on your computer. 204 | ReadyLabel2a=Click Install to continue with the installation, or click Back if you want to review or change any settings. 205 | ReadyLabel2b=Click Install to continue with the installation. 206 | ReadyMemoUserInfo=User information: 207 | ReadyMemoDir=Destination location: 208 | ReadyMemoType=Setup type: 209 | ReadyMemoComponents=Selected components: 210 | ReadyMemoGroup=Start Menu folder: 211 | ReadyMemoTasks=Additional tasks: 212 | 213 | ; *** TDownloadWizardPage wizard page and DownloadTemporaryFile 214 | DownloadingLabel=Downloading additional files... 215 | ButtonStopDownload=&Stop download 216 | StopDownload=Are you sure you want to stop the download? 217 | ErrorDownloadAborted=Download aborted 218 | ErrorDownloadFailed=Download failed: %1 %2 219 | ErrorDownloadSizeFailed=Getting size failed: %1 %2 220 | ErrorFileHash1=File hash failed: %1 221 | ErrorFileHash2=Invalid file hash: expected %1, found %2 222 | ErrorProgress=Invalid progress: %1 of %2 223 | ErrorFileSize=Invalid file size: expected %1, found %2 224 | 225 | ; *** "Preparing to Install" wizard page 226 | WizardPreparing=Preparing to Install 227 | PreparingDesc=Setup is preparing to install [name] on your computer. 228 | PreviousInstallNotCompleted=The installation/removal of a previous program was not completed. You will need to restart your computer to complete that installation.%n%nAfter restarting your computer, run Setup again to complete the installation of [name]. 229 | CannotContinue=Setup cannot continue. Please click Cancel to exit. 230 | ApplicationsFound=The following applications are using files that need to be updated by Setup. It is recommended that you allow Setup to automatically close these applications. 231 | ApplicationsFound2=The following applications are using files that need to be updated by Setup. It is recommended that you allow Setup to automatically close these applications. After the installation has completed, Setup will attempt to restart the applications. 232 | CloseApplications=&Automatically close the applications 233 | DontCloseApplications=&Do not close the applications 234 | ErrorCloseApplications=Setup was unable to automatically close all applications. It is recommended that you close all applications using files that need to be updated by Setup before continuing. 235 | PrepareToInstallNeedsRestart=Setup must restart your computer. After restarting your computer, run Setup again to complete the installation of [name].%n%nWould you like to restart now? 236 | 237 | ; *** "Installing" wizard page 238 | WizardInstalling=Installing 239 | InstallingLabel=Please wait while Setup installs [name] on your computer. 240 | 241 | ; *** "Setup Completed" wizard page 242 | FinishedHeadingLabel=Completing the [name] Setup Wizard 243 | FinishedLabelNoIcons=Setup has finished installing [name] on your computer. 244 | FinishedLabel=Setup has finished installing [name] on your computer. The application may be launched by selecting the installed shortcuts. 245 | ClickFinish=Click Finish to exit Setup. 246 | FinishedRestartLabel=To complete the installation of [name], Setup must restart your computer. Would you like to restart now? 247 | FinishedRestartMessage=To complete the installation of [name], Setup must restart your computer.%n%nWould you like to restart now? 248 | ShowReadmeCheck=Yes, I would like to view the README file 249 | YesRadio=&Yes, restart the computer now 250 | NoRadio=&No, I will restart the computer later 251 | ; used for example as 'Run MyProg.exe' 252 | RunEntryExec=Run %1 253 | ; used for example as 'View Readme.txt' 254 | RunEntryShellExec=View %1 255 | 256 | ; *** "Setup Needs the Next Disk" stuff 257 | ChangeDiskTitle=Setup Needs the Next Disk 258 | SelectDiskLabel2=Please insert Disk %1 and click OK.%n%nIf the files on this disk can be found in a folder other than the one displayed below, enter the correct path or click Browse. 259 | PathLabel=&Path: 260 | FileNotInDir2=The file "%1" could not be located in "%2". Please insert the correct disk or select another folder. 261 | SelectDirectoryLabel=Please specify the location of the next disk. 262 | 263 | ; *** Installation phase messages 264 | SetupAborted=Setup was not completed.%n%nPlease correct the problem and run Setup again. 265 | AbortRetryIgnoreSelectAction=Select action 266 | AbortRetryIgnoreRetry=&Try again 267 | AbortRetryIgnoreIgnore=&Ignore the error and continue 268 | AbortRetryIgnoreCancel=Cancel installation 269 | 270 | ; *** Installation status messages 271 | StatusClosingApplications=Closing applications... 272 | StatusCreateDirs=Creating directories... 273 | StatusExtractFiles=Extracting files... 274 | StatusCreateIcons=Creating shortcuts... 275 | StatusCreateIniEntries=Creating INI entries... 276 | StatusCreateRegistryEntries=Creating registry entries... 277 | StatusRegisterFiles=Registering files... 278 | StatusSavingUninstall=Saving uninstall information... 279 | StatusRunProgram=Finishing installation... 280 | StatusRestartingApplications=Restarting applications... 281 | StatusRollback=Rolling back changes... 282 | 283 | ; *** Misc. errors 284 | ErrorInternal2=Internal error: %1 285 | ErrorFunctionFailedNoCode=%1 failed 286 | ErrorFunctionFailed=%1 failed; code %2 287 | ErrorFunctionFailedWithMessage=%1 failed; code %2.%n%3 288 | ErrorExecutingProgram=Unable to execute file:%n%1 289 | 290 | ; *** Registry errors 291 | ErrorRegOpenKey=Error opening registry key:%n%1\%2 292 | ErrorRegCreateKey=Error creating registry key:%n%1\%2 293 | ErrorRegWriteKey=Error writing to registry key:%n%1\%2 294 | 295 | ; *** INI errors 296 | ErrorIniEntry=Error creating INI entry in file "%1". 297 | 298 | ; *** File copying errors 299 | FileAbortRetryIgnoreSkipNotRecommended=&Skip this file (not recommended) 300 | FileAbortRetryIgnoreIgnoreNotRecommended=&Ignore the error and continue (not recommended) 301 | SourceIsCorrupted=The source file is corrupted 302 | SourceDoesntExist=The source file "%1" does not exist 303 | ExistingFileReadOnly2=The existing file could not be replaced because it is marked read-only. 304 | ExistingFileReadOnlyRetry=&Remove the read-only attribute and try again 305 | ExistingFileReadOnlyKeepExisting=&Keep the existing file 306 | ErrorReadingExistingDest=An error occurred while trying to read the existing file: 307 | FileExistsSelectAction=Select action 308 | FileExists2=The file already exists. 309 | FileExistsOverwriteExisting=&Overwrite the existing file 310 | FileExistsKeepExisting=&Keep the existing file 311 | FileExistsOverwriteOrKeepAll=&Do this for the next conflicts 312 | ExistingFileNewerSelectAction=Select action 313 | ExistingFileNewer2=The existing file is newer than the one Setup is trying to install. 314 | ExistingFileNewerOverwriteExisting=&Overwrite the existing file 315 | ExistingFileNewerKeepExisting=&Keep the existing file (recommended) 316 | ExistingFileNewerOverwriteOrKeepAll=&Do this for the next conflicts 317 | ErrorChangingAttr=An error occurred while trying to change the attributes of the existing file: 318 | ErrorCreatingTemp=An error occurred while trying to create a file in the destination directory: 319 | ErrorReadingSource=An error occurred while trying to read the source file: 320 | ErrorCopying=An error occurred while trying to copy a file: 321 | ErrorReplacingExistingFile=An error occurred while trying to replace the existing file: 322 | ErrorRestartReplace=RestartReplace failed: 323 | ErrorRenamingTemp=An error occurred while trying to rename a file in the destination directory: 324 | ErrorRegisterServer=Unable to register the DLL/OCX: %1 325 | ErrorRegSvr32Failed=RegSvr32 failed with exit code %1 326 | ErrorRegisterTypeLib=Unable to register the type library: %1 327 | 328 | ; *** Uninstall display name markings 329 | ; used for example as 'My Program (32-bit)' 330 | UninstallDisplayNameMark=%1 (%2) 331 | ; used for example as 'My Program (32-bit, All users)' 332 | UninstallDisplayNameMarks=%1 (%2, %3) 333 | UninstallDisplayNameMark32Bit=32-bit 334 | UninstallDisplayNameMark64Bit=64-bit 335 | UninstallDisplayNameMarkAllUsers=All users 336 | UninstallDisplayNameMarkCurrentUser=Current user 337 | 338 | ; *** Post-installation errors 339 | ErrorOpeningReadme=An error occurred while trying to open the README file. 340 | ErrorRestartingComputer=Setup was unable to restart the computer. Please do this manually. 341 | 342 | ; *** Uninstaller messages 343 | UninstallNotFound=File "%1" does not exist. Cannot uninstall. 344 | UninstallOpenError=File "%1" could not be opened. Cannot uninstall 345 | UninstallUnsupportedVer=The uninstall log file "%1" is in a format not recognized by this version of the uninstaller. Cannot uninstall 346 | UninstallUnknownEntry=An unknown entry (%1) was encountered in the uninstall log 347 | ConfirmUninstall=Are you sure you want to completely remove %1 and all of its components? 348 | UninstallOnlyOnWin64=This installation can only be uninstalled on 64-bit Windows. 349 | OnlyAdminCanUninstall=This installation can only be uninstalled by a user with administrative privileges. 350 | UninstallStatusLabel=Please wait while %1 is removed from your computer. 351 | UninstalledAll=%1 was successfully removed from your computer. 352 | UninstalledMost=%1 uninstall complete.%n%nSome elements could not be removed. These can be removed manually. 353 | UninstalledAndNeedsRestart=To complete the uninstallation of %1, your computer must be restarted.%n%nWould you like to restart now? 354 | UninstallDataCorrupted="%1" file is corrupted. Cannot uninstall 355 | 356 | ; *** Uninstallation phase messages 357 | ConfirmDeleteSharedFileTitle=Remove Shared File? 358 | ConfirmDeleteSharedFile2=The system indicates that the following shared file is no longer in use by any programs. Would you like for Uninstall to remove this shared file?%n%nIf any programs are still using this file and it is removed, those programs may not function properly. If you are unsure, choose No. Leaving the file on your system will not cause any harm. 359 | SharedFileNameLabel=File name: 360 | SharedFileLocationLabel=Location: 361 | WizardUninstalling=Uninstall Status 362 | StatusUninstalling=Uninstalling %1... 363 | 364 | ; *** Shutdown block reasons 365 | ShutdownBlockReasonInstallingApp=Installing %1. 366 | ShutdownBlockReasonUninstallingApp=Uninstalling %1. 367 | 368 | ; The custom messages below aren't used by Setup itself, but if you make 369 | ; use of them in your scripts, you'll want to translate them. 370 | 371 | [CustomMessages] 372 | 373 | NameAndVersion=%1 version %2 374 | AdditionalIcons=Additional shortcuts: 375 | CreateDesktopIcon=Create a &desktop shortcut 376 | CreateQuickLaunchIcon=Create a &Quick Launch shortcut 377 | ProgramOnTheWeb=%1 on the Web 378 | UninstallProgram=Uninstall %1 379 | LaunchProgram=Launch %1 380 | AssocFileExtension=&Associate %1 with the %2 file extension 381 | AssocingFileExtension=Associating %1 with the %2 file extension... 382 | AutoStartProgramGroupDescription=Startup: 383 | AutoStartProgram=Automatically start %1 384 | AddonHostProgramNotFound=%1 could not be located in the folder you selected.%n%nDo you want to continue anyway? 385 | -------------------------------------------------------------------------------- /third-party/inno/ISCC.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/ISCC.exe -------------------------------------------------------------------------------- /third-party/inno/ISCmplr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/ISCmplr.dll -------------------------------------------------------------------------------- /third-party/inno/ISPP.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/ISPP.chm -------------------------------------------------------------------------------- /third-party/inno/ISPP.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/ISPP.dll -------------------------------------------------------------------------------- /third-party/inno/ISPPBuiltins.iss: -------------------------------------------------------------------------------- 1 | // Inno Setup Preprocessor 2 | // 3 | // Inno Setup (C) 1997-2023 Jordan Russell. All Rights Reserved. 4 | // Portions Copyright (C) 2000-2023 Martijn Laan. All Rights Reserved. 5 | // Portions Copyright (C) 2001-2004 Alex Yackimoff. All Rights Reserved. 6 | // 7 | // See the ISPP help file for more documentation of the functions defined by this file 8 | // 9 | #if defined(ISPP_INVOKED) && !defined(_BUILTINS_ISS_) 10 | // 11 | #if PREPROCVER < 0x01000000 12 | # error Inno Setup Preprocessor version is outdated 13 | #endif 14 | // 15 | #define _BUILTINS_ISS_ 16 | // 17 | #ifdef __OPT_E__ 18 | # define private EnableOptE 19 | # pragma option -e- 20 | #endif 21 | 22 | #ifndef __POPT_P__ 23 | # define private DisablePOptP 24 | #else 25 | # pragma parseroption -p- 26 | #endif 27 | 28 | #define NewLine "\n" 29 | #define Tab "\t" 30 | 31 | #pragma parseroption -p+ 32 | 33 | #pragma spansymbol "\" 34 | 35 | #define True 1 36 | #define False 0 37 | #define Yes True 38 | #define No False 39 | 40 | #define MaxInt 0x7FFFFFFFFFFFFFFFL 41 | #define MinInt 0x8000000000000000L 42 | 43 | #define NULL 44 | #define void 45 | 46 | // TypeOf constants 47 | 48 | #define TYPE_ERROR 0 49 | #define TYPE_NULL 1 50 | #define TYPE_INTEGER 2 51 | #define TYPE_STRING 3 52 | #define TYPE_MACRO 4 53 | #define TYPE_FUNC 5 54 | #define TYPE_ARRAY 6 55 | 56 | // Helper macro to find out the type of an array element or expression. TypeOf 57 | // standard function only allows identifier as its parameter. Use this macro 58 | // to convert an expression to identifier. 59 | 60 | #define TypeOf2(any Expr) TypeOf(Expr) 61 | 62 | // ReadReg constants 63 | 64 | #define HKEY_CLASSES_ROOT 0x80000000UL 65 | #define HKEY_CURRENT_USER 0x80000001UL 66 | #define HKEY_LOCAL_MACHINE 0x80000002UL 67 | #define HKEY_USERS 0x80000003UL 68 | #define HKEY_CURRENT_CONFIG 0x80000005UL 69 | #define HKEY_CLASSES_ROOT_64 0x82000000UL 70 | #define HKEY_CURRENT_USER_64 0x82000001UL 71 | #define HKEY_LOCAL_MACHINE_64 0x82000002UL 72 | #define HKEY_USERS_64 0x82000003UL 73 | #define HKEY_CURRENT_CONFIG_64 0x82000005UL 74 | 75 | #define HKCR HKEY_CLASSES_ROOT 76 | #define HKCU HKEY_CURRENT_USER 77 | #define HKLM HKEY_LOCAL_MACHINE 78 | #define HKU HKEY_USERS 79 | #define HKCC HKEY_CURRENT_CONFIG 80 | #define HKCR64 HKEY_CLASSES_ROOT_64 81 | #define HKCU64 HKEY_CURRENT_USER_64 82 | #define HKLM64 HKEY_LOCAL_MACHINE_64 83 | #define HKU64 HKEY_USERS_64 84 | #define HKCC64 HKEY_CURRENT_CONFIG_64 85 | 86 | // Exec constants 87 | 88 | #define SW_HIDE 0 89 | #define SW_SHOWNORMAL 1 90 | #define SW_NORMAL 1 91 | #define SW_SHOWMINIMIZED 2 92 | #define SW_SHOWMAXIMIZED 3 93 | #define SW_MAXIMIZE 3 94 | #define SW_SHOWNOACTIVATE 4 95 | #define SW_SHOW 5 96 | #define SW_MINIMIZE 6 97 | #define SW_SHOWMINNOACTIVE 7 98 | #define SW_SHOWNA 8 99 | #define SW_RESTORE 9 100 | #define SW_SHOWDEFAULT 10 101 | #define SW_MAX 10 102 | 103 | // Find constants 104 | 105 | #define FIND_MATCH 0x00 106 | #define FIND_BEGINS 0x01 107 | #define FIND_ENDS 0x02 108 | #define FIND_CONTAINS 0x03 109 | #define FIND_CASESENSITIVE 0x04 110 | #define FIND_SENSITIVE FIND_CASESENSITIVE 111 | #define FIND_AND 0x00 112 | #define FIND_OR 0x08 113 | #define FIND_NOT 0x10 114 | #define FIND_TRIM 0x20 115 | 116 | // FindFirst constants 117 | 118 | #define faReadOnly 0x00000001 119 | #define faHidden 0x00000002 120 | #define faSysFile 0x00000004 121 | #define faVolumeID 0x00000008 122 | #define faDirectory 0x00000010 123 | #define faArchive 0x00000020 124 | #define faSymLink 0x00000040 125 | #define faAnyFile 0x0000003F 126 | 127 | // GetStringFileInfo standard names 128 | 129 | #define COMPANY_NAME "CompanyName" 130 | #define FILE_DESCRIPTION "FileDescription" 131 | #define FILE_VERSION "FileVersion" 132 | #define INTERNAL_NAME "InternalName" 133 | #define LEGAL_COPYRIGHT "LegalCopyright" 134 | #define ORIGINAL_FILENAME "OriginalFilename" 135 | #define PRODUCT_NAME "ProductName" 136 | #define PRODUCT_VERSION "ProductVersion" 137 | 138 | // GetStringFileInfo helpers 139 | 140 | #define GetFileCompany(str FileName) GetStringFileInfo(FileName, COMPANY_NAME) 141 | #define GetFileDescription(str FileName) GetStringFileInfo(FileName, FILE_DESCRIPTION) 142 | #define GetFileVersionString(str FileName) GetStringFileInfo(FileName, FILE_VERSION) 143 | #define GetFileCopyright(str FileName) GetStringFileInfo(FileName, LEGAL_COPYRIGHT) 144 | #define GetFileOriginalFilename(str FileName) GetStringFileInfo(FileName, ORIGINAL_FILENAME) 145 | #define GetFileProductVersion(str FileName) GetStringFileInfo(FileName, PRODUCT_VERSION) 146 | 147 | #define DeleteToFirstPeriod(str *S) \ 148 | Local[1] = Copy(S, 1, (Local[0] = Pos(".", S)) - 1), \ 149 | S = Copy(S, Local[0] + 1), \ 150 | Local[1] 151 | 152 | #define GetVersionComponents(str FileName, *Major, *Minor, *Rev, *Build) \ 153 | Local[1] = Local[0] = GetVersionNumbersString(FileName), \ 154 | Local[1] == "" ? "" : ( \ 155 | Major = Int(DeleteToFirstPeriod(Local[1])), \ 156 | Minor = Int(DeleteToFirstPeriod(Local[1])), \ 157 | Rev = Int(DeleteToFirstPeriod(Local[1])), \ 158 | Build = Int(Local[1]), \ 159 | Local[0]) 160 | 161 | #define GetPackedVersion(str FileName, *Version) \ 162 | Local[0] = GetVersionComponents(FileName, Local[1], Local[2], Local[3], Local[4]), \ 163 | Version = PackVersionComponents(Local[1], Local[2], Local[3], Local[4]), \ 164 | Local[0] 165 | 166 | #define GetVersionNumbers(str FileName, *MS, *LS) \ 167 | Local[0] = GetPackedVersion(FileName, Local[1]), \ 168 | UnpackVersionNumbers(Local[1], MS, LS), \ 169 | Local[0] 170 | 171 | #define PackVersionNumbers(int VersionMS, int VersionLS) \ 172 | VersionMS << 32 | (VersionLS & 0xFFFFFFFF) 173 | 174 | #define PackVersionComponents(int Major, int Minor, int Rev, int Build) \ 175 | Major << 48 | (Minor & 0xFFFF) << 32 | (Rev & 0xFFFF) << 16 | (Build & 0xFFFF) 176 | 177 | #define UnpackVersionNumbers(int Version, *VersionMS, *VersionLS) \ 178 | VersionMS = Version >> 32, \ 179 | VersionLS = Version & 0xFFFFFFFF, \ 180 | void 181 | 182 | #define UnpackVersionComponents(int Version, *Major, *Minor, *Rev, *Build) \ 183 | Major = Version >> 48, \ 184 | Minor = (Version >> 32) & 0xFFFF, \ 185 | Rev = (Version >> 16) & 0xFFFF, \ 186 | Build = Version & 0xFFFF, \ 187 | void 188 | 189 | #define VersionToStr(int Version) \ 190 | Str(Version >> 48 & 0xFFFF) + "." + Str(Version >> 32 & 0xFFFF) + "." + \ 191 | Str(Version >> 16 & 0xFFFF) + "." + Str(Version & 0xFFFF) 192 | 193 | #define StrToVersion(str Version) \ 194 | Local[0] = Version, \ 195 | Local[1] = Int(DeleteToFirstPeriod(Local[0])), \ 196 | Local[2] = Int(DeleteToFirstPeriod(Local[0])), \ 197 | Local[3] = Int(DeleteToFirstPeriod(Local[0])), \ 198 | Local[4] = Int(Local[0]), \ 199 | PackVersionComponents(Local[1], Local[2], Local[3], Local[4]) 200 | 201 | #define EncodeVer(int Major, int Minor, int Revision = 0, int Build = -1) \ 202 | (Major & 0xFF) << 24 | (Minor & 0xFF) << 16 | (Revision & 0xFF) << 8 | (Build >= 0 ? Build & 0xFF : 0) 203 | 204 | #define DecodeVer(int Version, int Digits = 3) \ 205 | Str(Version >> 24 & 0xFF) + (Digits > 1 ? "." : "") + \ 206 | (Digits > 1 ? \ 207 | Str(Version >> 16 & 0xFF) + (Digits > 2 ? "." : "") : "") + \ 208 | (Digits > 2 ? \ 209 | Str(Version >> 8 & 0xFF) + (Digits > 3 && (Local = Version & 0xFF) ? "." : "") : "") + \ 210 | (Digits > 3 && Local ? \ 211 | Str(Version & 0xFF) : "") 212 | 213 | #define FindSection(str Section = "Files") \ 214 | Find(0, "[" + Section + "]", FIND_MATCH | FIND_TRIM) + 1 215 | 216 | #if VER >= 0x03000000 217 | # define FindNextSection(int Line) \ 218 | Find(Line, "[", FIND_BEGINS | FIND_TRIM, "]", FIND_ENDS | FIND_AND) 219 | # define FindSectionEnd(str Section = "Files") \ 220 | FindNextSection(FindSection(Section)) 221 | #else 222 | # define FindSectionEnd(str Section = "Files") \ 223 | FindSection(Section) + EntryCount(Section) 224 | #endif 225 | 226 | #define FindCode() \ 227 | Local[1] = FindSection("Code"), \ 228 | Local[0] = Find(Local[1] - 1, "program", FIND_BEGINS, ";", FIND_ENDS | FIND_AND), \ 229 | (Local[0] < 0 ? Local[1] : Local[0] + 1) 230 | 231 | #define ExtractFilePath(str PathName) \ 232 | (Local[0] = \ 233 | !(Local[1] = RPos("\", PathName)) ? \ 234 | "" : \ 235 | Copy(PathName, 1, Local[1] - 1)), \ 236 | Local[0] + \ 237 | ((Local[2] = Len(Local[0])) == 2 && Copy(Local[0], Local[2]) == ":" ? \ 238 | "\" : \ 239 | "") 240 | 241 | #define ExtractFileDir(str PathName) \ 242 | RemoveBackslash(ExtractFilePath(PathName)) 243 | 244 | #define ExtractFileExt(str PathName) \ 245 | Local[0] = RPos(".", PathName), \ 246 | Copy(PathName, Local[0] + 1) 247 | 248 | #define ExtractFileName(str PathName) \ 249 | !(Local[0] = RPos("\", PathName)) ? \ 250 | PathName : \ 251 | Copy(PathName, Local[0] + 1) 252 | 253 | #define ChangeFileExt(str FileName, str NewExt) \ 254 | !(Local[0] = RPos(".", FileName)) ? \ 255 | FileName + "." + NewExt : \ 256 | Copy(FileName, 1, Local[0]) + NewExt 257 | 258 | #define RemoveFileExt(str FileName) \ 259 | !(Local[0] = RPos(".", FileName)) ? \ 260 | FileName : \ 261 | Copy(FileName, 1, Local[0] - 1) 262 | 263 | #define AddBackslash(str S) \ 264 | Copy(S, Len(S)) == "\" ? S : S + "\" 265 | 266 | #define RemoveBackslash(str S) \ 267 | Local[0] = Len(S), \ 268 | Local[0] > 0 ? \ 269 | Copy(S, Local[0]) == "\" ? \ 270 | (Local[0] == 3 && Copy(S, 2, 1) == ":" ? \ 271 | S : \ 272 | Copy(S, 1, Local[0] - 1)) : \ 273 | S : \ 274 | "" 275 | 276 | #define Delete(str *S, int Index, int Count = MaxInt) \ 277 | S = Copy(S, 1, Index - 1) + Copy(S, Index + Count) 278 | 279 | #define Insert(str *S, int Index, str Substr) \ 280 | Index > Len(S) + 1 ? \ 281 | S : \ 282 | S = Copy(S, 1, Index - 1) + SubStr + Copy(S, Index) 283 | 284 | #define YesNo(str S) \ 285 | (S = LowerCase(S)) == "yes" || S == "true" || S == "1" 286 | 287 | #define IsDirSet(str SetupDirective) \ 288 | YesNo(SetupSetting(SetupDirective)) 289 | 290 | #define Power(int X, int P = 2) \ 291 | !P ? 1 : X * Power(X, P - 1) 292 | 293 | #define Min(int A, int B, int C = MaxInt) \ 294 | A < B ? A < C ? Int(A) : Int(C) : Int(B) 295 | 296 | #define Max(int A, int B, int C = MinInt) \ 297 | A > B ? A > C ? Int(A) : Int(C) : Int(B) 298 | 299 | #define SameText(str S1, str S2) \ 300 | LowerCase(S1) == LowerCase(S2) 301 | 302 | #define SameStr(str S1, str S2) \ 303 | S1 == S2 304 | 305 | #define WarnRenamedVersion(str OldName, str NewName) \ 306 | Warning("Function """ + OldName + """ has been renamed. Use """ + NewName + """ instead.") 307 | 308 | #define ParseVersion(str FileName, *Major, *Minor, *Rev, *Build) \ 309 | WarnRenamedVersion("ParseVersion", "GetVersionComponents"), \ 310 | GetVersionComponents(FileName, Major, Minor, Rev, Build) 311 | 312 | #define GetFileVersion(str FileName) \ 313 | WarnRenamedVersion("GetFileVersion", "GetVersionNumbersString"), \ 314 | GetVersionNumbersString(FileName) 315 | 316 | #ifdef DisablePOptP 317 | # pragma parseroption -p- 318 | #endif 319 | 320 | #ifdef EnableOptE 321 | # pragma option -e+ 322 | #endif 323 | #endif -------------------------------------------------------------------------------- /third-party/inno/ISetup.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/ISetup.chm -------------------------------------------------------------------------------- /third-party/inno/Languages/Armenian.isl: -------------------------------------------------------------------------------- 1 | ; *** Inno Setup version 6.1.0+ Armenian messages *** 2 | ; 3 | ; Armenian translation by Hrant Ohanyan 4 | ; E-mail: h.ohanyan@haysoft.org 5 | ; Translation home page: http://www.haysoft.org 6 | ; Last modification date: 2020-10-06 7 | ; 8 | [LangOptions] 9 | LanguageName=Հայերեն 10 | LanguageID=$042B 11 | LanguageCodePage=0 12 | ; If the language you are translating to requires special font faces or 13 | ; sizes, uncomment any of the following entries and change them accordingly. 14 | ;DialogFontName= 15 | ;DialogFontSize=8 16 | ;WelcomeFontName=Verdana 17 | ;WelcomeFontSize=12 18 | ;TitleFontName=Arial 19 | ;TitleFontSize=29 20 | ;CopyrightFontName=Arial 21 | ;CopyrightFontSize=8 22 | 23 | [Messages] 24 | 25 | ; *** Application titles 26 | SetupAppTitle=Տեղադրում 27 | SetupWindowTitle=%1-ի տեղադրում 28 | UninstallAppTitle=Ապատեղադրում 29 | UninstallAppFullTitle=%1-ի ապատեղադրում 30 | 31 | ; *** Misc. common 32 | InformationTitle=Տեղեկություն 33 | ConfirmTitle=Հաստատել 34 | ErrorTitle=Սխալ 35 | 36 | ; *** SetupLdr messages 37 | SetupLdrStartupMessage=Այս ծրագիրը կտեղադրի %1-ը Ձեր համակարգչում։ Շարունակե՞լ։ 38 | LdrCannotCreateTemp=Հնարավոր չէ ստեղծել ժամանակավոր ֆայլ։ Տեղադրումը կասեցված է 39 | LdrCannotExecTemp=Հնարավոր չէ կատարել ֆայլը ժամանակավոր պանակից։ Տեղադրումը կասեցված է 40 | 41 | ; *** Startup error messages 42 | LastErrorMessage=%1.%n%nՍխալ %2: %3 43 | SetupFileMissing=%1 ֆայլը բացակայում է տեղադրման պանակից։ Ուղղեք խնդիրը կամ ստացեք ծրագրի նոր տարբերակը։ 44 | SetupFileCorrupt=Տեղադրվող ֆայլերը վնասված են։ 45 | SetupFileCorruptOrWrongVer=Տեղադրվող ֆայլերը վնասված են կամ անհամատեղելի են տեղակայիչի այս տարբերակի հետ։ Ուղղեք խնդիրը կամ ստացեք ծրագրի նոր տարբերակը։ 46 | InvalidParameter=Հրամանատողում նշված է սխալ հրաման.%n%n%1 47 | SetupAlreadyRunning=Տեղակայիչը արդեն աշխատեցված է։ 48 | WindowsVersionNotSupported=Ծրագիրը չի աջակցում այս համակարգչում աշխատող Windows-ի տարբերակը։ 49 | WindowsServicePackRequired=Ծրագիրը պահանջում է %1-ի Service Pack %2 կամ ավելի նոր։ 50 | NotOnThisPlatform=Այս ծրագիրը չի աշխատի %1-ում։ 51 | OnlyOnThisPlatform=Այս ծրագիրը հնարավոր է բացել միայն %1-ում։ 52 | OnlyOnTheseArchitectures=Այս ծրագրի տեղադրումը հնարավոր է միայն Windows-ի մշակիչի հետևյալ կառուցվածքներում՝ %n%n%1 53 | WinVersionTooLowError=Այս ծրագիրը պահանջում է %1-ի տարբերակ %2 կամ ավելի նորը։ 54 | WinVersionTooHighError=Ծրագիրը չի կարող տեղադրվել %1-ի տարբերակ %2 կամ ավելի նորում 55 | AdminPrivilegesRequired=Ծրագիրը տեղադրելու համար պահանջվում են Վարիչի իրավունքներ։ 56 | PowerUserPrivilegesRequired=Ծրագիրը տեղադրելու համար պետք է մուտք գործել համակարգ որպես Վարիչ կամ «Փորձառու օգտագործող» (Power Users): 57 | SetupAppRunningError=Տեղակայիչը հայտնաբերել է, որ %1-ը աշխատում է։%n%nՓակեք այն և սեղմեք «Լավ»՝ շարունակելու համար կամ «Չեղարկել»՝ փակելու համար։ 58 | UninstallAppRunningError=Ապատեղադրող ծրագիրը հայտնաբերել է, որ %1-ը աշխատում է։%n%nՓակեք այն և սեղմեք «Լավ»՝ շարունակելու համար կամ «Չեղարկել»՝ փակելու համար։ 59 | 60 | ; *** Startup questions 61 | PrivilegesRequiredOverrideTitle=Ընտրեք տեղակայիչի տեղադրման կերպը 62 | PrivilegesRequiredOverrideInstruction=Ընտրեք տեղադրման կերպը 63 | PrivilegesRequiredOverrideText1=%1-ը կարող է տեղադրվել բոլոր օգտվողների համար (պահանջում է վարիչի արտոնություններ) կամ միայն ձեզ համար: 64 | PrivilegesRequiredOverrideText2=%1-ը կարող է տեղադրվել միայն ձեզ համար կամ բոլոր օգտվողների համար (պահանջում է վարիչի արտոնություններ): 65 | PrivilegesRequiredOverrideAllUsers=Տեղադրել &բոլոր օգտվողների համար 66 | PrivilegesRequiredOverrideAllUsersRecommended=Տեղադրել &բոլոր օգտվողների համար (հանձնարարելի) 67 | PrivilegesRequiredOverrideCurrentUser=Տեղադրել միայն &ինձ համար 68 | PrivilegesRequiredOverrideCurrentUserRecommended=Տեղադրել միայն &ինձ համար (հանձնարարելի) 69 | 70 | ; *** Misc. errors 71 | ErrorCreatingDir=Հնարավոր չէ ստեղծել "%1" պանակը 72 | ErrorTooManyFilesInDir=Հնարավոր չէ ստեղծել ֆայլ "%1" պանակում, որովհետև նրանում կան չափից ավելի շատ ֆայլեր 73 | 74 | ; *** Setup common messages 75 | ExitSetupTitle=Տեղակայման ընդհատում 76 | ExitSetupMessage=Տեղակայումը չի ավարատվել։ Եթե ընդհատեք, ապա ծրագիրը չի տեղադրվի։%n%nԱվարտե՞լ։ 77 | AboutSetupMenuItem=&Ծրագրի մասին... 78 | AboutSetupTitle=Ծրագրի մասին 79 | AboutSetupMessage=%1, տարբերակ՝ %2%n%3%n%nՎեբ կայք՝ %1:%n%4 80 | AboutSetupNote= 81 | TranslatorNote=Armenian translation by Hrant Ohanyan »»» http://www.haysoft.org 82 | 83 | ; *** Buttons 84 | ButtonBack=« &Նախորդ 85 | ButtonNext=&Հաջորդ » 86 | ButtonInstall=&Տեղադրել 87 | ButtonOK=Լավ 88 | ButtonCancel=Չեղարկել 89 | ButtonYes=&Այո 90 | ButtonYesToAll=Այո բոլորի &համար 91 | ButtonNo=&Ոչ 92 | ButtonNoToAll=Ո&չ բոլորի համար 93 | ButtonFinish=&Ավարտել 94 | ButtonBrowse=&Ընտրել... 95 | ButtonWizardBrowse=&Ընտրել... 96 | ButtonNewFolder=&Ստեղծել պանակ 97 | 98 | ; *** "Select Language" dialog messages 99 | SelectLanguageTitle=Ընտրել տեղակայիչի լեզուն 100 | SelectLanguageLabel=Ընտրեք այն լեզուն, որը օգտագործվելու է տեղադրման ընթացքում: 101 | 102 | ; *** Common wizard text 103 | ClickNext=Սեղմեք «Հաջորդ»՝ շարունակելու համար կամ «Չեղարկել»՝ տեղակայիչը փակելու համար։ 104 | BeveledLabel= 105 | BrowseDialogTitle=Ընտրել պանակ 106 | BrowseDialogLabel=Ընտրեք պանակը ցանկից և սեղմեք «Լավ»։ 107 | NewFolderName=Նոր պանակ 108 | 109 | ; *** "Welcome" wizard page 110 | WelcomeLabel1=Ձեզ ողջունում է [name]-ի տեղակայման օգնականը 111 | WelcomeLabel2=Ծրագիրը կտեղադրի [name/ver]-ը Ձեր համակարգչում։%n%nՇարունակելուց առաջ խորհուրդ ենք տալիս փակել բոլոր աշխատող ծրագրերը։ 112 | 113 | ; *** "Password" wizard page 114 | WizardPassword=Գաղտնաբառ 115 | PasswordLabel1=Ծրագիրը պաշտպանված է գաղտնաբառով։ 116 | PasswordLabel3=Մուտքագրեք գաղտնաբառը և սեղմեք «Հաջորդ»։ 117 | PasswordEditLabel=&Գաղտնաբառ. 118 | IncorrectPassword=Մուտքագրված գաղտնաբառը սխալ է, կրկին փորձեք։ 119 | 120 | ; *** "License Agreement" wizard page 121 | WizardLicense=Արտոնագրային համաձայնագիր 122 | LicenseLabel=Խնդրում ենք շարունակելուց առաջ կարդալ հետևյալ տեղեկությունը։ 123 | LicenseLabel3=Կարդացեք արտոնագրային համաձայնագիրը։ Շարունակելուց առաջ պետք է ընդունեք նշված պայմանները։ 124 | LicenseAccepted=&Ընդունում եմ արտոնագրային համաձայնագիրը 125 | LicenseNotAccepted=&Չեմ ընդունում արտոնագրային համաձայնագիրը 126 | 127 | ; *** "Information" wizard pages 128 | WizardInfoBefore=Տեղեկություն 129 | InfoBeforeLabel=Շարունակելուց առաջ կարդացեք այս տեղեկությունը։ 130 | InfoBeforeClickLabel=Եթե պատրաստ եք սեղմեք «Հաջորդը»։ 131 | WizardInfoAfter=Տեղեկություն 132 | InfoAfterLabel=Շարունակելուց առաջ կարդացեք այս տեղեկությունը։ 133 | InfoAfterClickLabel=Երբ պատրաստ լինեք շարունակելու՝ սեղմեք «Հաջորդ»։ 134 | 135 | ; *** "User Information" wizard page 136 | WizardUserInfo=Տեղեկություն օգտվողի մասին 137 | UserInfoDesc=Գրեք տվյալներ Ձեր մասին 138 | UserInfoName=&Օգտվողի անուն և ազգանուն. 139 | UserInfoOrg=&Կազմակերպություն. 140 | UserInfoSerial=&Հերթական համար. 141 | UserInfoNameRequired=Պետք է գրեք Ձեր անունը։ 142 | 143 | ; *** "Select Destination Location" wizard page 144 | WizardSelectDir=Ընտրել տեղակադրման պանակը 145 | SelectDirDesc=Ո՞ր պանակում տեղադրել [name]-ը։ 146 | SelectDirLabel3=Ծրագիրը կտեղադրի [name]-ը հետևյալ պանակում։ 147 | SelectDirBrowseLabel=Սեղմեք «Հաջորդ»՝ շարունակելու համար։ Եթե ցանկանում եք ընտրել այլ պանակ՝ սեղմեք «Ընտրել»։ 148 | DiskSpaceGBLabel=Առնվազն [gb] ԳԲ ազատ տեղ է պահանջվում: 149 | DiskSpaceMBLabel=Առնվազն [mb] ՄԲ ազատ տեղ է պահանջվում: 150 | CannotInstallToNetworkDrive=Հնարավոր չէ տեղադրել Ցանցային հիշասարքում։ 151 | CannotInstallToUNCPath=Հնարավոր չէ տեղադրել UNC ուղիում։ 152 | InvalidPath=Պետք է նշեք ամբողջական ուղին՝ հիշասարքի տառով, օրինակ՝%n%nC:\APP%n%nկամ UNC ուղի՝ %n%n\\սպասարկիչի_անունը\ռեսուրսի_անունը 153 | InvalidDrive=Ընտրված հիշասարքը կամ ցանցային ուղին գոյություն չունեն կամ անհասանելի են։ Ընտրեք այլ ուղի։ 154 | DiskSpaceWarningTitle=Չկա պահանջվող չափով ազատ տեղ 155 | DiskSpaceWarning=Առնվազն %1 ԿԲ ազատ տեղ է պահանջվում, մինչդեռ հասանելի է ընդամենը %2 ԿԲ։%n%nԱյնուհանդերձ, շարունակե՞լ։ 156 | DirNameTooLong=Պանակի անունը կամ ուղին երկար են: 157 | InvalidDirName=Պանակի նշված անունը անընդունելի է։ 158 | BadDirName32=Անվան մեջ չպետք է լինեն հետևյալ գրանշանները՝ %n%n%1 159 | DirExistsTitle=Թղթապանակը գոյություն ունի 160 | DirExists=%n%n%1%n%n պանակը արդեն գոյություն ունի։ Այնուհանդերձ, տեղադրե՞լ այստեղ։ 161 | DirDoesntExistTitle=Պանակ գոյություն չունի 162 | DirDoesntExist=%n%n%1%n%n պանակը գոյություն չունի։ Ստեղծե՞լ այն։ 163 | 164 | ; *** "Select Components" wizard page 165 | WizardSelectComponents=Ընտրել բաղադրիչներ 166 | SelectComponentsDesc=Ո՞ր ֆայլերը պետք է տեղադրվեն։ 167 | SelectComponentsLabel2=Նշեք այն ֆայլերը, որոնք պետք է տեղադրվեն, ապանշեք նրանք, որոնք չպետք է տեղադրվեն։ Սեղմեք «Հաջորդ»՝ շարունակելու համար։ 168 | FullInstallation=Լրիվ տեղադրում 169 | ; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) 170 | CompactInstallation=Սեղմված տեղադրում 171 | CustomInstallation=Ընտրովի տեղադրում 172 | NoUninstallWarningTitle=Տեղակայվող ֆայլերը 173 | NoUninstallWarning=Տեղակայիչ ծրագիրը հայտնաբերել է, որ հետևյալ բաղադրիչները արդեն տեղադրված են Ձեր համակարգչում։ %n%n%1%n%nԱյս բաղադրիչների ընտրության վերակայումը չի ջնջի դրանք։%n%nՇարունակե՞լ։ 174 | ComponentSize1=%1 ԿԲ 175 | ComponentSize2=%1 ՄԲ 176 | ComponentsDiskSpaceGBLabel=Ընթացիկ ընտրումը պահանջում է առնվազն [gb] ԳԲ տեղ հիշասարքում: 177 | ComponentsDiskSpaceMBLabel=Տվյալ ընտրությունը պահանջում է ամենաքիչը [mb] ՄԲ տեղ հիշասարքում: 178 | 179 | ; *** "Select Additional Tasks" wizard page 180 | WizardSelectTasks=Լրացուցիչ առաջադրանքներ 181 | SelectTasksDesc=Ի՞նչ լրացուցիչ առաջադրանքներ պետք է կատարվեն։ 182 | SelectTasksLabel2=Ընտրեք լրացուցիչ առաջադրանքներ, որոնք պետք է կատարվեն [name]-ի տեղադրման ընթացքում, ապա սեղմեք «Հաջորդ». 183 | 184 | ; *** "Select Start Menu Folder" wizard page 185 | WizardSelectProgramGroup=Ընտրել «Մեկնարկ» ցանկի պանակը 186 | SelectStartMenuFolderDesc=Որտե՞ղ ստեղծել դյուրանցումներ. 187 | SelectStartMenuFolderLabel3=Ծրագիրը կստեղծի դյուրանցումներ «Մեկնարկ» ցանկի հետևյալ պանակում։ 188 | SelectStartMenuFolderBrowseLabel=Սեղմեք «Հաջորդ»՝ շարունակելու համար։ Եթե ցանկանում եք ընտրեք այլ պանակ՝ սեղմեք «Ընտրել»։ 189 | MustEnterGroupName=Պետք է գրել պանակի անունը։ 190 | GroupNameTooLong=Պանակի անունը կամ ուղին շատ երկար են։ 191 | InvalidGroupName=Նշված անունը անընդունելի է։ 192 | BadGroupName=Անվան մեջ չպետք է լինեն հետևյալ գրանշանները՝ %n%n%1 193 | NoProgramGroupCheck2=&Չստեղծել պանակ «Մեկնարկ» ցանկում 194 | 195 | ; *** "Ready to Install" wizard page 196 | WizardReady=Պատրաստ է 197 | ReadyLabel1=Տեղակայիչը պատրաստ է սկսել [name]-ի տեղադրումը։ 198 | ReadyLabel2a=Սեղմեք «Տեղադրել»՝ շարունակելու համար կամ «Նախորդ»՝ եթե ցանկանում եք դիտել կամ փոփոխել տեղադրելու կարգավորումները։ 199 | ReadyLabel2b=Սեղմեք «Տեղադրել»՝ շարունակելու համար։ 200 | ReadyMemoUserInfo=Տեղեկություն օգտվողի մասին. 201 | ReadyMemoDir=Տեղադրելու պանակ. 202 | ReadyMemoType=Տեղադրման ձև. 203 | ReadyMemoComponents=Ընտրված բաղադրիչներ. 204 | ReadyMemoGroup=Թղթապանակ «Մեկնարկ» ցանկում. 205 | ReadyMemoTasks=Լրացուցիչ առաջադրանքներ. 206 | ; *** TDownloadWizardPage wizard page and DownloadTemporaryFile 207 | DownloadingLabel=Լրացուցիչ ֆայլերի ներբեռնում... 208 | ButtonStopDownload=&Կանգնեցնել ներբեռնումը 209 | StopDownload=Համոզվա՞ծ եք, որ պետք է կանգնեցնել ներբեռնումը: 210 | ErrorDownloadAborted=Ներբեռնումը կասեցված է 211 | ErrorDownloadFailed=Ներբեռնումը ձախողվեց. %1 %2 212 | ErrorDownloadSizeFailed=Չափի ստացումը ձախողվեց. %1 %2 213 | ErrorFileHash1=Ֆահլի հաշվեգումարը ձախողվեց. %1 214 | ErrorFileHash2=Ֆայլի անվավեր հաշվեգումար. ակընկալվում էր %1, գտնվել է %2 215 | ErrorProgress=Անվավեր ընթացք. %1-ը %2-ից 216 | ErrorFileSize=Ֆայլի անվավեր աչփ. ակընկալվում էր %1, գտնվել է %2 217 | ; *** "Preparing to Install" wizard page 218 | WizardPreparing=Նախատրաստում է տեղադրումը 219 | PreparingDesc=Տեղակայիչը պատրաստվում է տեղադրել [name]-ը ձեր համակարգչում։ 220 | PreviousInstallNotCompleted=Այլ ծրագրի տեղադրումը կամ ապատեղադրումը չի ավարտվել։ Այն ավարտելու համար պետք է վերամեկնարկեք համակարգիչը։%n%nՎերամեկնարկելուց հետո կրկին բացեք տեղակայման փաթեթը՝ [name]-ի տեղադրումը ավարտելու համար։ 221 | CannotContinue=Հնարավոր չէ շարունակել։ Սեղմեք «Չեղարկել»՝ ծրագիրը փակելու համար։ 222 | ApplicationsFound=Հետևյալ ծրագրերը օգտագործում են ֆայլեր, որոնք պետք է թարմացվեն տեղակայիչի կողմից։ Թույլատրեք տեղակայիչին ինքնաբար փակելու այդ ծրագրերը։ 223 | ApplicationsFound2=Հետևյալ ծրագրերը օգտագործում են ֆայլեր, որոնք պետք է թարմացվեն տեղակայիչի կողմից։ Թույլատրեք տեղակայիչին ինքնաբար փակելու այդ ծրագրերը։ Տեղադրումը ավարտելուց հետո տեղակայիչը կփորձի վերամեկնարկել այդ ծրագրերը։ 224 | CloseApplications=&Ինքնաբար փակել ծրագրերը 225 | DontCloseApplications=&Չփակել ծրագրերը 226 | ErrorCloseApplications=Տեղակայիչը չկարողացավ ինքնաբար փակել բոլոր ծրագրերը: Խորհուրդ ենք տալիս փակել այն բոլոր ծրագրերը, որոնք պետք է թարմացվեն տեղակայիչի կողմից: 227 | PrepareToInstallNeedsRestart=Տեղակայիչը պետք է վերամեկնարկի ձեր համակարգիչը: Դրանից հետո կրկին աշխատեցրեք այն՝ ավարտելու համար [name]-ի տեղադրումը:%n%nՑանկանո՞ւմ եք վերամեկնարկել հիմա: 228 | 229 | ; *** "Installing" wizard page 230 | WizardInstalling=Տեղադրում 231 | InstallingLabel=Խնդրում ենք սպասել մինչ [name]-ը կտեղադրվի Ձեր համակարգչում։ 232 | 233 | ; *** "Setup Completed" wizard page 234 | FinishedHeadingLabel=[name]-ի տեղադրման ավարտ 235 | FinishedLabelNoIcons=[name] ծրագիրը տեղադրվել է Ձեր համակարգչում։ 236 | FinishedLabel=[name] ծրագիրը տեղադրվել է Ձեր համակարգչում։ 237 | ClickFinish=Սեղմեք «Ավարտել»՝ տեղակայիչը փակելու համար։ 238 | FinishedRestartLabel=[name]-ի տեղադրումը ավարտելու համար պետք է վերամեկնարկել համակարգիչը։ վերամեկնարկե՞լ հիմա։ 239 | FinishedRestartMessage=[name]-ի տեղադրումը ավարտելու համար պետք է վերամեկնարկել համակարգիչը։ %n%վերամեկնարկե՞լ հիմա։ 240 | ShowReadmeCheck=Նայել README ֆայլը։ 241 | YesRadio=&Այո, վերամեկնարկել 242 | NoRadio=&Ոչ, ես հետո վերամեկնարկեմ 243 | ; used for example as 'Run MyProg.exe' 244 | RunEntryExec=Աշխատեցնել %1-ը 245 | ; used for example as 'View Readme.txt' 246 | RunEntryShellExec=Նայել %1-ը 247 | 248 | ; *** "Setup Needs the Next Disk" stuff 249 | ChangeDiskTitle=Տեղակայիչը պահանջում է հաջորդ սկավառակը 250 | SelectDiskLabel2=Զետեղեք %1 սկավառակը և սեղմեք «Լավ»։ %n%nԵթե ֆայլերի պանակը գտնվում է այլ տեղ, ապա ընտրեք ճիշտ ուղին կամ սեղմեք «Ընտրել»։ 251 | PathLabel=&Ուղին. 252 | FileNotInDir2="%1" ֆայլը չի գտնվել "%2"-ում։ Զետեղեք ճիշտ սկավառակ կամ ընտրեք այլ պանակ։ 253 | SelectDirectoryLabel=Խնդրում ենք նշել հաջորդ սկավառակի տեղադրությունը։ 254 | 255 | ; *** Installation phase messages 256 | SetupAborted=Տեղակայումը չի ավարտվել։ %n%nՈւղղեք խնդիրը և կրկին փորձեք։ 257 | AbortRetryIgnoreSelectAction=Ընտրեք գործողություն 258 | AbortRetryIgnoreRetry=&Կրկին փորձել 259 | AbortRetryIgnoreIgnore=&Անտեսել սխալը և շարունակել 260 | AbortRetryIgnoreCancel=Չեղարկել տեղադրումը 261 | 262 | ; *** Installation status messages 263 | StatusClosingApplications=Փակում է ծրագրերը... 264 | StatusCreateDirs=Պանակների ստեղծում... 265 | StatusExtractFiles=Ֆայլերի դուրս բերում... 266 | StatusCreateIcons=Դյուրանցումների ստեղծում... 267 | StatusCreateIniEntries=INI ֆայլերի ստեղծում... 268 | StatusCreateRegistryEntries=Գրանցամատյանի գրանցումների ստեղծում... 269 | StatusRegisterFiles=Ֆայլերի գրանցում... 270 | StatusSavingUninstall=Ապատեղադրելու տեղեկության պահում... 271 | StatusRunProgram=Տեղադրելու ավարտ... 272 | StatusRestartingApplications=Ծրագրերի վերամեկնարկում... 273 | StatusRollback=Փոփոխությունների հետ բերում... 274 | 275 | ; *** Misc. errors 276 | ErrorInternal2=Ներքին սխալ %1 277 | ErrorFunctionFailedNoCode=%1. վթար 278 | ErrorFunctionFailed=%1. վթար, կոդը՝ %2 279 | ErrorFunctionFailedWithMessage=%1. վթար, կոդը՝ %2.%n%3 280 | ErrorExecutingProgram=Հնարավոր չէ կատարել %n%1 ֆայլը 281 | 282 | ; *** Registry errors 283 | ErrorRegOpenKey=Գրանցամատյանի բանալին բացելու սխալ՝ %n%1\%2 284 | ErrorRegCreateKey=Գրանցամատյանի բանալին ստեղծելու սխալ՝ %n%1\%2 285 | ErrorRegWriteKey=Գրանցամատյանի բանալիում գրանցում կատարելու սխալ՝ %n%1\%2 286 | 287 | ; *** INI errors 288 | ErrorIniEntry=Սխալ՝ "%1" INI ֆայլում գրառում կատարելիս։ 289 | 290 | ; *** File copying errors 291 | FileAbortRetryIgnoreSkipNotRecommended=Բաց թողնել այս ֆայլը (խորհուրդ չի տրվում) 292 | FileAbortRetryIgnoreIgnoreNotRecommended=Անտեսել սխալը և շարունակել (խորհուրդ չի տրվում) 293 | SourceIsCorrupted=Սկզբնական ֆայլը վնասված է։ 294 | SourceDoesntExist=Սկզբնական "%1" ֆայլը գոյություն չունի 295 | ExistingFileReadOnly2=Առկա ֆայլը չի կարող փոխարինվել, քանի որ այն նշված է որպես միայն կարդալու: 296 | ExistingFileReadOnlyRetry=&Հեռացրեք միայն կարդալ հատկանիշը և կրկին փորձեք 297 | ExistingFileReadOnlyKeepExisting=&Պահել առկա ֆայլը 298 | ErrorReadingExistingDest=Սխալ՝ ֆայլը կարդալիս. 299 | FileExistsSelectAction=Ընտրեք գործողություն 300 | FileExists2=Ֆայլը գոյություն չունի 301 | FileExistsOverwriteExisting=&Վրագրել առկա ֆայլը 302 | FileExistsKeepExisting=&Պահել առկա ֆայլը 303 | FileExistsOverwriteOrKeepAll=&Անել սա հաջորդ բախման ժամանակ 304 | ExistingFileNewerSelectAction=Ընտրեք գործողություն 305 | ExistingFileNewer2=Առկա ֆայլը ավելի նոր է, քան այն, որ տեղակայիչը փորձում է տեղադրել: 306 | ExistingFileNewerOverwriteExisting=&Վրագրել առկա ֆայլը 307 | ExistingFileNewerKeepExisting=&Պահել առկա ֆայլը (հանձնարարելի) 308 | ExistingFileNewerOverwriteOrKeepAll=&Անել սա հաջորդ բախման ժամանակ 309 | ErrorChangingAttr=Սխալ՝ ընթացիկ ֆայլի հատկանիշները փոխելիս. 310 | ErrorCreatingTemp=Սխալ՝ նշված պանակում ֆայլ ստեղծելիս. 311 | ErrorReadingSource=Սխալ՝ ֆայլը կարդալիս. 312 | ErrorCopying=Սխալ՝ ֆայլը պատճենելիս. 313 | ErrorReplacingExistingFile=Սխալ՝ գոյություն ունեցող ֆայլը փոխարինելիս. 314 | ErrorRestartReplace=RestartReplace ձախողում. 315 | ErrorRenamingTemp=Սխալ՝ նպատակակետ պանակում՝ ֆայլը վերանվանելիս. 316 | ErrorRegisterServer=Հնարավոր չէ գրանցել DLL/OCX-ը. %1 317 | ErrorRegSvr32Failed=RegSvr32-ի ձախողում, կոդ՝ %1 318 | ErrorRegisterTypeLib=Հնարավոր չէ գրանցել դարանները՝ %1 319 | ; *** Uninstall display name markings 320 | ; used for example as 'My Program (32-bit)' 321 | UninstallDisplayNameMark=%1 (%2) 322 | ; used for example as 'My Program (32-bit, All users)' 323 | UninstallDisplayNameMarks=%1 (%2, %3) 324 | UninstallDisplayNameMark32Bit=32 բիթային 325 | UninstallDisplayNameMark64Bit=64 բիթային 326 | UninstallDisplayNameMarkAllUsers=Բոլոր օգտվողները 327 | UninstallDisplayNameMarkCurrentUser=Ընթացիկ օգտվողը 328 | 329 | ; *** Post-installation errors 330 | ErrorOpeningReadme=Սխալ՝ README ֆայլը բացելիս։ 331 | ErrorRestartingComputer=Հնարավոր չեղավ վերամեկնարկել համակարգիչը։ Ինքներդ փորձեք։ 332 | 333 | ; *** Uninstaller messages 334 | UninstallNotFound="%1" ֆայլը գոյություն չունի։ Հնարավոր չէ ապատեղադրել։ 335 | UninstallOpenError="%1" ֆայլը հնարավոր չէ բացել: Հնարավոր չէ ապատեղադրել 336 | UninstallUnsupportedVer=Ապատեղադրելու "%1" մատյանի ֆայլը անճանաչելի է ապատեղադրող ծրագրի այս տարբերակի համար։ Հնարավոր չէ ապատեղադրել 337 | UninstallUnknownEntry=Անհայտ գրառում է (%1)՝ հայնաբերվել ապատեղադրելու մատյանում 338 | ConfirmUninstall=Ապատեղադրե՞լ %1-ը և նրա բոլոր բաղադրիչները։ 339 | UninstallOnlyOnWin64=Հնարավոր է ապատեղադրել միայն 64 բիթանոց Windows-ում։ 340 | OnlyAdminCanUninstall=Հնարավոր է ապատեղադրել միայն Ադմինի իրավունքներով։ 341 | UninstallStatusLabel=Խնդրում ենք սպասել, մինչև %1-ը ապատեղադրվում է Ձեր համակարգչից։ 342 | UninstalledAll=%1 ծրագիրը ապատեղադրվել է համակարգչից։ 343 | UninstalledMost=%1-ը ապատեղադրվեց Ձեր համակարգչից։%n%nՈրոշ ֆայլեր հնարավոր չեղավ հեռացնել։ Ինքներդ հեռացրեք դրանք։ 344 | UninstalledAndNeedsRestart=%1-ի ապատեղադրումը ավարտելու համար պետք է վերամեկնարկել համակարգիչը։%n%nՎերամեկնարկե՞լ։ 345 | UninstallDataCorrupted="%1" ֆայլը վնասված է։ Հնարավոր չէ ապատեղադրել 346 | 347 | ; *** Uninstallation phase messages 348 | ConfirmDeleteSharedFileTitle=Հեռացնե՞լ համատեղ օգտագործվող ֆայլը։ 349 | ConfirmDeleteSharedFile2=Համակարգը նշում է, որ հետևյալ համատեղ օգտագործվող ֆայլը այլևս չի օգտագործվում այլ ծրագրի կողմից։ Ապատեղադրե՞լ այն։ %n%nԵթե համոզված չեք սեղմեք «Ոչ»։ 350 | SharedFileNameLabel=Ֆայլի անուն. 351 | SharedFileLocationLabel=Տեղադրություն. 352 | WizardUninstalling=Ապատեղադրելու վիճակ 353 | StatusUninstalling=%1-ի ապատեղադրում... 354 | 355 | ; *** Shutdown block reasons 356 | ShutdownBlockReasonInstallingApp=%1-ի տեղադրում։ 357 | ShutdownBlockReasonUninstallingApp=%1-ի ապատեղադրում։ 358 | 359 | ; The custom messages below aren't used by Setup itself, but if you make 360 | ; use of them in your scripts, you'll want to translate them. 361 | 362 | [CustomMessages] 363 | 364 | NameAndVersion=%1 տարբերակ՝ %2 365 | AdditionalIcons=Լրացուցիչ դյուրանցումներ 366 | CreateDesktopIcon=Ստեղծել դյուրանցում &Աշխատասեղանին 367 | CreateQuickLaunchIcon=Ստեղծել դյուրանցում &Արագ թողարկման գոտում 368 | ProgramOnTheWeb=%1-ի վեբ կայքը 369 | UninstallProgram=%1-ի ապատեղադրում 370 | LaunchProgram=Բացել %1-ը 371 | AssocFileExtension=Հա&մակցել %1-ը %2 ֆայլերի հետ։ 372 | AssocingFileExtension=%1-ը համակցվում է %2 ընդլայնումով ֆայլերի հետ... 373 | AutoStartProgramGroupDescription=Ինքնամեկնարկ. 374 | AutoStartProgram=Ինքնաբար մեկնարկել %1-ը 375 | AddonHostProgramNotFound=%1 չի կարող տեղադրվել Ձեր ընտրած պանակում։%n%nՇարունակե՞լ։ 376 | 377 | -------------------------------------------------------------------------------- /third-party/inno/Languages/BrazilianPortuguese.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/BrazilianPortuguese.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Bulgarian.isl: -------------------------------------------------------------------------------- 1 | ; *** Inno Setup version 6.1.0+ Bulgarian messages *** 2 | ; Ventsislav Dimitrov 3 | ; 4 | ; За да изтеглите преводи на този файл, предоставени от потребители, посетете: 5 | ; http://www.jrsoftware.org/files/istrans/ 6 | ; 7 | ; Забележка: когато превеждате, не добавяйте точка (.) в края на съобщения, 8 | ; които нямат, защото Inno Setup им добавя автоматично (прибавянето на точка 9 | ; ще доведе до показване на две точки). 10 | 11 | [LangOptions] 12 | ; Следните три записа са много важни. Уверете се, че сте прочел и разбирате 13 | ; раздела "[LangOptions]" на помощния файл. 14 | LanguageName=Български 15 | LanguageID=$0402 16 | LanguageCodePage=1251 17 | ; Ако езикът, на който превеждате, изисква специална гарнитура или размер на 18 | ; шрифта, извадете от коментар съответните записи по-долу и ги променете 19 | ; според вашите нужди. 20 | ;DialogFontName= 21 | ;DialogFontSize=8 22 | ;WelcomeFontName=Verdana 23 | ;WelcomeFontSize=12 24 | ;TitleFontName=Arial 25 | ;TitleFontSize=29 26 | ;CopyrightFontName=Arial 27 | ;CopyrightFontSize=8 28 | 29 | [Messages] 30 | 31 | ; *** Заглавия на приложенията 32 | SetupAppTitle=Инсталиране 33 | SetupWindowTitle=Инсталиране на %1 34 | UninstallAppTitle=Деинсталиране 35 | UninstallAppFullTitle=Деинсталиране на %1 36 | 37 | ; *** Заглавия от общ тип 38 | InformationTitle=Информация 39 | ConfirmTitle=Потвърждение 40 | ErrorTitle=Грешка 41 | 42 | ; *** Съобщения на зареждащия модул 43 | SetupLdrStartupMessage=Ще се инсталира %1. Желаете ли да продължите? 44 | LdrCannotCreateTemp=Не е възможно да се създаде временен файл. Инсталирането бе прекратено 45 | LdrCannotExecTemp=Не е възможно да се стартира файл от временната директория. Инсталирането бе прекратено 46 | 47 | ; *** Съобщения за грешка при стартиране 48 | LastErrorMessage=%1.%n%nГрешка %2: %3 49 | SetupFileMissing=Файлът %1 липсва от инсталационната директория. Моля, отстранете проблема или се снабдете с ново копие на програмата. 50 | SetupFileCorrupt=Инсталационните файлове са повредени. Моля, снабдете се с ново копие на програмата. 51 | SetupFileCorruptOrWrongVer=Инсталационните файлове са повредени или несъвместими с тази версия на инсталатора. Моля, отстранете проблема или се снабдете с ново копие на програмата. 52 | InvalidParameter=В командния ред е подаден невалиден параметър:%n%n%1 53 | SetupAlreadyRunning=Инсталаторът вече се изпълнява. 54 | WindowsVersionNotSupported=Програмата не поддържа версията на Windows, с която работи компютърът ви. 55 | WindowsServicePackRequired=Програмата изисква %1 Service Pack %2 или по-нов. 56 | NotOnThisPlatform=Програмата не може да се изпълнява под %1. 57 | OnlyOnThisPlatform=Програмата трябва да се изпълнява под %1. 58 | OnlyOnTheseArchitectures=Програмата може да се инсталира само под версии на Windows за следните процесорни архитектури:%n%n%1 59 | WinVersionTooLowError=Програмата изисква %1 версия %2 или по-нова. 60 | WinVersionTooHighError=Програмата не може да бъде инсталирана в %1 версия %2 или по-нова. 61 | AdminPrivilegesRequired=За да инсталирате програмата, трябва да влезете като администратор. 62 | PowerUserPrivilegesRequired=За да инсталирате програмата, трябва да влезете като администратор или потребител с разширени права. 63 | SetupAppRunningError=Инсталаторът установи, че %1 се изпълнява в момента.%n%nМоля, затворете всички копия на програмата и натиснете "OK", за да продължите, или "Cancel" за изход. 64 | UninstallAppRunningError=Деинсталаторът установи, че %1 се изпълнява в момента.%n%nМоля, затворете всички копия на програмата и натиснете "OK", за да продължите, или "Cancel" за изход. 65 | 66 | ; *** Въпроси при стартиране 67 | PrivilegesRequiredOverrideTitle=Избор на режим на инсталация 68 | PrivilegesRequiredOverrideInstruction=Изберете режим на инсталация 69 | PrivilegesRequiredOverrideText1=%1 може да бъде инсталирана за всички потребители (изисква администраторски привилегии) или само за Вас. 70 | PrivilegesRequiredOverrideText2=%1 може да бъде инсталирана само за Вас или за всички потребители (изисква администраторски привилегии). 71 | PrivilegesRequiredOverrideAllUsers=Инсталирай за &всички потребители 72 | PrivilegesRequiredOverrideAllUsersRecommended=Инсталирай за &всички потребители (препоръчва се) 73 | PrivilegesRequiredOverrideCurrentUser=Инсталирай само за &мен 74 | PrivilegesRequiredOverrideCurrentUserRecommended=Инсталирай само за &мен (препоръчва се) 75 | 76 | ; *** Други грешки 77 | ErrorCreatingDir=Не е възможно да се създаде директория "%1" 78 | ErrorTooManyFilesInDir=Не е възможно да се създаде файл в директорията "%1", тъй като тя съдържа твърде много файлове 79 | 80 | ; *** Съобщения от общ тип на инсталатора 81 | ExitSetupTitle=Затваряне на инсталатора 82 | ExitSetupMessage=Инсталирането не е завършено. Ако затворите сега, програмата няма да бъде инсталирана.%n%nПо-късно можете отново да стартирате инсталатора, за да завършите инсталирането.%n%nЗатваряте ли инсталатора? 83 | AboutSetupMenuItem=&За инсталатора... 84 | AboutSetupTitle=За инсталатора 85 | AboutSetupMessage=%1 версия %2%n%3%n%nУебстраница:%n%4 86 | AboutSetupNote= 87 | TranslatorNote=Превод на български: Михаил Балабанов 88 | 89 | ; *** Бутони 90 | ButtonBack=< На&зад 91 | ButtonNext=На&пред > 92 | ButtonInstall=&Инсталиране 93 | ButtonOK=OK 94 | ButtonCancel=Отказ 95 | ButtonYes=&Да 96 | ButtonYesToAll=Да за &всички 97 | ButtonNo=&Не 98 | ButtonNoToAll=Не за в&сички 99 | ButtonFinish=&Готово 100 | ButtonBrowse=Пре&глед... 101 | ButtonWizardBrowse=Пре&глед... 102 | ButtonNewFolder=&Нова папка 103 | 104 | ; *** Съобщения в диалоговия прозорец за избор на език 105 | SelectLanguageTitle=Избор на език за инсталатора 106 | SelectLanguageLabel=Изберете кой език ще ползвате с инсталатора. 107 | 108 | ; *** Текстове от общ тип на съветника 109 | ClickNext=Натиснете "Напред", за да продължите, или "Отказ" за затваряне на инсталатора. 110 | BeveledLabel= 111 | BrowseDialogTitle=Преглед за папка 112 | BrowseDialogLabel=Изберете папка от долния списък и натиснете "OK". 113 | NewFolderName=Нова папка 114 | 115 | ; *** Страница "Добре дошли" на съветника 116 | WelcomeLabel1=Добре дошли при Съветника за инсталиране на [name] 117 | WelcomeLabel2=Съветникът ще инсталира [name/ver] във Вашия компютър.%n%nПрепоръчва се да затворите всички останали приложения, преди да продължите. 118 | 119 | ; *** Страница "Парола" на съветника 120 | WizardPassword=Парола 121 | PasswordLabel1=Инсталацията е защитена с парола. 122 | PasswordLabel3=Моля, въведете паролата и натиснете "Напред", за да продължите. Главни и малки букви са от значение. 123 | PasswordEditLabel=&Парола: 124 | IncorrectPassword=Въведената от вас парола е неправилна. Моля, опитайте отново. 125 | 126 | ; *** Страница "Лицензионно споразумение" на съветника 127 | WizardLicense=Лицензионно споразумение 128 | LicenseLabel=Моля, прочетете следната важна информация, преди да продължите. 129 | LicenseLabel3=Моля, прочетете следното Лицензионно споразумение. Преди инсталирането да продължи, трябва да приемете условията на споразумението. 130 | LicenseAccepted=П&риемам споразумението 131 | LicenseNotAccepted=&Не приемам споразумението 132 | 133 | ; *** Страници "Информация" на съветника 134 | WizardInfoBefore=Информация 135 | InfoBeforeLabel=Моля, прочетете следната важна информация, преди да продължите. 136 | InfoBeforeClickLabel=Когато сте готов да продължите, натиснете "Напред". 137 | WizardInfoAfter=Информация 138 | InfoAfterLabel=Моля, прочетете следната важна информация, преди да продължите. 139 | InfoAfterClickLabel=Когато сте готов да продължите, натиснете "Напред". 140 | 141 | ; *** Страница "Данни за потребител" на съветника 142 | WizardUserInfo=Данни за потребител 143 | UserInfoDesc=Моля, въведете вашите данни. 144 | UserInfoName=&Име: 145 | UserInfoOrg=&Организация: 146 | UserInfoSerial=&Сериен номер: 147 | UserInfoNameRequired=Трябва да въведете име. 148 | 149 | ; *** Страница "Избор на местоназначение" на съветника 150 | WizardSelectDir=Избор на местоназначение 151 | SelectDirDesc=Къде да се инсталира [name]? 152 | SelectDirLabel3=[name] ще се инсталира в следната папка. 153 | SelectDirBrowseLabel=Натиснете "Напред", за да продължите. За да изберете друга папка, натиснете "Преглед". 154 | DiskSpaceGBLabel=Изискват се поне [gb] ГБ свободно дисково пространство. 155 | DiskSpaceMBLabel=Изискват се поне [mb] МБ свободно дисково пространство. 156 | CannotInstallToNetworkDrive=Инсталаторът не може да инсталира на мрежово устройство. 157 | CannotInstallToUNCPath=Инсталаторът не може да инсталира в UNC път. 158 | InvalidPath=Трябва да въведете пълен път с буква на устройство, например:%n%nC:\APP%n%nили UNC път във вида:%n%n\\сървър\споделено място 159 | InvalidDrive=Избраното от вас устройство или споделено UNC място не съществува или не е достъпно. Моля, изберете друго. 160 | DiskSpaceWarningTitle=Недостиг на дисково пространство 161 | DiskSpaceWarning=Инсталирането изисква %1 кБ свободно място, но на избраното устройство има само %2 кБ.%n%nЖелаете ли все пак да продължите? 162 | DirNameTooLong=Твърде дълго име на папка или път. 163 | InvalidDirName=Името на папка е невалидно. 164 | BadDirName32=Имената на папки не могат да съдържат следните знаци:%n%n%1 165 | DirExistsTitle=Папката съществува 166 | DirExists=Папката:%n%n%1%n%nвече съществува. Желаете ли все пак да инсталирате в нея? 167 | DirDoesntExistTitle=Папката не съществува 168 | DirDoesntExist=Папката:%n%n%1%n%nне съществува. Желаете ли да бъде създадена? 169 | 170 | ; *** Страница "Избор на компоненти" на съветника 171 | WizardSelectComponents=Избор на компоненти 172 | SelectComponentsDesc=Кои компоненти да бъдат инсталирани? 173 | SelectComponentsLabel2=Изберете компонентите, които желаете да инсталирате, и откажете нежеланите. Натиснете "Напред", когато сте готов да продължите. 174 | FullInstallation=Пълна инсталация 175 | ; По възможност не превеждайте "Compact" като "Minimal" (има се предвид "Minimal" на Вашия език) 176 | CompactInstallation=Компактна инсталация 177 | CustomInstallation=Инсталация по избор 178 | NoUninstallWarningTitle=Компонентите съществуват 179 | NoUninstallWarning=Инсталаторът установи, че следните компоненти са вече инсталирани в компютърa:%n%n%1%n%nОтказването на тези компоненти няма да ги деинсталира.%n%nЖелаете ли все пак да продължите? 180 | ComponentSize1=%1 кБ 181 | ComponentSize2=%1 МБ 182 | ComponentsDiskSpaceGBLabel=Направеният избор изисква поне [gb] ГБ дисково пространство. 183 | ComponentsDiskSpaceMBLabel=Направеният избор изисква поне [mb] МБ дисково пространство. 184 | 185 | ; *** Страница "Избор на допълнителни задачи" на съветника 186 | WizardSelectTasks=Избор на допълнителни задачи 187 | SelectTasksDesc=Кои допълнителни задачи да бъдат изпълнени? 188 | SelectTasksLabel2=Изберете кои допълнителни задачи желаете да се изпълнят при инсталиране на [name], след което натиснете "Напред". 189 | 190 | ; *** Страница "Избор на папка в менюто "Старт" на съветника 191 | WizardSelectProgramGroup=Избор на папка в менюто "Старт" 192 | SelectStartMenuFolderDesc=Къде да бъдат поставени преките пътища на програмата? 193 | SelectStartMenuFolderLabel3=Инсталаторът ще създаде преки пътища в следната папка от менюто "Старт". 194 | SelectStartMenuFolderBrowseLabel=Натиснете "Напред", за да продължите. За да изберете друга папка, натиснете "Преглед". 195 | MustEnterGroupName=Трябва да въведете име на папка. 196 | GroupNameTooLong=Твърде дълго име на папка или път. 197 | InvalidGroupName=Името на папка е невалидно. 198 | BadGroupName=Името на папка не може да съдържа следните знаци:%n%n%1 199 | NoProgramGroupCheck2=И&нсталиране без папка в менюто "Старт" 200 | 201 | ; *** Страница "Готовност за инсталиране" на съветника 202 | WizardReady=Готовност за инсталиране 203 | ReadyLabel1=Инсталаторът е готов да инсталира [name] във Вашия компютър. 204 | ReadyLabel2a=Натиснете "Инсталиране", за да продължите, или "Назад" за преглед или промяна на някои настройки. 205 | ReadyLabel2b=Натиснете "Инсталиране", за да продължите с инсталирането. 206 | ReadyMemoUserInfo=Данни за потребител: 207 | ReadyMemoDir=Местоназначение: 208 | ReadyMemoType=Тип инсталация: 209 | ReadyMemoComponents=Избрани компоненти: 210 | ReadyMemoGroup=Папка в менюто "Старт": 211 | ReadyMemoTasks=Допълнителни задачи: 212 | 213 | ; *** Страница "TDownloadWizardPage" на съветника и DownloadTemporaryFile 214 | DownloadingLabel=Изтегляне на допълнителни файлове... 215 | ButtonStopDownload=&Спри изтеглянето 216 | StopDownload=Сигурни ли сте, че искате да спрете изтеглянето? 217 | ErrorDownloadAborted=Изтеглянето беше прекъснато 218 | ErrorDownloadFailed=Изтеглянето беше неуспешно: %1 %2 219 | ErrorDownloadSizeFailed=Неуспешно получаване на размер: %1 %2 220 | ErrorFileHash1=Неуспешна контролна сума на файл: %1 221 | ErrorFileHash2=Невалидна контролна сума на файл: очаквана %1, открита %2 222 | ErrorProgress=Невалиден напредък: %1 of %2 223 | ErrorFileSize=Невалиден размер на файл: очакван %1, открит %2 224 | 225 | ; *** Страница "Подготовка за инсталиране" на съветника 226 | WizardPreparing=Подготовка за инсталиране 227 | PreparingDesc=Инсталаторът се подготвя да инсталира [name] във Вашия компютър. 228 | PreviousInstallNotCompleted=Инсталиране или премахване на предишна програма не е завършило. Рестартирайте компютъра, за да може процесът да завърши.%n%nСлед като рестартирате, стартирайте инсталатора отново, за да довършите инсталирането на [name]. 229 | CannotContinue=Инсталирането не може да продължи. Моля, натиснете "Отказ" за изход. 230 | ApplicationsFound=Следните приложения използват файлове, които трябва да бъдат обновени от инсталатора. Препоръчва се да разрешите на инсталатора автоматично да затвори приложенията. 231 | ApplicationsFound2=Следните приложения използват файлове, които трябва да бъдат обновени от инсталатора. Препоръчва се да разрешите на инсталатора автоматично да затвори приложенията. След края на инсталирането ще бъде направен опит за рестартирането им. 232 | CloseApplications=Приложенията да се затворят &автоматично 233 | DontCloseApplications=Приложенията да &не се затварят 234 | ErrorCloseApplications=Не бе възможно да се затворят автоматично всички приложения. Препоръчва се преди да продължите, да затворите всички приложения, използващи файлове, които инсталаторът трябва да обнови. 235 | PrepareToInstallNeedsRestart=Инсталаторът трябва да ресартира Вашия компютър. След рестартирането, стартирайте инсталатора отново, за да завършите инсталацията на [name].%n%nЖелаете ли да рестартирате сега? 236 | 237 | ; *** Страница "Инсталиране" на съветника 238 | WizardInstalling=Инсталиране 239 | InstallingLabel=Моля, изчакайте докато [name] се инсталира във Вашия компютър. 240 | 241 | ; *** Страница "Инсталирането завърши" на съветника 242 | FinishedHeadingLabel=Съветникът за инсталиране на [name] завърши 243 | FinishedLabelNoIcons=Инсталирането на [name] във Вашия компютър завърши. 244 | FinishedLabel=Инсталирането на [name] във Вашия компютър завърши. Можете да стартирате приложението чрез инсталираните икони. 245 | ClickFinish=Натиснете "Готово", за да затворите инсталатора. 246 | FinishedRestartLabel=Инсталаторът трябва да рестартира компютъра, за да завърши инсталирането на [name]. Желаете ли да рестартирате сега? 247 | FinishedRestartMessage=Инсталаторът трябва да рестартира компютъра, за да завърши инсталирането на [name].%n%nЖелаете ли да рестартирате сега? 248 | ShowReadmeCheck=Да, желая да прегледам файла README 249 | YesRadio=&Да, нека компютърът се рестартира сега 250 | NoRadio=&Не, ще рестартирам компютъра по-късно 251 | ; Използва се например в "Стартиране на MyProg.exe" 252 | RunEntryExec=Стартиране на %1 253 | ; Използва се например в "Преглеждане на Readme.txt" 254 | RunEntryShellExec=Преглеждане на %1 255 | 256 | ; *** Текстове от рода на "Инсталаторът изисква следващ носител" 257 | ChangeDiskTitle=Инсталаторът изисква следващ носител 258 | SelectDiskLabel2=Моля, поставете носител %1 и натиснете "ОК".%n%nАко файловете от носителя се намират в различна от показаната по-долу папка, въведете правилния път до тях или натиснете "Преглед". 259 | PathLabel=П&ът: 260 | FileNotInDir2=Файлът "%1" не бе намерен в "%2". Моля, поставете правилния носител или изберете друга папка. 261 | SelectDirectoryLabel=Моля, посочете местоположението на следващия носител. 262 | 263 | ; *** Съобщения от фаза "Инсталиране" 264 | SetupAborted=Инсталирането не е завършено.%n%nМоля, отстранете проблема и стартирайте инсталатора отново. 265 | AbortRetryIgnoreSelectAction=Изберете действие 266 | AbortRetryIgnoreRetry=Повторен &опит 267 | AbortRetryIgnoreIgnore=&Пренебрегни грешката и продължи 268 | AbortRetryIgnoreCancel=Прекрати инсталацията 269 | 270 | ; *** Съобщения за хода на инсталирането 271 | StatusClosingApplications=Затварят се приложения... 272 | StatusCreateDirs=Създават се директории... 273 | StatusExtractFiles=Извличат се файлове... 274 | StatusCreateIcons=Създават се преки пътища... 275 | StatusCreateIniEntries=Създават се записи в INI файл... 276 | StatusCreateRegistryEntries=Създават се записи в регистъра... 277 | StatusRegisterFiles=Регистрират се файлове... 278 | StatusSavingUninstall=Записват се данни за деинсталиране... 279 | StatusRunProgram=Инсталацията приключва... 280 | StatusRestartingApplications=Рестартират се приложения... 281 | StatusRollback=Заличават се промени... 282 | 283 | ; *** Грешки от общ тип 284 | ErrorInternal2=Вътрешна грешка: %1 285 | ErrorFunctionFailedNoCode=Неуспешно изпълнение на %1 286 | ErrorFunctionFailed=Неуспешно изпълнение на %1; код на грешката: %2 287 | ErrorFunctionFailedWithMessage=Неуспешно изпълнение на %1; код на грешката: %2.%n%3 288 | ErrorExecutingProgram=Не е възможно да се стартира файл:%n%1 289 | 290 | ; *** Грешки, свързани с регистъра 291 | ErrorRegOpenKey=Грешка при отваряне на ключ в регистъра:%n%1\%2 292 | ErrorRegCreateKey=Грешка при създаване на ключ в регистъра:%n%1\%2 293 | ErrorRegWriteKey=Грешка при писане в ключ от регистъра:%n%1\%2 294 | 295 | ; *** Грешки, свързани с INI файлове 296 | ErrorIniEntry=Грешка при създаване на INI запис във файла "%1". 297 | 298 | ; *** Грешки при копиране на файлове 299 | FileAbortRetryIgnoreSkipNotRecommended=Прескочи този &файл (не се препоръчва) 300 | FileAbortRetryIgnoreIgnoreNotRecommended=&Пренебрегни грешката и продължи (не се препоръчва) 301 | SourceIsCorrupted=Файлът - източник е повреден 302 | SourceDoesntExist=Файлът - източник "%1" не съществува 303 | ExistingFileReadOnly2=Съществуващият файл не беше заменен, защото е маркиран само за четене. 304 | ExistingFileReadOnlyRetry=&Премахни атрибута „само за четене“ и опитай отново 305 | ExistingFileReadOnlyKeepExisting=&Запази съществуващия файл 306 | ErrorReadingExistingDest=Грешка при опит за четене на съществуващ файл: 307 | FileExistsSelectAction=Изберете действие 308 | FileExists2=Файлът вече съществува. 309 | FileExistsOverwriteExisting=&Презапиши съществуващия файл 310 | FileExistsKeepExisting=&Запази съществуващия файл 311 | FileExistsOverwriteOrKeepAll=&Извършвай същото за останалите конфликти 312 | ExistingFileNewerSelectAction=Изберете действие 313 | ExistingFileNewer2=Съществуващият файл е по-нов от този, който инсталаторът се опитва да инсталира. 314 | ExistingFileNewerOverwriteExisting=&Презапиши съществуващия файл 315 | ExistingFileNewerKeepExisting=&Запази съществуващия файл (препоръчително) 316 | ExistingFileNewerOverwriteOrKeepAll=&Извършвай същото за останалите конфликти 317 | ErrorChangingAttr=Грешка при опит за смяна на атрибути на съществуващ файл: 318 | ErrorCreatingTemp=Грешка при опит за създаване на файл в целевата директория: 319 | ErrorReadingSource=Грешка при опит за четене на файл - източник: 320 | ErrorCopying=Грешка при опит за копиране на файл: 321 | ErrorReplacingExistingFile=Грешка при опит за заместване на съществуващ файл: 322 | ErrorRestartReplace=Неуспешно отложено заместване: 323 | ErrorRenamingTemp=Грешка при опит за преименуване на файл в целевата директория: 324 | ErrorRegisterServer=Не е възможно да се регистрира библиотека от тип DLL/OCX: %1 325 | ErrorRegSvr32Failed=Неуспешно изпълнение на RegSvr32 с код на изход %1 326 | ErrorRegisterTypeLib=Не е възможно да се регистрира библиотека от типове: %1 327 | 328 | ; *** Обозначаване на показваните имена на програми за деинсталиране 329 | UninstallDisplayNameMark=%1 (%2) 330 | UninstallDisplayNameMarks=%1 (%2, %3) 331 | UninstallDisplayNameMark32Bit=32-битова 332 | UninstallDisplayNameMark64Bit=64-битова 333 | UninstallDisplayNameMarkAllUsers=Всички потребители 334 | UninstallDisplayNameMarkCurrentUser=Текущ потребител 335 | 336 | ; *** Грешки след инсталиране 337 | ErrorOpeningReadme=Възникна грешка при опит за отваряне на файла README. 338 | ErrorRestartingComputer=Инсталаторът не е в състояние да рестартира компютъра. Моля, направете го ръчно. 339 | 340 | ; *** Съобщения на деинсталатора 341 | UninstallNotFound=Файлът "%1" не съществува. Деинсталирането е невъзможно. 342 | UninstallOpenError=Файлът "%1" не може да се отвори. Деинсталирането е невъзможно 343 | UninstallUnsupportedVer=Форматът на регистрационния файл за деинсталиране "%1" не се разпознава от тази версия на деинсталатора. Деинсталирането е невъзможно 344 | UninstallUnknownEntry=Открит бе непознат запис (%1) в регистрационния файл за деинсталиране 345 | ConfirmUninstall=Наистина ли желаете да премахнете напълно %1 и всички прилежащи компоненти? 346 | UninstallOnlyOnWin64=Програмата може да бъде деинсталирана само под 64-битов Windows. 347 | OnlyAdminCanUninstall=Програмата може да бъде премахната само от потребител с администраторски права. 348 | UninstallStatusLabel=Моля, изчакайте премахването на %1 от Вашия компютър да приключи. 349 | UninstalledAll=%1 беше премахната успешно от Вашия компютър. 350 | UninstalledMost=Деинсталирането на %1 завърши.%n%nПремахването на някои елементи не бе възможно. Можете да ги отстраните ръчно. 351 | UninstalledAndNeedsRestart=За да приключи деинсталирането на %1, трябва да рестартирате Вашия компютър.%n%nЖелаете ли да рестартирате сега? 352 | UninstallDataCorrupted=Файлът "%1" е повреден. Деинсталирането е невъзможно 353 | 354 | ; *** Съобщения от фаза "Деинсталиране" 355 | ConfirmDeleteSharedFileTitle=Премахване на споделен файл? 356 | ConfirmDeleteSharedFile2=Системата отчита, че следният споделен файл вече не се ползва от никоя програма. Желаете ли деинсталаторът да го премахне?%n%nАко някоя програма все пак ползва файла и той бъде изтрит, програмата може да спре да работи правилно. Ако се колебаете, изберете "Не". Оставянето на файла в системата е безвредно. 357 | SharedFileNameLabel=Име на файла: 358 | SharedFileLocationLabel=Местоположение: 359 | WizardUninstalling=Ход на деинсталирането 360 | StatusUninstalling=%1 се деинсталира... 361 | 362 | ; *** Обяснения за блокирано спиране на системата 363 | ShutdownBlockReasonInstallingApp=Инсталира се %1. 364 | ShutdownBlockReasonUninstallingApp=Деинсталира се %1. 365 | 366 | ; Потребителските съобщения по-долу не се ползват от самия инсталатор, но 367 | ; ако ползвате такива в скриптовете си, вероятно бихте искали да ги преведете. 368 | 369 | [CustomMessages] 370 | 371 | NameAndVersion=%1, версия %2 372 | AdditionalIcons=Допълнителни икони: 373 | CreateDesktopIcon=Икона на &работния плот 374 | CreateQuickLaunchIcon=Икона в лентата "&Бързо стартиране" 375 | ProgramOnTheWeb=%1 в Интернет 376 | UninstallProgram=Деинсталиране на %1 377 | LaunchProgram=Стартиране на %1 378 | AssocFileExtension=&Свързване на %1 с файловото разширение %2 379 | AssocingFileExtension=%1 се свързва с файловото разширение %2... 380 | AutoStartProgramGroupDescription=Стартиране: 381 | AutoStartProgram=Автоматично стартиране на %1 382 | AddonHostProgramNotFound=%1 не бе намерена в избраната от вас папка.%n%nЖелаете ли все пак да продължите? 383 | -------------------------------------------------------------------------------- /third-party/inno/Languages/Catalan.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Catalan.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Czech.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Czech.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Danish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Danish.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Dutch.isl: -------------------------------------------------------------------------------- 1 | ; *** Inno Setup version 6.1.0+ Dutch messages *** 2 | ; 3 | ; This file is based on user-contributed translations by various authors 4 | ; 5 | ; Maintained by Martijn Laan (mlaan@jrsoftware.org) 6 | 7 | [LangOptions] 8 | LanguageName=Nederlands 9 | LanguageID=$0413 10 | LanguageCodePage=1252 11 | 12 | [Messages] 13 | 14 | ; *** Application titles 15 | SetupAppTitle=Setup 16 | SetupWindowTitle=Setup - %1 17 | UninstallAppTitle=Verwijderen 18 | UninstallAppFullTitle=%1 verwijderen 19 | 20 | ; *** Misc. common 21 | InformationTitle=Informatie 22 | ConfirmTitle=Bevestigen 23 | ErrorTitle=Fout 24 | 25 | ; *** SetupLdr messages 26 | SetupLdrStartupMessage=Hiermee wordt %1 geïnstalleerd. Wilt u doorgaan? 27 | LdrCannotCreateTemp=Kan geen tijdelijk bestand maken. Setup wordt afgesloten 28 | LdrCannotExecTemp=Kan een bestand in de tijdelijke map niet uitvoeren. Setup wordt afgesloten 29 | 30 | ; *** Startup error messages 31 | LastErrorMessage=%1.%n%nFout %2: %3 32 | SetupFileMissing=Het bestand %1 ontbreekt in de installatiemap. Corrigeer dit probleem of gebruik een andere kopie van het programma. 33 | SetupFileCorrupt=De installatiebestanden zijn beschadigd. Gebruik een andere kopie van het programma. 34 | SetupFileCorruptOrWrongVer=De installatiebestanden zijn beschadigd, of zijn niet compatibel met deze versie van Setup. Corrigeer dit probleem of gebruik een andere kopie van het programma. 35 | InvalidParameter=Er werd een ongeldige schakeloptie opgegeven op de opdrachtregel:%n%n%1 36 | SetupAlreadyRunning=Setup is al gestart. 37 | WindowsVersionNotSupported=Dit programma ondersteunt de versie van Windows die u gebruikt niet. 38 | WindowsServicePackRequired=Dit programma vereist %1 Service Pack %2 of hoger. 39 | NotOnThisPlatform=Dit programma kan niet worden uitgevoerd onder %1. 40 | OnlyOnThisPlatform=Dit programma moet worden uitgevoerd onder %1. 41 | OnlyOnTheseArchitectures=Dit programma kan alleen geïnstalleerd worden onder versies van Windows ontworpen voor de volgende processor architecturen:%n%n%1 42 | WinVersionTooLowError=Dit programma vereist %1 versie %2 of hoger. 43 | WinVersionTooHighError=Dit programma kan niet worden geïnstalleerd onder %1 versie %2 of hoger. 44 | AdminPrivilegesRequired=U moet aangemeld zijn als een systeembeheerder om dit programma te kunnen installeren. 45 | PowerUserPrivilegesRequired=U moet ingelogd zijn als systeembeheerder of als gebruiker met systeembeheerders rechten om dit programma te kunnen installeren. 46 | SetupAppRunningError=Setup heeft vastgesteld dat %1 op dit moment actief is.%n%nSluit alle vensters hiervan, en klik daarna op OK om verder te gaan, of op Annuleren om Setup af te sluiten. 47 | UninstallAppRunningError=Het verwijderprogramma heeft vastgesteld dat %1 op dit moment actief is.%n%nSluit alle vensters hiervan, en klik daarna op OK om verder te gaan, of op Annuleren om het verwijderen af te breken. 48 | 49 | ; *** Startup questions 50 | PrivilegesRequiredOverrideTitle=Selecteer installatie modus voor Setup 51 | PrivilegesRequiredOverrideInstruction=Selecteer installatie modus 52 | PrivilegesRequiredOverrideText1=%1 kan geïnstalleerd worden voor alle gebruikers (vereist aanmelding als een systeembeheerder), of voor u alleen. 53 | PrivilegesRequiredOverrideText2=%1 kan geïnstalleerd worden voor u alleen, of voor alle gebruikers (vereist aanmelding als een systeembeheerder). 54 | PrivilegesRequiredOverrideAllUsers=Installeer voor &alle gebruikers 55 | PrivilegesRequiredOverrideAllUsersRecommended=Installeer voor &alle gebruikers (aanbevolen) 56 | PrivilegesRequiredOverrideCurrentUser=Installeer voor &mij alleen 57 | PrivilegesRequiredOverrideCurrentUserRecommended=Installeer voor &mij alleen (aanbevolen) 58 | 59 | ; *** Misc. errors 60 | ErrorCreatingDir=Setup kan de map "%1" niet maken 61 | ErrorTooManyFilesInDir=Kan geen bestand maken in de map "%1" omdat deze te veel bestanden bevat 62 | 63 | ; *** Setup common messages 64 | ExitSetupTitle=Setup afsluiten 65 | ExitSetupMessage=Setup is niet voltooid. Als u nu afsluit, wordt het programma niet geïnstalleerd.%n%nU kunt Setup later opnieuw uitvoeren om de installatie te voltooien.%n%nSetup afsluiten? 66 | AboutSetupMenuItem=&Over Setup... 67 | AboutSetupTitle=Over Setup 68 | AboutSetupMessage=%1 versie %2%n%3%n%n%1-homepage:%n%4 69 | AboutSetupNote= 70 | TranslatorNote=Dutch translation maintained by Martijn Laan (mlaan@jrsoftware.org) 71 | 72 | ; *** Buttons 73 | ButtonBack=< Vo&rige 74 | ButtonNext=&Volgende > 75 | ButtonInstall=&Installeren 76 | ButtonOK=OK 77 | ButtonCancel=Annuleren 78 | ButtonYes=&Ja 79 | ButtonYesToAll=Ja op &alles 80 | ButtonNo=&Nee 81 | ButtonNoToAll=N&ee op alles 82 | ButtonFinish=&Voltooien 83 | ButtonBrowse=&Bladeren... 84 | ButtonWizardBrowse=B&laderen... 85 | ButtonNewFolder=&Nieuwe map maken 86 | 87 | ; *** "Select Language" dialog messages 88 | SelectLanguageTitle=Selecteer taal voor Setup 89 | SelectLanguageLabel=Selecteer de taal die Setup gebruikt tijdens de installatie. 90 | 91 | ; *** Common wizard text 92 | ClickNext=Klik op Volgende om verder te gaan of op Annuleren om Setup af te sluiten. 93 | BeveledLabel= 94 | BrowseDialogTitle=Map Selecteren 95 | BrowseDialogLabel=Selecteer een map in onderstaande lijst en klik daarna op OK. 96 | NewFolderName=Nieuwe map 97 | 98 | ; *** "Welcome" wizard page 99 | WelcomeLabel1=Welkom bij het installatieprogramma van [name]. 100 | WelcomeLabel2=Hiermee wordt [name/ver] geïnstalleerd op deze computer.%n%nU wordt aanbevolen alle actieve programma's af te sluiten voordat u verder gaat. 101 | 102 | ; *** "Password" wizard page 103 | WizardPassword=Wachtwoord 104 | PasswordLabel1=Deze installatie is beveiligd met een wachtwoord. 105 | PasswordLabel3=Voer het wachtwoord in en klik op Volgende om verder te gaan. Wachtwoorden zijn hoofdlettergevoelig. 106 | PasswordEditLabel=&Wachtwoord: 107 | IncorrectPassword=Het ingevoerde wachtwoord is niet correct. Probeer het opnieuw. 108 | 109 | ; *** "License Agreement" wizard page 110 | WizardLicense=Licentieovereenkomst 111 | LicenseLabel=Lees de volgende belangrijke informatie voordat u verder gaat. 112 | LicenseLabel3=Lees de volgende licentieovereenkomst. Gebruik de schuifbalk of druk op de knop Page Down om de rest van de overeenkomst te zien. 113 | LicenseAccepted=Ik &accepteer de licentieovereenkomst 114 | LicenseNotAccepted=Ik accepteer de licentieovereenkomst &niet 115 | 116 | ; *** "Information" wizard pages 117 | WizardInfoBefore=Informatie 118 | InfoBeforeLabel=Lees de volgende belangrijke informatie voordat u verder gaat. 119 | InfoBeforeClickLabel=Klik op Volgende als u gereed bent om verder te gaan met Setup. 120 | WizardInfoAfter=Informatie 121 | InfoAfterLabel=Lees de volgende belangrijke informatie voordat u verder gaat. 122 | InfoAfterClickLabel=Klik op Volgende als u gereed bent om verder te gaan met Setup. 123 | 124 | ; *** "User Information" wizard page 125 | WizardUserInfo=Gebruikersinformatie 126 | UserInfoDesc=Vul hier uw informatie in. 127 | UserInfoName=&Gebruikersnaam: 128 | UserInfoOrg=&Organisatie: 129 | UserInfoSerial=&Serienummer: 130 | UserInfoNameRequired=U moet een naam invullen. 131 | 132 | ; *** "Select Destination Location" wizard page 133 | WizardSelectDir=Kies de doelmap 134 | SelectDirDesc=Waar moet [name] geïnstalleerd worden? 135 | SelectDirLabel3=Setup zal [name] in de volgende map installeren. 136 | SelectDirBrowseLabel=Klik op Volgende om door te gaan. Klik op Bladeren om een andere map te kiezen. 137 | DiskSpaceGBLabel=Er is ten minste [gb] GB vrije schijfruimte vereist. 138 | DiskSpaceMBLabel=Er is ten minste [mb] MB vrije schijfruimte vereist. 139 | CannotInstallToNetworkDrive=Setup kan niet installeren naar een netwerkstation. 140 | CannotInstallToUNCPath=Setup kan niet installeren naar een UNC-pad. 141 | InvalidPath=U moet een volledig pad met stationsletter invoeren; bijvoorbeeld:%nC:\APP%n%nof een UNC-pad zoals:%n%n\\server\share 142 | InvalidDrive=Het geselecteerde station bestaat niet. Kies een ander station. 143 | DiskSpaceWarningTitle=Onvoldoende schijfruimte 144 | DiskSpaceWarning=Setup vereist ten minste %1 kB vrije schijfruimte voor het installeren, maar het geselecteerde station heeft slechts %2 kB beschikbaar.%n%nWilt u toch doorgaan? 145 | DirNameTooLong=De mapnaam of het pad is te lang. 146 | InvalidDirName=De mapnaam is ongeldig. 147 | BadDirName32=Mapnamen mogen geen van de volgende tekens bevatten:%n%n%1 148 | DirExistsTitle=Map bestaat al 149 | DirExists=De map:%n%n%1%n%nbestaat al. Wilt u toch naar die map installeren? 150 | DirDoesntExistTitle=Map bestaat niet 151 | DirDoesntExist=De map:%n%n%1%n%nbestaat niet. Wilt u de map aanmaken? 152 | 153 | ; *** "Select Components" wizard page 154 | WizardSelectComponents=Selecteer componenten 155 | SelectComponentsDesc=Welke componenten moeten geïnstalleerd worden? 156 | SelectComponentsLabel2=Selecteer de componenten die u wilt installeren. Klik op Volgende als u klaar bent om verder te gaan. 157 | FullInstallation=Volledige installatie 158 | CompactInstallation=Compacte installatie 159 | CustomInstallation=Aangepaste installatie 160 | NoUninstallWarningTitle=Component bestaat 161 | NoUninstallWarning=Setup heeft gedetecteerd dat de volgende componenten al geïnstalleerd zijn op uw computer:%n%n%1%n%nAls u de selectie van deze componenten ongedaan maakt, worden ze niet verwijderd.%n%nWilt u toch doorgaan? 162 | ComponentSize1=%1 KB 163 | ComponentSize2=%1 MB 164 | ComponentsDiskSpaceGBLabel=De huidige selectie vereist ten minste [gb] GB vrije schijfruimte. 165 | ComponentsDiskSpaceMBLabel=De huidige selectie vereist ten minste [mb] MB vrije schijfruimte. 166 | 167 | ; *** "Select Additional Tasks" wizard page 168 | WizardSelectTasks=Selecteer extra taken 169 | SelectTasksDesc=Welke extra taken moeten uitgevoerd worden? 170 | SelectTasksLabel2=Selecteer de extra taken die u door Setup wilt laten uitvoeren bij het installeren van [name], en klik vervolgens op Volgende. 171 | 172 | ; *** "Select Start Menu Folder" wizard page 173 | WizardSelectProgramGroup=Selecteer menu Start map 174 | SelectStartMenuFolderDesc=Waar moeten de snelkoppelingen van het programma geplaatst worden? 175 | SelectStartMenuFolderLabel3=Setup plaatst de snelkoppelingen van het programma in de volgende menu Start map. 176 | SelectStartMenuFolderBrowseLabel=Klik op Volgende om door te gaan. Klik op Bladeren om een andere map te kiezen. 177 | MustEnterGroupName=U moet een mapnaam invoeren. 178 | GroupNameTooLong=De mapnaam of het pad is te lang. 179 | InvalidGroupName=De mapnaam is ongeldig. 180 | BadGroupName=De mapnaam mag geen van de volgende tekens bevatten:%n%n%1 181 | NoProgramGroupCheck2=&Geen menu Start map maken 182 | 183 | ; *** "Ready to Install" wizard page 184 | WizardReady=Het voorbereiden van de installatie is gereed 185 | ReadyLabel1=Setup is nu gereed om te beginnen met het installeren van [name] op deze computer. 186 | ReadyLabel2a=Klik op Installeren om verder te gaan met installeren, of klik op Vorige als u instellingen wilt terugzien of veranderen. 187 | ReadyLabel2b=Klik op Installeren om verder te gaan met installeren. 188 | ReadyMemoUserInfo=Gebruikersinformatie: 189 | ReadyMemoDir=Doelmap: 190 | ReadyMemoType=Installatietype: 191 | ReadyMemoComponents=Geselecteerde componenten: 192 | ReadyMemoGroup=Menu Start map: 193 | ReadyMemoTasks=Extra taken: 194 | 195 | ; *** TDownloadWizardPage wizard page and DownloadTemporaryFile 196 | DownloadingLabel=Bezig met het downloaden van extra bestanden... 197 | ButtonStopDownload=&Stop download 198 | StopDownload=Weet u zeker dat u de download wilt stoppen? 199 | ErrorDownloadAborted=Download afgebroken 200 | ErrorDownloadFailed=Download mislukt: %1 %2 201 | ErrorDownloadSizeFailed=Ophalen grootte mislukt: %1 %2 202 | ErrorFileHash1=Bestand hashing mislukt: %1 203 | ErrorFileHash2=Ongeldige bestandshash: %1 verwacht, %2 gevonden 204 | ErrorProgress=Ongeldige voortgang: %1 van %2 205 | ErrorFileSize=Ongeldige bestandsgrootte: %1 verwacht, %2 gevonden 206 | 207 | ; *** "Preparing to Install" wizard page 208 | WizardPreparing=Bezig met het voorbereiden van de installatie 209 | PreparingDesc=Setup is bezig met het voorbereiden van de installatie van [name]. 210 | PreviousInstallNotCompleted=De installatie/verwijdering van een vorig programma is niet voltooid. U moet uw computer opnieuw opstarten om die installatie te voltooien.%n%nStart Setup nogmaals nadat uw computer opnieuw is opgestart om de installatie van [name] te voltooien. 211 | CannotContinue=Setup kan niet doorgaan. Klik op annuleren om af te sluiten. 212 | ApplicationsFound=De volgende programma's gebruiken bestanden die moeten worden bijgewerkt door Setup. U wordt aanbevolen Setup toe te staan om automatisch deze programma's af te sluiten. 213 | ApplicationsFound2=De volgende programma's gebruiken bestanden die moeten worden bijgewerkt door Setup. U wordt aanbevolen Setup toe te staan om automatisch deze programma's af te sluiten. Nadat de installatie is voltooid zal Setup proberen de applicaties opnieuw op te starten. 214 | CloseApplications=&Programma's automatisch afsluiten 215 | DontCloseApplications=Programma's &niet afsluiten 216 | ErrorCloseApplications=Setup kon niet alle programma's automatisch afsluiten. U wordt aanbevolen alle programma's die bestanden gebruiken die moeten worden bijgewerkt door Setup af te sluiten voordat u verder gaat. 217 | PrepareToInstallNeedsRestart=Setup moet uw computer opnieuw opstarten. Start Setup nogmaals nadat uw computer opnieuw is opgestart om de installatie van [name] te voltooien.%n%nWilt u nu opnieuw opstarten? 218 | 219 | ; *** "Installing" wizard page 220 | WizardInstalling=Bezig met installeren 221 | InstallingLabel=Setup installeert [name] op uw computer. Een ogenblik geduld... 222 | 223 | ; *** "Setup Completed" wizard page 224 | FinishedHeadingLabel=Setup heeft het installeren van [name] op deze computer voltooid. 225 | FinishedLabelNoIcons=Setup heeft het installeren van [name] op deze computer voltooid. 226 | FinishedLabel=Setup heeft het installeren van [name] op deze computer voltooid. U kunt het programma uitvoeren met de geïnstalleerde snelkoppelingen. 227 | ClickFinish=Klik op Voltooien om Setup te beëindigen. 228 | FinishedRestartLabel=Setup moet de computer opnieuw opstarten om de installatie van [name] te voltooien. Wilt u nu opnieuw opstarten? 229 | FinishedRestartMessage=Setup moet uw computer opnieuw opstarten om de installatie van [name] te voltooien.%n%nWilt u nu opnieuw opstarten? 230 | ShowReadmeCheck=Ja, ik wil het bestand Leesmij zien 231 | YesRadio=&Ja, start de computer nu opnieuw op 232 | NoRadio=&Nee, ik start de computer later opnieuw op 233 | RunEntryExec=Start %1 234 | RunEntryShellExec=Bekijk %1 235 | 236 | ; *** "Setup Needs the Next Disk" stuff 237 | ChangeDiskTitle=Setup heeft de volgende diskette nodig 238 | SelectDiskLabel2=Voer diskette %1 in en klik op OK.%n%nAls de bestanden op deze diskette in een andere map gevonden kunnen worden dan die hieronder wordt getoond, voer dan het juiste pad in of klik op Bladeren. 239 | PathLabel=&Pad: 240 | FileNotInDir2=Kan het bestand "%1" niet vinden in "%2". Voer de juiste diskette in of kies een andere map. 241 | SelectDirectoryLabel=Geef de locatie van de volgende diskette. 242 | 243 | ; *** Installation phase messages 244 | SetupAborted=Setup is niet voltooid.%n%nCorrigeer het probleem en voer Setup opnieuw uit. 245 | AbortRetryIgnoreSelectAction=Selecteer actie 246 | AbortRetryIgnoreRetry=&Probeer opnieuw 247 | AbortRetryIgnoreIgnore=&Negeer de fout en ga door 248 | AbortRetryIgnoreCancel=Breek installatie af 249 | 250 | ; *** Installation status messages 251 | StatusClosingApplications=Programma's afsluiten... 252 | StatusCreateDirs=Mappen maken... 253 | StatusExtractFiles=Bestanden uitpakken... 254 | StatusCreateIcons=Snelkoppelingen maken... 255 | StatusCreateIniEntries=INI-gegevens instellen... 256 | StatusCreateRegistryEntries=Registergegevens instellen... 257 | StatusRegisterFiles=Bestanden registreren... 258 | StatusSavingUninstall=Verwijderingsinformatie opslaan... 259 | StatusRunProgram=Installatie voltooien... 260 | StatusRestartingApplications=Programma's opnieuw starten... 261 | StatusRollback=Veranderingen ongedaan maken... 262 | 263 | ; *** Misc. errors 264 | ErrorInternal2=Interne fout: %1 265 | ErrorFunctionFailedNoCode=%1 mislukt 266 | ErrorFunctionFailed=%1 mislukt; code %2 267 | ErrorFunctionFailedWithMessage=%1 mislukt; code %2.%n%3 268 | ErrorExecutingProgram=Kan bestand niet uitvoeren:%n%1 269 | 270 | ; *** Registry errors 271 | ErrorRegOpenKey=Fout bij het openen van registersleutel:%n%1\%2 272 | ErrorRegCreateKey=Fout bij het maken van registersleutel:%n%1\%2 273 | ErrorRegWriteKey=Fout bij het schrijven naar registersleutel:%n%1\%2 274 | 275 | ; *** INI errors 276 | ErrorIniEntry=Fout bij het maken van een INI-instelling in bestand "%1". 277 | 278 | ; *** File copying errors 279 | FileAbortRetryIgnoreSkipNotRecommended=&Sla dit bestand over (niet aanbevolen) 280 | FileAbortRetryIgnoreIgnoreNotRecommended=&Negeer de fout en ga door (niet aanbevolen) 281 | SourceIsCorrupted=Het bronbestand is beschadigd 282 | SourceDoesntExist=Het bronbestand "%1" bestaat niet 283 | ExistingFileReadOnly2=Het bestaande bestand kon niet vervangen worden omdat het een alleen-lezen markering heeft. 284 | ExistingFileReadOnlyRetry=&Verwijder de alleen-lezen markering en probeer het opnieuw 285 | ExistingFileReadOnlyKeepExisting=&Behoud het bestaande bestand 286 | ErrorReadingExistingDest=Er is een fout opgetreden bij het lezen van het bestaande bestand: 287 | FileExistsSelectAction=Selecteer actie 288 | FileExists2=Het bestand bestaat al. 289 | FileExistsOverwriteExisting=&Overschrijf het bestaande bestand 290 | FileExistsKeepExisting=&Behoud het bestaande bestand 291 | FileExistsOverwriteOrKeepAll=&Dit voor de volgende conflicten uitvoeren 292 | ExistingFileNewerSelectAction=Selecteer actie 293 | ExistingFileNewer2=Het bestaande bestand is nieuwer dan het bestand dat Setup probeert te installeren. 294 | ExistingFileNewerOverwriteExisting=&Overschrijf het bestaande bestand 295 | ExistingFileNewerKeepExisting=&Behoud het bestaande bestand (aanbevolen) 296 | ExistingFileNewerOverwriteOrKeepAll=&Dit voor de volgende conflicten uitvoeren 297 | ErrorChangingAttr=Er is een fout opgetreden bij het wijzigen van de kenmerken van het bestaande bestand: 298 | ErrorCreatingTemp=Er is een fout opgetreden bij het maken van een bestand in de doelmap: 299 | ErrorReadingSource=Er is een fout opgetreden bij het lezen van het bronbestand: 300 | ErrorCopying=Er is een fout opgetreden bij het kopiëren van een bestand: 301 | ErrorReplacingExistingFile=Er is een fout opgetreden bij het vervangen van het bestaande bestand: 302 | ErrorRestartReplace=Vervangen na opnieuw starten is mislukt: 303 | ErrorRenamingTemp=Er is een fout opgetreden bij het hernoemen van een bestand in de doelmap: 304 | ErrorRegisterServer=Kan de DLL/OCX niet registreren: %1 305 | ErrorRegSvr32Failed=RegSvr32 mislukt met afsluitcode %1 306 | ErrorRegisterTypeLib=Kan de type library niet registreren: %1 307 | 308 | ; *** Uninstall display name markings 309 | UninstallDisplayNameMark=%1 (%2) 310 | UninstallDisplayNameMarks=%1 (%2, %3) 311 | UninstallDisplayNameMark32Bit=32-bit 312 | UninstallDisplayNameMark64Bit=64-bit 313 | UninstallDisplayNameMarkAllUsers=Alle gebruikers 314 | UninstallDisplayNameMarkCurrentUser=Huidige gebruiker 315 | 316 | ; *** Post-installation errors 317 | ErrorOpeningReadme=Er is een fout opgetreden bij het openen van het Leesmij-bestand. 318 | ErrorRestartingComputer=Setup kan de computer niet opnieuw opstarten. Doe dit handmatig. 319 | 320 | ; *** Uninstaller messages 321 | UninstallNotFound=Bestand "%1" bestaat niet. Kan het programma niet verwijderen. 322 | UninstallUnsupportedVer=Het installatie-logbestand "%1" heeft een formaat dat niet herkend wordt door deze versie van het verwijderprogramma. Kan het programma niet verwijderen 323 | UninstallUnknownEntry=Er is een onbekend gegeven (%1) aangetroffen in het installatie-logbestand 324 | ConfirmUninstall=Weet u zeker dat u %1 en alle bijbehorende componenten wilt verwijderen? 325 | UninstallOnlyOnWin64=Deze installatie kan alleen worden verwijderd onder 64-bit Windows. 326 | OnlyAdminCanUninstall=Deze installatie kan alleen worden verwijderd door een gebruiker met administratieve rechten. 327 | UninstallStatusLabel=%1 wordt verwijderd van uw computer. Een ogenblik geduld. 328 | UninstallOpenError=Bestand "%1" kon niet worden geopend. Kan het verwijderen niet voltooien. 329 | UninstalledAll=%1 is met succes van deze computer verwijderd. 330 | UninstalledMost=Het verwijderen van %1 is voltooid.%n%nEnkele elementen konden niet verwijderd worden. Deze kunnen handmatig verwijderd worden. 331 | UninstalledAndNeedsRestart=Om het verwijderen van %1 te voltooien, moet uw computer opnieuw worden opgestart.%n%nWilt u nu opnieuw opstarten? 332 | UninstallDataCorrupted="%1" bestand is beschadigd. Kan verwijderen niet voltooien 333 | 334 | ; *** Uninstallation phase messages 335 | ConfirmDeleteSharedFileTitle=Gedeeld bestand verwijderen? 336 | ConfirmDeleteSharedFile2=Het systeem geeft aan dat het volgende gedeelde bestand niet langer gebruikt wordt door enig programma. Wilt u dat dit gedeelde bestand verwijderd wordt?%n%nAls dit bestand toch nog gebruikt wordt door een programma en het verwijderd wordt, werkt dat programma misschien niet meer correct. Als u het niet zeker weet, kies dan Nee. Bewaren van het bestand op dit systeem is niet schadelijk. 337 | SharedFileNameLabel=Bestandsnaam: 338 | SharedFileLocationLabel=Locatie: 339 | WizardUninstalling=Verwijderingsstatus 340 | StatusUninstalling=Verwijderen van %1... 341 | 342 | ; *** Shutdown block reasons 343 | ShutdownBlockReasonInstallingApp=Installeren van %1. 344 | ShutdownBlockReasonUninstallingApp=Verwijderen van %1. 345 | 346 | [CustomMessages] 347 | 348 | NameAndVersion=%1 versie %2 349 | AdditionalIcons=Extra snelkoppelingen: 350 | CreateDesktopIcon=Maak een snelkoppeling op het &bureaublad 351 | CreateQuickLaunchIcon=Maak een snelkoppeling op de &Snel starten werkbalk 352 | ProgramOnTheWeb=%1 op het Web 353 | UninstallProgram=Verwijder %1 354 | LaunchProgram=&Start %1 355 | AssocFileExtension=&Koppel %1 aan de %2 bestandsextensie 356 | AssocingFileExtension=Bezig met koppelen van %1 aan de %2 bestandsextensie... 357 | AutoStartProgramGroupDescription=Opstarten: 358 | AutoStartProgram=%1 automatisch starten 359 | AddonHostProgramNotFound=%1 kon niet worden gevonden in de geselecteerde map.%n%nWilt u toch doorgaan? 360 | -------------------------------------------------------------------------------- /third-party/inno/Languages/Finnish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Finnish.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Hebrew.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Hebrew.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Hungarian.isl: -------------------------------------------------------------------------------- 1 | ; *** Inno Setup version 6.1.0+ Hungarian messages *** 2 | ; Based on the translation of Kornél Pál, kornelpal@gmail.com 3 | ; István Szabó, E-mail: istvanszabo890629@gmail.com 4 | ; 5 | ; To download user-contributed translations of this file, go to: 6 | ; http://www.jrsoftware.org/files/istrans/ 7 | ; 8 | ; Note: When translating this text, do not add periods (.) to the end of 9 | ; messages that didn't have them already, because on those messages Inno 10 | ; Setup adds the periods automatically (appending a period would result in 11 | ; two periods being displayed). 12 | 13 | [LangOptions] 14 | ; The following three entries are very important. Be sure to read and 15 | ; understand the '[LangOptions] section' topic in the help file. 16 | LanguageName=Magyar 17 | LanguageID=$040E 18 | LanguageCodePage=1250 19 | ; If the language you are translating to requires special font faces or 20 | ; sizes, uncomment any of the following entries and change them accordingly. 21 | ;DialogFontName= 22 | ;DialogFontSize=8 23 | ;WelcomeFontName=Verdana 24 | ;WelcomeFontSize=12 25 | ;TitleFontName=Arial CE 26 | ;TitleFontSize=29 27 | ;CopyrightFontName=Arial CE 28 | ;CopyrightFontSize=8 29 | 30 | [Messages] 31 | 32 | ; *** Application titles 33 | SetupAppTitle=Telepítő 34 | SetupWindowTitle=%1 - Telepítő 35 | UninstallAppTitle=Eltávolító 36 | UninstallAppFullTitle=%1 - Eltávolító 37 | 38 | ; *** Misc. common 39 | InformationTitle=Információk 40 | ConfirmTitle=Megerősít 41 | ErrorTitle=Hiba 42 | 43 | ; *** SetupLdr messages 44 | SetupLdrStartupMessage=%1 telepítve lesz. Szeretné folytatni? 45 | LdrCannotCreateTemp=Átmeneti fájl létrehozása nem lehetséges. A telepítés megszakítva 46 | LdrCannotExecTemp=Fájl futattása nem lehetséges az átmeneti könyvtárban. A telepítés megszakítva 47 | HelpTextNote= 48 | 49 | ; *** Startup error messages 50 | LastErrorMessage=%1.%n%nHiba %2: %3 51 | SetupFileMissing=A(z) %1 fájl hiányzik a telepítő könyvtárából. Kérem hárítsa el a problémát, vagy szerezzen be egy másik példányt a programból! 52 | SetupFileCorrupt=A telepítési fájlok sérültek. Kérem, szerezzen be új másolatot a programból! 53 | SetupFileCorruptOrWrongVer=A telepítési fájlok sérültek, vagy inkompatibilisek a telepítő ezen verziójával. Hárítsa el a problémát, vagy szerezzen be egy másik példányt a programból! 54 | InvalidParameter=A parancssorba átadott paraméter érvénytelen:%n%n%1 55 | SetupAlreadyRunning=A Telepítő már fut. 56 | WindowsVersionNotSupported=A program nem támogatja a Windows ezen verzióját. 57 | WindowsServicePackRequired=A program futtatásához %1 Service Pack %2 vagy újabb szükséges. 58 | NotOnThisPlatform=Ez a program nem futtatható %1 alatt. 59 | OnlyOnThisPlatform=Ezt a programot %1 alatt kell futtatni. 60 | OnlyOnTheseArchitectures=A program kizárólag a következő processzor architektúrákhoz tervezett Windows-on telepíthető:%n%n%1 61 | WinVersionTooLowError=A program futtatásához %1 %2 verziója vagy későbbi szükséges. 62 | WinVersionTooHighError=Ez a program nem telepíthető %1 %2 vagy későbbire. 63 | AdminPrivilegesRequired=Csak rendszergazdai módban telepíthető ez a program. 64 | PowerUserPrivilegesRequired=Csak rendszergazdaként vagy kiemelt felhasználóként telepíthető ez a program. 65 | 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. 66 | UninstallAppRunningError=Az eltávolí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. 67 | 68 | ; *** Startup questions 69 | PrivilegesRequiredOverrideTitle=Telepítési mód kiválasztása 70 | PrivilegesRequiredOverrideInstruction=Válasszon telepítési módot 71 | PrivilegesRequiredOverrideText1=%1 telepíthető az összes felhasználónak (rendszergazdai jogok szükségesek), vagy csak magának. 72 | PrivilegesRequiredOverrideText2=%1 csak magának telepíthető, vagy az összes felhasználónak (rendszergazdai jogok szükségesek). 73 | PrivilegesRequiredOverrideAllUsers=Telepítés &mindenkinek 74 | PrivilegesRequiredOverrideAllUsersRecommended=Telepítés &mindenkinek (ajánlott) 75 | PrivilegesRequiredOverrideCurrentUser=Telepítés csak &nekem 76 | PrivilegesRequiredOverrideCurrentUserRecommended=Telepítés csak &nekem (ajánlott) 77 | 78 | ; *** Misc. errors 79 | ErrorCreatingDir=A Telepítő nem tudta létrehozni a(z) "%1" könyvtárat 80 | ErrorTooManyFilesInDir=Nem hozható létre fájl a(z) "%1" könyvtárban, mert az már túl sok fájlt tartalmaz 81 | 82 | ; *** Setup common messages 83 | ExitSetupTitle=Kilépés a telepítőből 84 | 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? 85 | AboutSetupMenuItem=&Névjegy... 86 | AboutSetupTitle=Telepítő névjegye 87 | AboutSetupMessage=%1 %2 verzió%n%3%n%nAz %1 honlapja:%n%4 88 | AboutSetupNote= 89 | TranslatorNote= 90 | 91 | ; *** Buttons 92 | ButtonBack=< &Vissza 93 | ButtonNext=&Tovább > 94 | ButtonInstall=&Telepít 95 | ButtonOK=OK 96 | ButtonCancel=Mégse 97 | ButtonYes=&Igen 98 | ButtonYesToAll=&Mindet 99 | ButtonNo=&Nem 100 | ButtonNoToAll=&Egyiket se 101 | ButtonFinish=&Befejezés 102 | ButtonBrowse=&Tallózás... 103 | ButtonWizardBrowse=T&allózás... 104 | ButtonNewFolder=Új &könyvtár 105 | 106 | ; *** "Select Language" dialog messages 107 | SelectLanguageTitle=Telepítő nyelvi beállítás 108 | SelectLanguageLabel=Válassza ki a telepítés alatt használt nyelvet. 109 | 110 | ; *** Common wizard text 111 | ClickNext=A folytatáshoz kattintson a 'Tovább'-ra, a kilépéshez a 'Mégse'-re. 112 | BeveledLabel= 113 | BrowseDialogTitle=Válasszon könyvtárt 114 | BrowseDialogLabel=Válasszon egy könyvtárat az alábbi listából, majd kattintson az 'OK'-ra. 115 | NewFolderName=Új könyvtár 116 | 117 | ; *** "Welcome" wizard page 118 | WelcomeLabel1=Üdvözli a(z) [name] Telepítővarázslója. 119 | WelcomeLabel2=A(z) [name/ver] telepítésre kerül a számítógépén.%n%nAjánlott minden, egyéb futó alkalmazás bezárása a folytatás előtt. 120 | 121 | ; *** "Password" wizard page 122 | WizardPassword=Jelszó 123 | PasswordLabel1=Ez a telepítés jelszóval védett. 124 | PasswordLabel3=Kérem adja meg a jelszót, majd kattintson a 'Tovább'-ra. A jelszavak kis- és nagy betű érzékenyek lehetnek. 125 | PasswordEditLabel=&Jelszó: 126 | IncorrectPassword=Az ön által megadott jelszó helytelen. Próbálja újra. 127 | 128 | ; *** "License Agreement" wizard page 129 | WizardLicense=Licencszerződés 130 | LicenseLabel=Olvassa el figyelmesen az információkat folytatás előtt. 131 | LicenseLabel3=Kérem, olvassa el az alábbi licencszerződést. A telepítés folytatásához, el kell fogadnia a szerződést. 132 | LicenseAccepted=&Elfogadom a szerződést 133 | LicenseNotAccepted=&Nem fogadom el a szerződést 134 | 135 | ; *** "Information" wizard pages 136 | WizardInfoBefore=Információk 137 | InfoBeforeLabel=Olvassa el a következő fontos információkat a folytatás előtt. 138 | InfoBeforeClickLabel=Ha készen áll, kattintson a 'Tovább'-ra. 139 | WizardInfoAfter=Információk 140 | InfoAfterLabel=Olvassa el a következő fontos információkat a folytatás előtt. 141 | InfoAfterClickLabel=Ha készen áll, kattintson a 'Tovább'-ra. 142 | 143 | ; *** "User Information" wizard page 144 | WizardUserInfo=Felhasználó adatai 145 | UserInfoDesc=Kérem, adja meg az adatait! 146 | UserInfoName=&Felhasználónév: 147 | UserInfoOrg=&Szervezet: 148 | UserInfoSerial=&Sorozatszám: 149 | UserInfoNameRequired=Meg kell adnia egy nevet! 150 | 151 | ; *** "Select Destination Location" wizard page 152 | WizardSelectDir=Válasszon célkönyvtárat 153 | SelectDirDesc=Hova települjön a(z) [name]? 154 | SelectDirLabel3=A(z) [name] az alábbi könyvtárba lesz telepítve. 155 | SelectDirBrowseLabel=A folytatáshoz, kattintson a 'Tovább'-ra. Ha másik könyvtárat választana, kattintson a 'Tallózás'-ra. 156 | DiskSpaceGBLabel=Legalább [gb] GB szabad területre van szükség. 157 | DiskSpaceMBLabel=Legalább [mb] MB szabad területre van szükség. 158 | CannotInstallToNetworkDrive=A Telepítő nem tud hálózati meghajtóra telepíteni. 159 | CannotInstallToUNCPath=A Telepítő nem tud hálózati UNC elérési útra telepíteni. 160 | InvalidPath=Teljes útvonalat adjon meg, a meghajtó betűjelével; például:%n%nC:\Alkalmazás%n%nvagy egy hálózati útvonalat a következő alakban:%n%n\\kiszolgáló\megosztás 161 | InvalidDrive=A kiválasztott meghajtó vagy hálózati megosztás nem létezik vagy nem elérhető. Válasszon egy másikat. 162 | DiskSpaceWarningTitle=Nincs elég szabad terület 163 | DiskSpaceWarning=A Telepítőnek legalább %1 KB szabad lemezterületre van szüksége, viszont a kiválasztott meghajtón csupán %2 KB áll rendelkezésre.%n%nMindenképpen folytatja? 164 | DirNameTooLong=A könyvtár neve vagy az útvonal túl hosszú. 165 | InvalidDirName=A könyvtár neve érvénytelen. 166 | BadDirName32=A könyvtárak nevei ezen karakterek egyikét sem tartalmazhatják:%n%n%1 167 | DirExistsTitle=A könyvtár már létezik 168 | DirExists=A könyvtár:%n%n%1%n%nmár létezik. Mindenképp ide akar telepíteni? 169 | DirDoesntExistTitle=A könyvtár nem létezik 170 | DirDoesntExist=A könyvtár:%n%n%1%n%nnem létezik. Szeretné létrehozni? 171 | 172 | ; *** "Select Components" wizard page 173 | WizardSelectComponents=Összetevők kiválasztása 174 | SelectComponentsDesc=Mely összetevők kerüljenek telepítésre? 175 | SelectComponentsLabel2=Jelölje ki a telepítendő összetevőket; törölje a telepíteni nem kívánt összetevőket. Kattintson a 'Tovább'-ra, ha készen áll a folytatásra. 176 | FullInstallation=Teljes telepítés 177 | ; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) 178 | CompactInstallation=Szokásos telepítés 179 | CustomInstallation=Egyéni telepítés 180 | NoUninstallWarningTitle=Létező összetevő 181 | NoUninstallWarning=A telepítő úgy találta, hogy a következő összetevők már telepítve vannak a számítógépre:%n%n%1%n%nEzen összetevők kijelölésének törlése, nem távolítja el azokat a számítógépről.%n%nMindenképpen folytatja? 182 | ComponentSize1=%1 KB 183 | ComponentSize2=%1 MB 184 | ComponentsDiskSpaceGBLabel=A jelenlegi kijelölés legalább [gb] GB lemezterületet igényel. 185 | ComponentsDiskSpaceMBLabel=A jelenlegi kijelölés legalább [mb] MB lemezterületet igényel. 186 | 187 | ; *** "Select Additional Tasks" wizard page 188 | WizardSelectTasks=További feladatok 189 | SelectTasksDesc=Mely kiegészítő feladatok kerüljenek végrehajtásra? 190 | SelectTasksLabel2=Jelölje ki, mely kiegészítő feladatokat hajtsa végre a Telepítő a(z) [name] telepítése során, majd kattintson a 'Tovább'-ra. 191 | 192 | ; *** "Select Start Menu Folder" wizard page 193 | WizardSelectProgramGroup=Start Menü könyvtára 194 | SelectStartMenuFolderDesc=Hova helyezze a Telepítő a program parancsikonjait? 195 | SelectStartMenuFolderLabel3=A Telepítő a program parancsikonjait a Start menü következő mappájában fogja létrehozni. 196 | SelectStartMenuFolderBrowseLabel=A folytatáshoz kattintson a 'Tovább'-ra. Ha másik mappát választana, kattintson a 'Tallózás'-ra. 197 | MustEnterGroupName=Meg kell adnia egy mappanevet. 198 | GroupNameTooLong=A könyvtár neve vagy az útvonal túl hosszú. 199 | InvalidGroupName=A könyvtár neve érvénytelen. 200 | BadGroupName=A könyvtárak nevei ezen karakterek egyikét sem tartalmazhatják:%n%n%1 201 | NoProgramGroupCheck2=&Ne hozzon létre mappát a Start menüben 202 | 203 | ; *** "Ready to Install" wizard page 204 | WizardReady=Készen állunk a telepítésre 205 | ReadyLabel1=A Telepítő készen áll, a(z) [name] számítógépre telepítéshez. 206 | ReadyLabel2a=Kattintson a 'Telepítés'-re a folytatáshoz, vagy a "Vissza"-ra a beállítások áttekintéséhez vagy megváltoztatásához. 207 | ReadyLabel2b=Kattintson a 'Telepítés'-re a folytatáshoz. 208 | ReadyMemoUserInfo=Felhasználó adatai: 209 | ReadyMemoDir=Telepítés célkönyvtára: 210 | ReadyMemoType=Telepítés típusa: 211 | ReadyMemoComponents=Választott összetevők: 212 | ReadyMemoGroup=Start menü mappája: 213 | ReadyMemoTasks=Kiegészítő feladatok: 214 | 215 | ; *** TDownloadWizardPage wizard page and DownloadTemporaryFile 216 | DownloadingLabel=További fájlok letöltése... 217 | ButtonStopDownload=&Letöltés megállítása 218 | StopDownload=Biztos, hogy leakarja állítani a letöltést? 219 | ErrorDownloadAborted=Letöltés megszakítva 220 | ErrorDownloadFailed=A letöltés meghiúsult: %1 %2 221 | ErrorDownloadSizeFailed=Hiba a fájlméret lekérése során: %1 %2 222 | ErrorFileHash1=Fájl Hash (hasítóérték) hiba: %1 223 | ErrorFileHash2=Érvénytelen hash fájl, várt érték: %1, számított: %2 224 | ErrorProgress=Érvénytelen folyamat: %1 : %2 225 | ErrorFileSize=Érvénytelen fájlméret, várt méret %1, számított: %2 226 | 227 | ; *** "Preparing to Install" wizard page 228 | WizardPreparing=Felkészülés a telepítésre 229 | PreparingDesc=A Telepítő felkészül a(z) [name] számítógépre történő telepítéshez. 230 | PreviousInstallNotCompleted=Egy korábbi program telepítése/eltávolítása nem fejeződött be. Újra kell indítania a számítógépét a másik telepítés befejezéséhez.%n%nA számítógépe újraindítása után ismét futtassa a Telepítőt a(z) [name] telepítésének befejezéséhez. 231 | CannotContinue=A telepítés nem folytatható. A kilépéshez kattintson a 'Mégse'-re. 232 | ApplicationsFound=A következő alkalmazások olyan fájlokat használnak, amelyeket a Telepítőnek frissíteni kell. Ajánlott, hogy engedélyezze a Telepítőnek ezen alkalmazások automatikus bezárását. 233 | ApplicationsFound2=A következő alkalmazások olyan fájlokat használnak, amelyeket a Telepítőnek frissíteni kell. Ajánlott, hogy engedélyezze a Telepítőnek ezen alkalmazások automatikus bezárását. A telepítés befejezése után, a Telepítő megkísérli az alkalmazások újraindítását. 234 | CloseApplications=&Alkalmazások automatikus bezárása 235 | DontCloseApplications=&Ne zárja be az alkalmazásokat 236 | ErrorCloseApplications=A Telepítő nem tudott minden alkalmazást automatikusan bezárni. A folytatás előtt ajánlott minden, a Telepítő által frissítendő fájlokat használó alkalmazást bezárni. 237 | PrepareToInstallNeedsRestart=A telepítőnek most újra kell indítania a számítógépet. Az újraindítás után, futtassa újból ezt a telepítőt, hogy befejezze a [name] telepítését.%n%nÚjra szeretné most indítani a gépet? 238 | 239 | ; *** "Installing" wizard page 240 | WizardInstalling=Telepítés 241 | InstallingLabel=Kérem várjon, amíg a(z) [name] telepítése zajlik. 242 | 243 | ; *** "Setup Completed" wizard page 244 | FinishedHeadingLabel=A(z) [name] telepítésének befejezése 245 | FinishedLabelNoIcons=A Telepítő végzett a(z) [name] telepítésével. 246 | FinishedLabel=A Telepítő végzett a(z) [name] telepítésével. Az alkalmazást a létrehozott ikonok kiválasztásával indíthatja. 247 | ClickFinish=Kattintson a 'Befejezés'-re a kilépéshez. 248 | FinishedRestartLabel=A(z) [name] telepítésének befejezéséhez újra kell indítani a számítógépet. Újraindítja most? 249 | FinishedRestartMessage=A(z) [name] telepítésének befejezéséhez, a Telepítőnek újra kell indítani a számítógépet.%n%nÚjraindítja most? 250 | ShowReadmeCheck=Igen, szeretném elolvasni a FONTOS fájlt 251 | YesRadio=&Igen, újraindítás most 252 | NoRadio=&Nem, később indítom újra 253 | ; used for example as 'Run MyProg.exe' 254 | RunEntryExec=%1 futtatása 255 | ; used for example as 'View Readme.txt' 256 | RunEntryShellExec=%1 megtekintése 257 | 258 | ; *** "Setup Needs the Next Disk" stuff 259 | ChangeDiskTitle=A Telepítőnek szüksége van a következő lemezre 260 | SelectDiskLabel2=Helyezze be a(z) %1. lemezt és kattintson az 'OK'-ra.%n%nHa a fájlok a lemez egy a megjelenítettől különböző mappájában találhatók, írja be a helyes útvonalat vagy kattintson a 'Tallózás'-ra. 261 | PathLabel=Ú&tvonal: 262 | FileNotInDir2=A(z) "%1" fájl nem található a következő helyen: "%2". Helyezze be a megfelelő lemezt vagy válasszon egy másik mappát. 263 | SelectDirectoryLabel=Adja meg a következő lemez helyét. 264 | 265 | ; *** Installation phase messages 266 | SetupAborted=A telepítés nem fejeződött be.%n%nHárítsa el a hibát és futtassa újból a Telepítőt. 267 | AbortRetryIgnoreSelectAction=Válasszon műveletet 268 | AbortRetryIgnoreRetry=&Újra 269 | AbortRetryIgnoreIgnore=&Hiba elvetése és folytatás 270 | AbortRetryIgnoreCancel=Telepítés megszakítása 271 | 272 | ; *** Installation status messages 273 | StatusClosingApplications=Alkalmazások bezárása... 274 | StatusCreateDirs=Könyvtárak létrehozása... 275 | StatusExtractFiles=Fájlok kibontása... 276 | StatusCreateIcons=Parancsikonok létrehozása... 277 | StatusCreateIniEntries=INI bejegyzések létrehozása... 278 | StatusCreateRegistryEntries=Rendszerleíró bejegyzések létrehozása... 279 | StatusRegisterFiles=Fájlok regisztrálása... 280 | StatusSavingUninstall=Eltávolító információk mentése... 281 | StatusRunProgram=Telepítés befejezése... 282 | StatusRestartingApplications=Alkalmazások újraindítása... 283 | StatusRollback=Változtatások visszavonása... 284 | 285 | ; *** Misc. errors 286 | ErrorInternal2=Belső hiba: %1 287 | ErrorFunctionFailedNoCode=Sikertelen %1 288 | ErrorFunctionFailed=Sikertelen %1; kód: %2 289 | ErrorFunctionFailedWithMessage=Sikertelen %1; kód: %2.%n%3 290 | ErrorExecutingProgram=Nem hajtható végre a fájl:%n%1 291 | 292 | ; *** Registry errors 293 | ErrorRegOpenKey=Nem nyitható meg a rendszerleíró kulcs:%n%1\%2 294 | ErrorRegCreateKey=Nem hozható létre a rendszerleíró kulcs:%n%1\%2 295 | ErrorRegWriteKey=Nem módosítható a rendszerleíró kulcs:%n%1\%2 296 | 297 | ; *** INI errors 298 | ErrorIniEntry=Hiba lépett fel az INI bejegyzés során, ebben a fájlban: "%1". 299 | 300 | ; *** File copying errors 301 | FileAbortRetryIgnoreSkipNotRecommended=&Fájl kihagyása (nem ajánlott) 302 | FileAbortRetryIgnoreIgnoreNotRecommended=&Hiba elvetése és folytatás (nem ajánlott) 303 | SourceIsCorrupted=A forrásfájl megsérült 304 | SourceDoesntExist=A(z) "%1" forrásfájl nem létezik 305 | ExistingFileReadOnly2=A fájl csak olvashatóként van jelölve, ezért nem cserélhető le. 306 | ExistingFileReadOnlyRetry=Csak &olvasható tulajdonság eltávolítása és újra próbálkozás 307 | ExistingFileReadOnlyKeepExisting=&Létező fájl megtartása 308 | ErrorReadingExistingDest=Hiba lépett fel a fájl olvasása közben: 309 | FileExistsSelectAction=Mit tegyünk? 310 | FileExists2=A fájl már létezik. 311 | FileExistsOverwriteExisting=A &létező fájl felülírása 312 | FileExistsKeepExisting=A &már létező fájl megtartása 313 | FileExistsOverwriteOrKeepAll=&Tegyük ezt, a következő fájlütközések esetén is 314 | ExistingFileNewerSelectAction=Mit kíván tenni? 315 | ExistingFileNewer2=A létező fájl újabb a telepítésre kerülőnél 316 | ExistingFileNewerOverwriteExisting=A &létező fájl felülírása 317 | ExistingFileNewerKeepExisting=&Tartsuk meg a létező fájlt (ajánlott) 318 | ExistingFileNewerOverwriteOrKeepAll=&Tegyük ezt, a következő fájlütközések esetén is 319 | ErrorChangingAttr=Hiba lépett fel a fájl attribútumának módosítása közben: 320 | ErrorCreatingTemp=Hiba lépett fel a fájl telepítési könyvtárban történő létrehozása közben: 321 | ErrorReadingSource=Hiba lépett fel a forrásfájl olvasása közben: 322 | ErrorCopying=Hiba lépett fel a fájl másolása közben: 323 | ErrorReplacingExistingFile=Hiba lépett fel a létező fájl cseréje közben: 324 | ErrorRestartReplace=A fájl cseréje az újraindítás után sikertelen volt: 325 | ErrorRenamingTemp=Hiba lépett fel fájl telepítési könyvtárban történő átnevezése közben: 326 | ErrorRegisterServer=Nem lehet regisztrálni a DLL-t/OCX-et: %1 327 | ErrorRegSvr32Failed=Sikertelen RegSvr32. A visszaadott kód: %1 328 | ErrorRegisterTypeLib=Nem lehet regisztrálni a típustárat: %1 329 | 330 | ; *** Uninstall display name markings 331 | ; used for example as 'My Program (32-bit)' 332 | UninstallDisplayNameMark=%1 (%2) 333 | ; used for example as 'My Program (32-bit, All users)' 334 | UninstallDisplayNameMarks=%1 (%2, %3) 335 | UninstallDisplayNameMark32Bit=32-bit 336 | UninstallDisplayNameMark64Bit=64-bit 337 | UninstallDisplayNameMarkAllUsers=Minden felhasználó 338 | UninstallDisplayNameMarkCurrentUser=Jelenlegi felhasználó 339 | 340 | ; *** Post-installation errors 341 | ErrorOpeningReadme=Hiba lépett fel a FONTOS fájl megnyitása közben. 342 | ErrorRestartingComputer=A Telepítő nem tudta újraindítani a számítógépet. Indítsa újra kézileg. 343 | 344 | ; *** Uninstaller messages 345 | UninstallNotFound=A(z) "%1" fájl nem létezik. Nem távolítható el. 346 | UninstallOpenError=A(z) "%1" fájl nem nyitható meg. Nem távolítható el 347 | 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ó 348 | UninstallUnknownEntry=Egy ismeretlen bejegyzés (%1) található az eltávolítási naplófájlban 349 | ConfirmUninstall=Biztosan el kívánja távolítani a(z) %1 programot és minden összetevőjét? 350 | UninstallOnlyOnWin64=Ezt a telepítést csak 64-bites Windows operációs rendszerről lehet eltávolítani. 351 | OnlyAdminCanUninstall=Ezt a telepítést csak adminisztrációs jogokkal rendelkező felhasználó távolíthatja el. 352 | UninstallStatusLabel=Legyen türelemmel, amíg a(z) %1 számítógépéről történő eltávolítása befejeződik. 353 | UninstalledAll=A(z) %1 sikeresen el lett távolítva a számítógépről. 354 | UninstalledMost=A(z) %1 eltávolítása befejeződött.%n%nNéhány elemet nem lehetettet eltávolítani. Törölje kézileg. 355 | UninstalledAndNeedsRestart=A(z) %1 eltávolításának befejezéséhez újra kell indítania a számítógépét.%n%nÚjraindítja most? 356 | UninstallDataCorrupted=A(z) "%1" fájl sérült. Nem távolítható el. 357 | 358 | ; *** Uninstallation phase messages 359 | ConfirmDeleteSharedFileTitle=Törli a megosztott fájlt? 360 | ConfirmDeleteSharedFile2=A rendszer azt jelzi, hogy a következő megosztott fájlra már nincs szüksége egyetlen programnak sem. Eltávolítja a megosztott fájlt?%n%nHa más programok még mindig használják a megosztott fájlt, akkor az eltávolítása után lehet, hogy nem fognak megfelelően működni. Ha bizonytalan, válassza a Nemet. A fájl megtartása nem okoz problémát a rendszerben. 361 | SharedFileNameLabel=Fájlnév: 362 | SharedFileLocationLabel=Helye: 363 | WizardUninstalling=Eltávolítás állapota 364 | StatusUninstalling=%1 eltávolítása... 365 | 366 | ; *** Shutdown block reasons 367 | ShutdownBlockReasonInstallingApp=%1 telepítése. 368 | ShutdownBlockReasonUninstallingApp=%1 eltávolítása. 369 | 370 | ; The custom messages below aren't used by Setup itself, but if you make 371 | ; use of them in your scripts, you'll want to translate them. 372 | 373 | [CustomMessages] 374 | 375 | NameAndVersion=%1, verzió: %2 376 | AdditionalIcons=További parancsikonok: 377 | CreateDesktopIcon=&Asztali ikon létrehozása 378 | CreateQuickLaunchIcon=&Gyorsindító parancsikon létrehozása 379 | ProgramOnTheWeb=%1 az interneten 380 | UninstallProgram=Eltávolítás - %1 381 | LaunchProgram=Indítás %1 382 | AssocFileExtension=A(z) %1 &társítása a(z) %2 fájlkiterjesztéssel 383 | AssocingFileExtension=A(z) %1 társítása a(z) %2 fájlkiterjesztéssel... 384 | AutoStartProgramGroupDescription=Indítópult: 385 | AutoStartProgram=%1 automatikus indítása 386 | AddonHostProgramNotFound=A(z) %1 nem található a kiválasztott könyvtárban.%n%nMindenképpen folytatja? 387 | -------------------------------------------------------------------------------- /third-party/inno/Languages/Icelandic.isl: -------------------------------------------------------------------------------- 1 | ; *** Inno Setup version 6.1.0+ Icelandic messages *** 2 | ; 3 | ; Translator: Stefán Örvar Sigmundsson, eMedia Intellect 4 | ; Contact: emi@emi.is 5 | ; Date: 2020-07-25 6 | 7 | [LangOptions] 8 | 9 | LanguageName=<00CD>slenska 10 | LanguageID=$040F 11 | LanguageCodePage=1252 12 | 13 | [Messages] 14 | 15 | ; *** Application titles 16 | SetupAppTitle=Uppsetning 17 | SetupWindowTitle=Uppsetning - %1 18 | UninstallAppTitle=Niðurtaka 19 | UninstallAppFullTitle=%1-niðurtaka 20 | 21 | ; *** Misc. common 22 | InformationTitle=Upplýsingar 23 | ConfirmTitle=Staðfesta 24 | ErrorTitle=Villa 25 | 26 | ; *** SetupLdr messages 27 | SetupLdrStartupMessage=Þetta mun uppsetja %1. Vilt þú halda áfram? 28 | LdrCannotCreateTemp=Ófært um að skapa tímabundna skrá. Uppsetningu hætt 29 | LdrCannotExecTemp=Ófært um að keyra skrá í tímabundna skráasafninu. Uppsetningu hætt 30 | HelpTextNote= 31 | 32 | ; *** Startup error messages 33 | LastErrorMessage=%1.%n%nVilla %2: %3 34 | SetupFileMissing=Skrána %1 vantar úr uppsetningarskráasafninu. Vinsamlega leiðréttu vandamálið eða fáðu nýtt afrita af forritinu. 35 | SetupFileCorrupt=Uppsetningarskrárnar eru spilltar. Vinsamlega fáðu nýtt afrita af forritinu. 36 | SetupFileCorruptOrWrongVer=Uppsetningarskrárnar eru spilltar eða eru ósamrýmanlegar við þessa útgáfu af Uppsetningu. Vinsamlega leiðréttu vandamálið eða fáðu nýtt afrit af forritinu. 37 | InvalidParameter=Ógild færibreyta var afhend á skipanalínunni:%n%n%1 38 | SetupAlreadyRunning=Uppsetning er nú þegar keyrandi. 39 | WindowsVersionNotSupported=Þetta forrit styður ekki útgáfuna af Windows sem tölvan þín er keyrandi. 40 | WindowsServicePackRequired=Þetta forrit krefst Þjónustupakka %2 eða síðari. 41 | NotOnThisPlatform=Þetta forrit mun ekki keyra á %1. 42 | OnlyOnThisPlatform=Þetta forrit verður að keyra á %1. 43 | OnlyOnTheseArchitectures=Þetta forrit er einungis hægt að uppsetja á útgáfur af Windows hannaðar fyrir eftirfarandi gjörvahannanir:%n%n%1 44 | WinVersionTooLowError=Þetta forrit krefst %1-útgáfu %2 eða síðari. 45 | WinVersionTooHighError=Þetta forrit er ekki hægt að uppsetja á %1-útgáfu %2 eða síðari. 46 | AdminPrivilegesRequired=Þú verður að vera innskráð(ur) sem stjórnandi meðan þú uppsetur þetta forrit. 47 | PowerUserPrivilegesRequired=Þú verður að vera innskráð(ur) sem stjórnandi eða sem meðlimur Power Users-hópsins meðan þú uppsetur þetta forrit. 48 | SetupAppRunningError=Uppsetning hefur greint að %1 er eins og er keyrandi.%n%nVinsamlega lokaðu öllum tilvikum þess núna, smelltu síðan á Í lagi til að halda áfram eða Hætta við til að hætta. 49 | UninstallAppRunningError=Niðurtaka hefur greint að %1 er eins og er keyrandi.%n%nVinsamlega lokaðu öllum tilvikum þess núna, smelltu síðan á Í lagi til að halda áfram eða Hætta við til að hætta. 50 | 51 | ; *** Startup questions 52 | PrivilegesRequiredOverrideTitle=Veldu uppsetningarham 53 | PrivilegesRequiredOverrideInstruction=Veldu uppsetningarham 54 | PrivilegesRequiredOverrideText1=%1 er hægt að setja upp fyrir alla notendur (krefst stjórnandaréttinda) eða fyrir þig einungis. 55 | PrivilegesRequiredOverrideText2=%1 er hægt að setja upp fyrir þig einungis eða fyrir alla notendur (krefst stjórnandaréttinda). 56 | PrivilegesRequiredOverrideAllUsers=Uppsetja fyrir &alla notendur 57 | PrivilegesRequiredOverrideAllUsersRecommended=Uppsetja fyrir &alla notendur (ráðlagt) 58 | PrivilegesRequiredOverrideCurrentUser=Uppsetja fyrir &mig einungis 59 | PrivilegesRequiredOverrideCurrentUserRecommended=Uppsetja fyrir &mig einungis (ráðlagt) 60 | 61 | ; *** Misc. errors 62 | ErrorCreatingDir=Uppsetningunni var ófært um að skapa skráasafnið „%1“ 63 | ErrorTooManyFilesInDir=Ófært um að skapa skrá í skráasafninu „%1“ vegna þess það inniheldur of margar skrár 64 | 65 | ; *** Setup common messages 66 | ExitSetupTitle=Hætta í Uppsetningu 67 | ExitSetupMessage=Uppsetningu er ekki lokið. Ef þú hættir núna mun forritið ekki vera uppsett.%n%nÞú getur keyrt Uppsetningu aftur síðar til að ljúka uppsetningunni.%n%nHætta í Uppsetningu? 68 | AboutSetupMenuItem=&Um Uppsetningu… 69 | AboutSetupTitle=Um Uppsetningu 70 | AboutSetupMessage=%1 útgáfa %2%n%3%n%n%1 heimasíðu:%n%4 71 | AboutSetupNote= 72 | TranslatorNote=Stefán Örvar Sigmundsson, eMedia Intellect 73 | 74 | ; *** Buttons 75 | ButtonBack=< &Fyrri 76 | ButtonNext=&Næst > 77 | ButtonInstall=&Uppsetja 78 | ButtonOK=Í lagi 79 | ButtonCancel=Hætta við 80 | ButtonYes=&Já 81 | ButtonYesToAll=Já við &öllu 82 | ButtonNo=&Nei 83 | ButtonNoToAll=&Nei við öllu 84 | ButtonFinish=&Ljúka 85 | ButtonBrowse=&Vafra… 86 | ButtonWizardBrowse=&Vafra… 87 | ButtonNewFolder=&Skapa nýja möppu 88 | 89 | ; *** "Select Language" dialog messages 90 | SelectLanguageTitle=Veldu tungumál Uppsetningar 91 | SelectLanguageLabel=Veldu tungumálið sem nota á við uppsetninguna. 92 | 93 | ; *** Common wizard text 94 | ClickNext=Smelltu á Næst til að halda áfram eða Hætta við til að hætta Uppsetningu. 95 | BeveledLabel= 96 | BrowseDialogTitle=Vafra eftir möppu 97 | BrowseDialogLabel=Veldu möppu í listanum fyrir neðan, smelltu síðan á Í lagi. 98 | NewFolderName=Ný mappa 99 | 100 | ; *** "Welcome" wizard page 101 | WelcomeLabel1=Velkomin(n) í [name]-uppsetningaraðstoðarann 102 | WelcomeLabel2=Þetta mun uppsetja [name/ver] á þína tölvu.%n%nÞað er ráðlagt að þú lokir öllum öðrum hugbúnaði áður en haldið er áfram. 103 | 104 | ; *** "Password" wizard page 105 | WizardPassword=Aðgangsorð 106 | PasswordLabel1=Þessi uppsetning er aðgangsorðsvarin. 107 | PasswordLabel3=Vinsamlega veitu aðgangsorðið, smelltu síðan á Næst til að halda áfram. Aðgangsorð eru hástafanæm. 108 | PasswordEditLabel=&Aðgangsorð: 109 | IncorrectPassword=Aðgangsorðið sem þú innslóst er ekki rétt. Vinsamlega reyndu aftur. 110 | 111 | ; *** "License Agreement" wizard page 112 | WizardLicense=Leyfissamningur 113 | LicenseLabel=Vinsamlega lestu hinar eftirfarandi mikilvægu upplýsingar áður en haldið er áfram. 114 | LicenseLabel3=Vinsamlega lestu eftirfarandi leyfissamning. Þú verður að samþykkja skilmála samningsins áður en haldið er áfram með uppsetninguna. 115 | LicenseAccepted=Ég &samþykki samninginn 116 | LicenseNotAccepted=Ég samþykki &ekki samninginn 117 | 118 | ; *** "Information" wizard pages 119 | WizardInfoBefore=Upplýsingar 120 | InfoBeforeLabel=Vinsamlega lestu hinar eftirfarandi mikilvægu upplýsingar áður en haldið er áfram. 121 | InfoBeforeClickLabel=Þegar þú ert tilbúin(n) til að halda áfram með Uppsetninguna, smelltu á Næst. 122 | WizardInfoAfter=Upplýsingar 123 | InfoAfterLabel=Vinsamlega lestu hinar eftirfarandi mikilvægu upplýsingar áður en haldið er áfram. 124 | InfoAfterClickLabel=Þegar þú ert tilbúin(n) til að halda áfram með Uppsetninguna, smelltu á Næst. 125 | 126 | ; *** "User Information" wizard page 127 | WizardUserInfo=Notandaupplýsingar 128 | UserInfoDesc=Vinsamlega innsláðu upplýsingarnar þínar. 129 | UserInfoName=&Notandanafn: 130 | UserInfoOrg=&Stofnun: 131 | UserInfoSerial=&Raðnúmer: 132 | UserInfoNameRequired=Þú verður að innslá nafn. 133 | 134 | ; *** "Select Destination Location" wizard page 135 | WizardSelectDir=Velja staðsetningu 136 | SelectDirDesc=Hvar ætti [name] að vera uppsettur? 137 | SelectDirLabel3=Uppsetning mun uppsetja [name] í hina eftirfarandi möppu. 138 | SelectDirBrowseLabel=Til að halda áfram, smelltu á Næst. Ef þú vilt velja aðra möppu, smelltu á Vafra. 139 | DiskSpaceGBLabel=Að minnsta kosti [gb] GB af lausu diskplássi er krafist. 140 | DiskSpaceMBLabel=Að minnsta kosti [mb] MB af lausu diskplássi er krafist. 141 | CannotInstallToNetworkDrive=Uppsetning getur ekki uppsett á netdrif. 142 | CannotInstallToUNCPath=Uppsetning getur ekki uppsett á UNC-slóð. 143 | InvalidPath=Þú verður að innslá fulla slóð með drifstaf; til dæmis:%n%nC:\APP%n%neða UNC-slóð samkvæmt sniðinu:%n%n\\server\share 144 | InvalidDrive=Drifið eða UNC-deilingin sem þú valdir er ekki til eða er ekki aðgengileg. Vinsamlega veldu annað. 145 | DiskSpaceWarningTitle=Ekki nóg diskpláss 146 | DiskSpaceWarning=Uppsetning krefst að minnsta kosti %1 KB af lausu plássi til að uppsetja, en hið valda drif hefur einungis %2 KB tiltæk.%n%nVilt þú halda áfram hvort sem er? 147 | DirNameTooLong=Möppunafnið eða slóðin er of löng. 148 | InvalidDirName=Möppunafnið er ekki gilt. 149 | BadDirName32=Möppunöfn geta ekki innihaldið nein af hinum eftirfarandi rittáknum:%n%n%1 150 | DirExistsTitle=Mappa er til 151 | DirExists=Mappan:%n%n%1%n%ner nú þegar til. Vilt þú uppsetja í þá möppu hvort sem er? 152 | DirDoesntExistTitle=Mappa er ekki til 153 | DirDoesntExist=Mappan:%n%n%1%n%ner ekki til. Vilt þú að mappan sé sköpuð? 154 | 155 | ; *** "Select Components" wizard page 156 | WizardSelectComponents=Velja atriði 157 | SelectComponentsDesc=Hvaða atriði ætti að uppsetja? 158 | SelectComponentsLabel2=Veldu atriðin sem þú vilt uppsetja; hreinsaðu atriðin sem þú vilt ekki uppsetja. Smelltu á Næst þegar þú ert tilbúin(n) til að halda áfram. 159 | FullInstallation=Full uppsetning 160 | CompactInstallation=Samanþjöppuð uppsetning 161 | CustomInstallation=Sérsnídd uppsetning 162 | NoUninstallWarningTitle=Atriði eru til 163 | NoUninstallWarning=Uppsetning hefur greint það að eftirfarandi atriði eru nú þegar uppsett á tölvunni þinni:%n%n%1%n%nAð afvelja þessi atriði mun ekki niðurtaka þau.%n%nVilt þú halda áfram hvort sem er? 164 | ComponentSize1=%1 KB 165 | ComponentSize2=%1 MB 166 | ComponentsDiskSpaceGBLabel=Núverandi val krefst að minnsta kosti [gb] GB af diskplássi. 167 | ComponentsDiskSpaceMBLabel=Núverandi val krefst að minnsta kosti [mb] MB af diskplássi. 168 | 169 | ; *** "Select Additional Tasks" wizard page 170 | WizardSelectTasks=Veldu aukaleg verk 171 | SelectTasksDesc=Hvaða aukalegu verk ættu að vera framkvæmd? 172 | SelectTasksLabel2=Veldu hin aukalegu verk sem þú vilt að Uppsetning framkvæmi meðan [name] er uppsettur, ýttu síðan á Næst. 173 | 174 | ; *** "Select Start Menu Folder" wizard page 175 | WizardSelectProgramGroup=Veldu Upphafsvalmyndarmöppu 176 | SelectStartMenuFolderDesc=Hvert ætti Uppsetning að setja skyndivísa forritsins? 177 | SelectStartMenuFolderLabel3=Uppsetning mun skapa skyndivísa forritsins í hina eftirfarandi Upphafsvalmyndarmöppu. 178 | SelectStartMenuFolderBrowseLabel=Til að halda áfram, smelltu á Næst. Ef þú vilt velja aðra möppu, smelltu á Vafra. 179 | MustEnterGroupName=Þú verður að innslá möppunafn. 180 | GroupNameTooLong=Möppunafnið eða slóðin er of löng. 181 | InvalidGroupName=Möppunafnið er ekki gilt. 182 | BadGroupName=Möppunafnið getur ekki innihaldið neitt af hinum eftirfarandi rittáknum:%n%n%1 183 | NoProgramGroupCheck2=&Ekki skapa Upphafsvalmyndarmöppu 184 | 185 | ; *** "Ready to Install" wizard page 186 | WizardReady=Tilbúin til að uppsetja 187 | ReadyLabel1=Uppsetning er núna tilbúin til að hefja uppsetningu [name] á tölvuna þína. 188 | ReadyLabel2a=Smelltu á Uppsetja til að halda áfram uppsetningunni eða smelltu á Til baka ef þú vilt endurskoða eða breyta einhverjum stillingum. 189 | ReadyLabel2b=Smelltu á Uppsetja til að halda áfram uppsetningunni. 190 | ReadyMemoUserInfo=Notandaupplýsingar: 191 | ReadyMemoDir=Staðsetning: 192 | ReadyMemoType=Uppsetningartegund: 193 | ReadyMemoComponents=Valin atriði: 194 | ReadyMemoGroup=Upphafsvalmyndarmappa: 195 | ReadyMemoTasks=Aukaleg verk: 196 | 197 | ; *** TDownloadWizardPage wizard page and DownloadTemporaryFile 198 | DownloadingLabel=Niðurhlaðandi aukalegum skrám… 199 | ButtonStopDownload=&Stöðva niðurhleðslu 200 | StopDownload=Ert þú viss um að þú viljir stöðva niðurhleðsluna? 201 | ErrorDownloadAborted=Niðurhleðslu hætt 202 | ErrorDownloadFailed=Niðurhleðsla mistókst: %1 %2 203 | ErrorDownloadSizeFailed=Mistókst að sækja stærð: %1 %2 204 | ErrorFileHash1=Skráarhakk mistókst: %1 205 | ErrorFileHash2=Ógilt skráarhakk: bjóst við %1, fékk %2 206 | ErrorProgress=Ógild framvinda: %1 of %2 207 | ErrorFileSize=Ógild skráarstærð: bjóst við %1, fékk %2 208 | 209 | ; *** "Preparing to Install" wizard page 210 | WizardPreparing=Undirbúandi uppsetningu 211 | PreparingDesc=Uppsetning er undirbúandi uppsetningu [name] á tölvuna þína. 212 | PreviousInstallNotCompleted=Uppsetningu/Fjarlægingu eftirfarandi forrits var ekki lokið. Þú þarft að endurræsa tölvuna þína til að ljúka þeirri uppsetningu.%n%nEftir endurræsingu tölvunnar þinnar, keyrðu Uppsetningu aftur til að ljúka uppsetningu [name]. 213 | CannotContinue=Uppsetning getur ekki haldið áfram. Vinsamlega smelltu á Hætta við til að hætta. 214 | ApplicationsFound=Eftirfarandi hugbúnaður er notandi skrár sem þurfa að vera uppfærðar af Uppsetningu. Það er ráðlagt að þú leyfir Uppsetningu sjálfvirkt að loka þessum hugbúnaði. 215 | ApplicationsFound2=Eftirfarandi hugbúnaður er notandi skrár sem þurfa að vera uppfærðar af Uppsetningu. Það er ráðlagt að þú leyfir Uppsetningu sjálfvirkt að loka þessum hugbúnaði. Eftir að uppsetningunni lýkur mun Uppsetning reyna að endurræsa hugbúnaðinn. 216 | CloseApplications=&Sjálfvirkt loka hugbúnaðinum 217 | DontCloseApplications=&Ekki loka hugbúnaðinum 218 | ErrorCloseApplications=Uppsetningu var ófært um að sjálfvirkt loka öllum hugbúnaði. Það er ráðlagt að þú lokir öllum hugbúnaði notandi skrár sem þurfa að vera uppfærðar af Uppsetningu áður en haldið er áfram. 219 | PrepareToInstallNeedsRestart=Þú verður að endurræsa tölvuna þína. Eftir að hafa endurræst tölvuna þína, keyrðu Uppsetningu aftur til að ljúka uppsetningu [name].%n%nVilt þú endurræsa núna? 220 | 221 | ; *** "Installing" wizard page 222 | WizardInstalling=Uppsetjandi 223 | InstallingLabel=Vinsamlega bíddu meðan Uppsetning uppsetur [name] á tölvuna þína. 224 | 225 | ; *** "Setup Completed" wizard page 226 | FinishedHeadingLabel=Ljúkandi [name]-uppsetningaraðstoðaranum 227 | FinishedLabelNoIcons=Uppsetning hefur lokið uppsetningu [name] á tölvuna þína. 228 | FinishedLabel=Uppsetning hefur lokið uppsetningu [name] á þinni tölvu. Hugbúnaðurinn getur verið ræstur með því að velja hina uppsettu skyndivísa. 229 | ClickFinish=Smelltu á Ljúka til að hætta í Uppsetningu. 230 | FinishedRestartLabel=Til að ljúka uppsetningu [name] þarft Uppsetning að endurræsa tölvuna þína. Vilt þú endurræsa núna? 231 | FinishedRestartMessage=Til að ljúka uppsetningu [name] þarf Uppsetning að endurræsa tölvuna þína.%n%nVilt þú endurræsa núna? 232 | ShowReadmeCheck=Já, ég vil skoða README-skrána 233 | YesRadio=&Já, endurræsa tölvuna núna 234 | NoRadio=&Nei, ég mun endurræsa tölvuna síðar 235 | RunEntryExec=Keyra %1 236 | RunEntryShellExec=Skoða %1 237 | 238 | ; *** "Setup Needs the Next Disk" stuff 239 | ChangeDiskTitle=Uppsetning þarfnast næsta disks 240 | SelectDiskLabel2=Vinsamlega settu inn disk %1 og smelltu á Í lagi.%n%nEf skrárnar á þessum disk er hægt að finna í annarri möppu en þeirri sem birt er fyrir neðan, innsláðu réttu slóðina og smelltu á Vafra. 241 | PathLabel=&Slóð: 242 | FileNotInDir2=Skrána „%1“ var ekki hægt að staðsetja í „%2“. Vinsamlega settu inn rétta diskinn eða veldu aðra möppu. 243 | SelectDirectoryLabel=Vinsamlega tilgreindu staðsetningu næsta disks. 244 | 245 | ; *** Installation phase messages 246 | SetupAborted=Uppsetningu var ekki lokið.%n%nVinsamlega leiðréttu vandamálið og keyrðu Uppsetningu aftur. 247 | AbortRetryIgnoreSelectAction=Velja aðgerð 248 | AbortRetryIgnoreRetry=&Reyna aftur 249 | AbortRetryIgnoreIgnore=&Hunsa villuna og halda áfram 250 | AbortRetryIgnoreCancel=Hætta við uppsetningu 251 | 252 | ; *** Installation status messages 253 | StatusClosingApplications=Lokandi hugbúnaði… 254 | StatusCreateDirs=Skapandi skráasöfn… 255 | StatusExtractFiles=Útdragandi skrár… 256 | StatusCreateIcons=Skapandi skyndivísa… 257 | StatusCreateIniEntries=Skapandi INI-færslur… 258 | StatusCreateRegistryEntries=Skapandi Windows Registry-færslur… 259 | StatusRegisterFiles=Skrásetjandi skrár… 260 | StatusSavingUninstall=Vistandi niðurtekningarupplýsingar… 261 | StatusRunProgram=Ljúkandi uppsetningu… 262 | StatusRestartingApplications=Endurræsandi hugbúnað… 263 | StatusRollback=Rúllandi aftur breytingum… 264 | 265 | ; *** Misc. errors 266 | ErrorInternal2=Innri villa: %1 267 | ErrorFunctionFailedNoCode=%1 mistókst 268 | ErrorFunctionFailed=%1 mistókst; kóði %2 269 | ErrorFunctionFailedWithMessage=%1 mistókst; kóði %2.%n%3 270 | ErrorExecutingProgram=Ófært um að keyra skrá:%n%1 271 | 272 | ; *** Registry errors 273 | ErrorRegOpenKey=Villa við opnun Windows Registry-lykils:%n%1\%2 274 | ErrorRegCreateKey=Villa við sköpun Windows Registry-lykils:%n%1\%2 275 | ErrorRegWriteKey=Villa við ritun í Windows Registry-lykil:%n%1\%2 276 | 277 | ; *** INI errors 278 | ErrorIniEntry=Villa við sköpun INI-færslu í skrána „%1“. 279 | 280 | ; *** File copying errors 281 | FileAbortRetryIgnoreSkipNotRecommended=&Sleppa þessari skrá (ekki ráðlagt) 282 | FileAbortRetryIgnoreIgnoreNotRecommended=&Hunsa villuna og halda áfram (ekki ráðlagt) 283 | SourceIsCorrupted=Upprunaskráin er spillt 284 | SourceDoesntExist=Upprunaskráin „%1“ er ekki til 285 | ExistingFileReadOnly2=Hina gildandi skrá var ekki hægt að yfirrita því hún er merkt sem lesa-einungis. 286 | ExistingFileReadOnlyRetry=&Fjarlægja lesa-einungis eigindi og reyna aftur 287 | ExistingFileReadOnlyKeepExisting=&Halda gildandi skrá 288 | ErrorReadingExistingDest=Villa kom upp meðan reynt var að lesa gildandi skrána: 289 | FileExistsSelectAction=Velja aðgerð 290 | FileExists2=Skráin er nú þegar til. 291 | FileExistsOverwriteExisting=&Yfirrita hina gildandi skrá 292 | FileExistsKeepExisting=&Halda hinni gildandi skrá 293 | FileExistsOverwriteOrKeepAll=&Gera þetta við næstu ósamstæður 294 | ExistingFileNewerSelectAction=Velja aðgerð 295 | ExistingFileNewer2=Hin gildandi skrá er nýrri en sú sem Uppsetning er að reyna að uppsetja. 296 | ExistingFileNewerOverwriteExisting=&Yfirrita hina gildandi skrá 297 | ExistingFileNewerKeepExisting=&Halda hinni gildandi skrá (ráðlagt) 298 | ExistingFileNewerOverwriteOrKeepAll=&Gera þetta við næstu ósamstæður 299 | ErrorChangingAttr=Villa kom upp meðan reynt var að breyta eigindum gildandi skráarinnar: 300 | ErrorCreatingTemp=Villa kom upp meðan reynt var að skapa skrá í staðsetningarskráasafninu: 301 | ErrorReadingSource=Villa kom upp meðan reynt var að lesa upprunaskrána: 302 | ErrorCopying=Villa kom upp meðan reynt var að afrita skrána: 303 | ErrorReplacingExistingFile=Villa kom upp meðan reynt var að yfirrita gildandi skrána: 304 | ErrorRestartReplace=RestartReplace mistókst: 305 | ErrorRenamingTemp=Villa kom upp meðan reynt var að endurnefna skrá í staðsetningarskráasafninu: 306 | ErrorRegisterServer=Ófært um að skrá DLL/OCX: %1 307 | ErrorRegSvr32Failed=RegSvr32 mistókst með skilakóðann %1 308 | ErrorRegisterTypeLib=Ófært um að skrá tegundasafnið: $1 309 | 310 | ; *** Uninstall display name markings 311 | UninstallDisplayNameMark=%1 (%2) 312 | UninstallDisplayNameMarks=%1 (%2, %3) 313 | UninstallDisplayNameMark32Bit=32-bita 314 | UninstallDisplayNameMark64Bit=64-bita 315 | UninstallDisplayNameMarkAllUsers=Allir notendur 316 | UninstallDisplayNameMarkCurrentUser=Núverandi notandi 317 | 318 | ; *** Post-installation errors 319 | ErrorOpeningReadme=Villa kom upp meðan reynt var að opna README-skrána. 320 | ErrorRestartingComputer=Uppsetningu tókst ekki að endurræsa tölvuna. Vinsamlega gerðu þetta handvirkt. 321 | 322 | ; *** Uninstaller messages 323 | UninstallNotFound=Skráin „%1“ er ekki til. Getur ekki niðurtekið. 324 | UninstallOpenError=Skrána „%1“ var ekki hægt að opna. Getur ekki niðurtekið 325 | UninstallUnsupportedVer=Niðurtökuatburðaskráin „%1“ er á sniði sem er ekki þekkt af þessari útgáfu af niðurtakaranum. Getur ekki niðurtekið 326 | UninstallUnknownEntry=Óþekkt færsla (%1) var fundin í niðurtökuatburðaskránni 327 | ConfirmUninstall=Ert þú viss um að þú viljir algjörlega fjarlægja %1 og öll atriði þess? 328 | UninstallOnlyOnWin64=Þessa uppsetningu er einungis hægt að niðurtaka á 64-bita Windows. 329 | OnlyAdminCanUninstall=Þessi uppsetning getur einungis verið niðurtekin af notanda með stjórnandaréttindi. 330 | UninstallStatusLabel=Vinsamlega bíddu meðan %1 er fjarlægt úr tölvunni þinni. 331 | UninstalledAll=%1 var færsællega fjarlægt af tölvunni þinni. 332 | UninstalledMost=%1-niðurtöku lokið.%n%nSuma liði var ekki hægt að fjarlægja. Þá er hægt að fjarlægja handvirkt. 333 | UninstalledAndNeedsRestart=Til að ljúka niðurtöku %1 þarf að endurræsa tölvuna þína.%n%nVilt þú endurræsa núna? 334 | UninstallDataCorrupted=„%1“-skráin er spillt. Getur ekki niðurtekið 335 | 336 | ; *** Uninstallation phase messages 337 | ConfirmDeleteSharedFileTitle=Fjarlægja deilda skrá? 338 | ConfirmDeleteSharedFile2=Kerfið gefur til kynna að hin eftirfarandi deilda skrá er ekki lengur í notkun hjá neinu forriti. Vilt þú að Niðurtakari fjarlægi þessa deildu skrá?%n%nEf einhver forrit eru enn notandi þessa skrá og hún er fjarlægð, kann að vera að þau forrit munu ekki virka almennilega. Ef þú ert óviss, veldu Nei. Að skilja skrána eftir á kerfinu þínu mun ekki valda skaða. 339 | SharedFileNameLabel=Skráarnafn: 340 | SharedFileLocationLabel=Staðsetning: 341 | WizardUninstalling=Niðurtökustaða 342 | StatusUninstalling=Niðurtakandi %1… 343 | 344 | ; *** Shutdown block reasons 345 | ShutdownBlockReasonInstallingApp=Uppsetjandi %1. 346 | ShutdownBlockReasonUninstallingApp=Niðurtakandi %1. 347 | 348 | [CustomMessages] 349 | 350 | NameAndVersion=%1 útgáfa %2 351 | AdditionalIcons=Aukalegir skyndivísir: 352 | CreateDesktopIcon=Skapa &skjáborðsskyndivísi 353 | CreateQuickLaunchIcon=Skapa &Skyndiræsitáknmynd 354 | ProgramOnTheWeb=%1 á Vefnum 355 | UninstallProgram=Niðurtaka %1 356 | LaunchProgram=Ræsa %1 357 | AssocFileExtension=&Tengja %1 við %2-skráarframlenginguna 358 | AssocingFileExtension=&Tengjandi %1 við %2-skráarframlenginguna… 359 | AutoStartProgramGroupDescription=Ræsing: 360 | AutoStartProgram=Sjálfvikt ræsa %1 361 | AddonHostProgramNotFound=%1 gat ekki staðsett möppuna sem þú valdir.%n%nVilt þú halda áfram hvort sem er? -------------------------------------------------------------------------------- /third-party/inno/Languages/Italian.isl: -------------------------------------------------------------------------------- 1 | ; bovirus@gmail.com 2 | ; *** Inno Setup version 6.1.0+ Italian messages *** 3 | ; 4 | ; To download user-contributed translations of this file, go to: 5 | ; https://jrsoftware.org/files/istrans/ 6 | ; 7 | ; Note: When translating this text, do not add periods (.) to the end of 8 | ; messages that didn't have them already, because on those messages Inno 9 | ; Setup adds the periods automatically (appending a period would result in 10 | ; two periods being displayed). 11 | ; 12 | ; Italian.isl - Last Update: 25.07.2020 by bovirus (bovirus@gmail.com) 13 | ; 14 | ; Translator name: bovirus 15 | ; Translator e-mail: bovirus@gmail.com 16 | ; Based on previous translations of Rinaldo M. aka Whiteshark (based on ale5000 5.1.11+ translation) 17 | ; 18 | [LangOptions] 19 | ; The following three entries are very important. Be sure to read and 20 | ; understand the '[LangOptions] section' topic in the help file. 21 | LanguageName=Italiano 22 | LanguageID=$0410 23 | LanguageCodePage=1252 24 | ; If the language you are translating to requires special font faces or 25 | ; sizes, uncomment any of the following entries and change them accordingly. 26 | ;DialogFontName= 27 | ;DialogFontSize=8 28 | ;WelcomeFontName=Verdana 29 | ;WelcomeFontSize=12 30 | ;TitleFontName=Arial 31 | ;TitleFontSize=29 32 | ;CopyrightFontName=Arial 33 | ;CopyrightFontSize=8 34 | 35 | [Messages] 36 | 37 | ; *** Application titles 38 | SetupAppTitle=Installazione 39 | SetupWindowTitle=Installazione di %1 40 | UninstallAppTitle=Disinstallazione 41 | UninstallAppFullTitle=Disinstallazione di %1 42 | 43 | ; *** Misc. common 44 | InformationTitle=Informazioni 45 | ConfirmTitle=Conferma 46 | ErrorTitle=Errore 47 | 48 | ; *** SetupLdr messages 49 | SetupLdrStartupMessage=Questa è l'installazione di %1.%n%nVuoi continuare? 50 | LdrCannotCreateTemp=Impossibile creare un file temporaneo.%n%nInstallazione annullata. 51 | LdrCannotExecTemp=Impossibile eseguire un file nella cartella temporanea.%n%nInstallazione annullata. 52 | 53 | ; *** Startup error messages 54 | LastErrorMessage=%1.%n%nErrore %2: %3 55 | SetupFileMissing=File %1 non trovato nella cartella di installazione.%n%nCorreggi il problema o richiedi una nuova copia del programma. 56 | SetupFileCorrupt=I file di installazione sono danneggiati.%n%nRichiedi una nuova copia del programma. 57 | SetupFileCorruptOrWrongVer=I file di installazione sono danneggiati, o sono incompatibili con questa versione del programma di installazione.%n%nCorreggi il problema o richiedi una nuova copia del programma. 58 | InvalidParameter=È stato inserito nella riga di comando un parametro non valido:%n%n%1 59 | SetupAlreadyRunning=Il processo di installazione è già in funzione. 60 | WindowsVersionNotSupported=Questo programma non supporta la versione di Windows installata nel computer. 61 | WindowsServicePackRequired=Questo programma richiede %1 Service Pack %2 o successivo. 62 | NotOnThisPlatform=Questo programma non è compatibile con %1. 63 | OnlyOnThisPlatform=Questo programma richiede %1. 64 | OnlyOnTheseArchitectures=Questo programma può essere installato solo su versioni di Windows progettate per le seguenti architetture della CPU:%n%n%1 65 | WinVersionTooLowError=Questo programma richiede %1 versione %2 o successiva. 66 | WinVersionTooHighError=Questo programma non può essere installato su %1 versione %2 o successiva. 67 | AdminPrivilegesRequired=Per installare questo programma sono richiesti privilegi di amministratore. 68 | PowerUserPrivilegesRequired=Per poter installare questo programma sono richiesti i privilegi di amministratore o di Power Users. 69 | SetupAppRunningError=%1 è attualmente in esecuzione.%n%nChiudi adesso tutte le istanze del programma e poi seleziona "OK", o seleziona "Annulla" per uscire. 70 | UninstallAppRunningError=%1 è attualmente in esecuzione.%n%nChiudi adesso tutte le istanze del programma e poi seleziona "OK", o seleziona "Annulla" per uscire. 71 | 72 | ; *** Startup questions 73 | PrivilegesRequiredOverrideTitle=Seleziona modo installazione 74 | PrivilegesRequiredOverrideInstruction=Seleziona modo installazione 75 | PrivilegesRequiredOverrideText1=%1 può essere installato per tutti gli utenti (richiede privilegi di amministratore), o solo per l'utente attuale. 76 | PrivilegesRequiredOverrideText2=%1 può essere installato solo per l'utente attuale, o per tutti gli utenti (richiede privilegi di amministratore). 77 | PrivilegesRequiredOverrideAllUsers=Inst&alla per tutti gli utenti 78 | PrivilegesRequiredOverrideAllUsersRecommended=Inst&alla per tutti gli utenti (suggerito) 79 | PrivilegesRequiredOverrideCurrentUser=Installa solo per l'&utente attuale 80 | PrivilegesRequiredOverrideCurrentUserRecommended=Installa solo per l'&utente attuale (suggerito) 81 | 82 | ; *** Misc. errors 83 | ErrorCreatingDir=Impossibile creare la cartella "%1" 84 | ErrorTooManyFilesInDir=Impossibile creare i file nella cartella "%1" perché contiene troppi file. 85 | 86 | ; *** Setup common messages 87 | ExitSetupTitle=Uscita dall'installazione 88 | ExitSetupMessage=L'installazione non è completa.%n%nUscendo dall'installazione in questo momento, il programma non sarà installato.%n%nÈ possibile eseguire l'installazione in un secondo tempo.%n%nVuoi uscire dall'installazione? 89 | AboutSetupMenuItem=&Informazioni sull'installazione... 90 | AboutSetupTitle=Informazioni sull'installazione 91 | AboutSetupMessage=%1 versione %2%n%3%n%n%1 sito web:%n%4 92 | AboutSetupNote= 93 | TranslatorNote=Traduzione italiana a cura di Rinaldo M. aka Whiteshark e bovirus (v. 11.09.2018) 94 | 95 | ; *** Buttons 96 | ButtonBack=< &Indietro 97 | ButtonNext=&Avanti > 98 | ButtonInstall=Inst&alla 99 | ButtonOK=OK 100 | ButtonCancel=Annulla 101 | ButtonYes=&Si 102 | ButtonYesToAll=Sì a &tutto 103 | ButtonNo=&No 104 | ButtonNoToAll=N&o a tutto 105 | ButtonFinish=&Fine 106 | ButtonBrowse=&Sfoglia... 107 | ButtonWizardBrowse=S&foglia... 108 | ButtonNewFolder=&Crea nuova cartella 109 | 110 | ; *** "Select Language" dialog messages 111 | SelectLanguageTitle=Seleziona la lingua dell'installazione 112 | SelectLanguageLabel=Seleziona la lingua da usare durante l'installazione. 113 | 114 | ; *** Common wizard text 115 | ClickNext=Seleziona "Avanti" per continuare, o "Annulla" per uscire. 116 | BeveledLabel= 117 | BrowseDialogTitle=Sfoglia cartelle 118 | BrowseDialogLabel=Seleziona una cartella nell'elenco, e quindi seleziona "OK". 119 | NewFolderName=Nuova cartella 120 | 121 | ; *** "Welcome" wizard page 122 | WelcomeLabel1=Installazione di [name] 123 | WelcomeLabel2=[name/ver] sarà installato sul computer.%n%nPrima di procedere chiudi tutte le applicazioni attive. 124 | 125 | ; *** "Password" wizard page 126 | WizardPassword=Password 127 | PasswordLabel1=Questa installazione è protetta da password. 128 | PasswordLabel3=Inserisci la password, quindi per continuare seleziona "Avanti".%nLe password sono sensibili alle maiuscole/minuscole. 129 | PasswordEditLabel=&Password: 130 | IncorrectPassword=La password inserita non è corretta. Riprova. 131 | 132 | ; *** "License Agreement" wizard page 133 | WizardLicense=Contratto di licenza 134 | LicenseLabel=Prima di procedere leggi con attenzione le informazioni che seguono. 135 | LicenseLabel3=Leggi il seguente contratto di licenza.%nPer procedere con l'installazione è necessario accettare tutti i termini del contratto. 136 | LicenseAccepted=Accetto i termini del &contratto di licenza 137 | LicenseNotAccepted=&Non accetto i termini del contratto di licenza 138 | 139 | ; *** "Information" wizard pages 140 | WizardInfoBefore=Informazioni 141 | InfoBeforeLabel=Prima di procedere leggi le importanti informazioni che seguono. 142 | InfoBeforeClickLabel=Quando sei pronto per proseguire, seleziona "Avanti". 143 | WizardInfoAfter=Informazioni 144 | InfoAfterLabel=Prima di procedere leggi le importanti informazioni che seguono. 145 | InfoAfterClickLabel=Quando sei pronto per proseguire, seleziona "Avanti". 146 | 147 | ; *** "User Information" wizard page 148 | WizardUserInfo=Informazioni utente 149 | UserInfoDesc=Inserisci le seguenti informazioni. 150 | UserInfoName=&Nome: 151 | UserInfoOrg=&Società: 152 | UserInfoSerial=&Numero di serie: 153 | UserInfoNameRequired=È necessario inserire un nome. 154 | 155 | ; *** "Select Destination Location" wizard page 156 | WizardSelectDir=Selezione cartella di installazione 157 | SelectDirDesc=Dove vuoi installare [name]? 158 | SelectDirLabel3=[name] sarà installato nella seguente cartella. 159 | SelectDirBrowseLabel=Per continuare seleziona "Avanti".%nPer scegliere un'altra cartella seleziona "Sfoglia". 160 | DiskSpaceGBLabel=Sono richiesti almeno [gb] GB di spazio libero nel disco. 161 | DiskSpaceMBLabel=Sono richiesti almeno [mb] MB di spazio libero nel disco. 162 | CannotInstallToNetworkDrive=Non è possibile effettuare l'installazione in un disco in rete. 163 | CannotInstallToUNCPath=Non è possibile effettuare l'installazione in un percorso UNC. 164 | InvalidPath=Va inserito un percorso completo di lettera di unità; per esempio:%n%nC:\APP%n%no un percorso di rete nella forma:%n%n\\server\condivisione 165 | InvalidDrive=L'unità o il percorso di rete selezionato non esiste o non è accessibile.%n%nSelezionane un altro. 166 | DiskSpaceWarningTitle=Spazio su disco insufficiente 167 | DiskSpaceWarning=L'installazione richiede per eseguire l'installazione almeno %1 KB di spazio libero, ma l'unità selezionata ha solo %2 KB disponibili.%n%nVuoi continuare comunque? 168 | DirNameTooLong=Il nome della cartella o il percorso sono troppo lunghi. 169 | InvalidDirName=Il nome della cartella non è valido. 170 | BadDirName32=Il nome della cartella non può includere nessuno dei seguenti caratteri:%n%n%1 171 | DirExistsTitle=Cartella già esistente 172 | DirExists=La cartella%n%n %1%n%nesiste già.%n%nVuoi comunque installare l'applicazione in questa cartella? 173 | DirDoesntExistTitle=Cartella inesistente 174 | DirDoesntExist=La cartella%n%n %1%n%nnon esiste. Vuoi creare la cartella? 175 | 176 | ; *** "Select Components" wizard page 177 | WizardSelectComponents=Selezione componenti 178 | SelectComponentsDesc=Quali componenti vuoi installare? 179 | SelectComponentsLabel2=Seleziona i componenti da installare, deseleziona quelli che non vuoi installare.%nPer continuare seleziona "Avanti". 180 | FullInstallation=Installazione completa 181 | ; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) 182 | CompactInstallation=Installazione compatta 183 | CustomInstallation=Installazione personalizzata 184 | NoUninstallWarningTitle=Componente esistente 185 | NoUninstallWarning=I seguenti componenti sono già installati nel computer:%n%n%1%n%nDeselezionando questi componenti essi non verranno rimossi.%n%nVuoi continuare comunque? 186 | ComponentSize1=%1 KB 187 | ComponentSize2=%1 MB 188 | ComponentsDiskSpaceGBLabel=La selezione attuale richiede almeno [gb] GB di spazio nel disco. 189 | ComponentsDiskSpaceMBLabel=La selezione attuale richiede almeno [mb] MB di spazio nel disco. 190 | 191 | ; *** "Select Additional Tasks" wizard page 192 | WizardSelectTasks=Selezione processi aggiuntivi 193 | SelectTasksDesc=Quali processi aggiuntivi vuoi eseguire? 194 | SelectTasksLabel2=Seleziona i processi aggiuntivi che verranno eseguiti durante l'installazione di [name], quindi seleziona "Avanti". 195 | 196 | ; *** "Select Start Menu Folder" wizard page 197 | WizardSelectProgramGroup=Selezione della cartella nel menu Avvio/Start 198 | SelectStartMenuFolderDesc=Dove vuoi inserire i collegamenti al programma? 199 | SelectStartMenuFolderLabel3=Verranno creati i collegamenti al programma nella seguente cartella del menu Avvio/Start. 200 | SelectStartMenuFolderBrowseLabel=Per continuare, seleziona "Avanti".%nPer selezionare un'altra cartella, seleziona "Sfoglia". 201 | MustEnterGroupName=Devi inserire il nome della cartella. 202 | GroupNameTooLong=Il nome della cartella o il percorso sono troppo lunghi. 203 | InvalidGroupName=Il nome della cartella non è valido. 204 | BadGroupName=Il nome della cartella non può includere nessuno dei seguenti caratteri:%n%n%1 205 | NoProgramGroupCheck2=&Non creare una cartella nel menu Avvio/Start 206 | 207 | ; *** "Ready to Install" wizard page 208 | WizardReady=Pronto per l'installazione 209 | ReadyLabel1=Il programma è pronto per iniziare l'installazione di [name] nel computer. 210 | ReadyLabel2a=Seleziona "Installa" per continuare con l'installazione, o "Indietro" per rivedere o modificare le impostazioni. 211 | ReadyLabel2b=Per procedere con l'installazione seleziona "Installa". 212 | ReadyMemoUserInfo=Informazioni utente: 213 | ReadyMemoDir=Cartella di installazione: 214 | ReadyMemoType=Tipo di installazione: 215 | ReadyMemoComponents=Componenti selezionati: 216 | ReadyMemoGroup=Cartella del menu Avvio/Start: 217 | ReadyMemoTasks=Processi aggiuntivi: 218 | 219 | ; *** TDownloadWizardPage wizard page and DownloadTemporaryFile 220 | DownloadingLabel=Download file aggiuntivi... 221 | ButtonStopDownload=&Stop download 222 | StopDownload=Sei sicuro di voler interrompere il download? 223 | ErrorDownloadAborted=Download annullato 224 | ErrorDownloadFailed=Download fallito: %1 %2 225 | ErrorDownloadSizeFailed=Rilevamento dimensione fallito: %1 %2 226 | ErrorFileHash1=Errore hash file: %1 227 | ErrorFileHash2=Hash file non valido: atteso %1, trovato %2 228 | ErrorProgress=Progresso non valido: %1 di %2 229 | ErrorFileSize=Dimensione file non valida: attesa %1, trovata %2 230 | 231 | ; *** "Preparing to Install" wizard page 232 | WizardPreparing=Preparazione all'installazione 233 | PreparingDesc=Preparazione all'installazione di [name] nel computer. 234 | PreviousInstallNotCompleted=L'installazione/rimozione precedente del programma non è stata completata.%n%nÈ necessario riavviare il sistema per completare l'installazione.%n%nDopo il riavvio del sistema esegui di nuovo l'installazione di [name]. 235 | CannotContinue=L'installazione non può continuare. Seleziona "Annulla" per uscire. 236 | ApplicationsFound=Le seguenti applicazioni stanno usando file che devono essere aggiornati dall'installazione.%n%nTi consigliamo di permettere al processo di chiudere automaticamente queste applicazioni. 237 | ApplicationsFound2=Le seguenti applicazioni stanno usando file che devono essere aggiornati dall'installazione.%n%nTi consigliamo di permettere al processo di chiudere automaticamente queste applicazioni.%n%nAl completamento dell'installazione, il processo tenterà di riavviare le applicazioni. 238 | CloseApplications=Chiudi &automaticamente le applicazioni 239 | DontCloseApplications=&Non chiudere le applicazioni 240 | ErrorCloseApplications=L'installazione non è riuscita a chiudere automaticamente tutte le applicazioni.%n%nPrima di proseguire ti raccomandiamo di chiudere tutte le applicazioni che usano file che devono essere aggiornati durante l'installazione. 241 | PrepareToInstallNeedsRestart=Il programma di installazione deve riavviare il computer.%nDopo aver riavviato il computer esegui di nuovo il programma di installazione per completare l'installazione di [name].%n%nVuoi riavviare il computer ora? 242 | 243 | ; *** "Installing" wizard page 244 | WizardInstalling=Installazione in corso 245 | InstallingLabel=Attendi il completamento dell'installazione di [name] nel computer. 246 | 247 | ; *** "Setup Completed" wizard page 248 | FinishedHeadingLabel=Installazione di [name] completata 249 | FinishedLabelNoIcons=Installazione di [name] completata. 250 | FinishedLabel=Installazione di [name] completata.%n%nL'applicazione può essere eseguita selezionando le relative icone. 251 | ClickFinish=Seleziona "Fine" per uscire dall'installazione. 252 | FinishedRestartLabel=Per completare l'installazione di [name], è necessario riavviare il sistema.%n%nVuoi riavviare adesso? 253 | FinishedRestartMessage=Per completare l'installazione di [name], è necessario riavviare il sistema.%n%nVuoi riavviare adesso? 254 | ShowReadmeCheck=Si, visualizza ora il file LEGGIMI 255 | YesRadio=&Si, riavvia il sistema adesso 256 | NoRadio=&No, riavvia il sistema più tardi 257 | ; used for example as 'Run MyProg.exe' 258 | RunEntryExec=Esegui %1 259 | ; used for example as 'View Readme.txt' 260 | RunEntryShellExec=Visualizza %1 261 | 262 | ; *** "Setup Needs the Next Disk" stuff 263 | ChangeDiskTitle=L'installazione necessita del disco successivo 264 | SelectDiskLabel2=Inserisci il disco %1 e seleziona "OK".%n%nSe i file di questo disco si trovano in una cartella diversa da quella visualizzata sotto, inserisci il percorso corretto o seleziona "Sfoglia". 265 | PathLabel=&Percorso: 266 | FileNotInDir2=Il file "%1" non è stato trovato in "%2".%n%nInserisci il disco corretto o seleziona un'altra cartella. 267 | SelectDirectoryLabel=Specifica il percorso del prossimo disco. 268 | 269 | ; *** Installation phase messages 270 | SetupAborted=L'installazione non è stata completata.%n%nCorreggi il problema e riesegui nuovamente l'installazione. 271 | AbortRetryIgnoreSelectAction=Seleziona azione 272 | AbortRetryIgnoreRetry=&Riprova 273 | AbortRetryIgnoreIgnore=&Ignora questo errore e continua 274 | AbortRetryIgnoreCancel=Annulla installazione 275 | 276 | ; *** Installation status messages 277 | StatusClosingApplications=Chiusura applicazioni... 278 | StatusCreateDirs=Creazione cartelle... 279 | StatusExtractFiles=Estrazione file... 280 | StatusCreateIcons=Creazione icone... 281 | StatusCreateIniEntries=Creazione voci nei file INI... 282 | StatusCreateRegistryEntries=Creazione voci di registro... 283 | StatusRegisterFiles=Registrazione file... 284 | StatusSavingUninstall=Salvataggio delle informazioni di disinstallazione... 285 | StatusRunProgram=Termine dell'installazione... 286 | StatusRestartingApplications=Riavvio applicazioni... 287 | StatusRollback=Recupero delle modifiche... 288 | 289 | ; *** Misc. errors 290 | ErrorInternal2=Errore interno %1 291 | ErrorFunctionFailedNoCode=%1 fallito 292 | ErrorFunctionFailed=%1 fallito; codice %2 293 | ErrorFunctionFailedWithMessage=%1 fallito; codice %2.%n%3 294 | ErrorExecutingProgram=Impossibile eseguire il file:%n%1 295 | 296 | ; *** Registry errors 297 | ErrorRegOpenKey=Errore di apertura della chiave di registro:%n%1\%2 298 | ErrorRegCreateKey=Errore di creazione della chiave di registro:%n%1\%2 299 | ErrorRegWriteKey=Errore di scrittura della chiave di registro:%n%1\%2 300 | 301 | ; *** INI errors 302 | ErrorIniEntry=Errore nella creazione delle voci INI nel file "%1". 303 | 304 | ; *** File copying errors 305 | FileAbortRetryIgnoreSkipNotRecommended=&Salta questo file (non suggerito) 306 | FileAbortRetryIgnoreIgnoreNotRecommended=&Ignora questo errore e continua (non suggerito) 307 | SourceIsCorrupted=Il file sorgente è danneggiato 308 | SourceDoesntExist=Il file sorgente "%1" non esiste 309 | ExistingFileReadOnly2=Il file esistente non può essere sostituito in quanto segnato come in sola lettura. 310 | ExistingFileReadOnlyRetry=&Rimuovi attributo di sola lettura e riprova 311 | ExistingFileReadOnlyKeepExisting=&Mantieni il file esistente 312 | ErrorReadingExistingDest=Si è verificato un errore durante la lettura del file esistente: 313 | FileExistsSelectAction=Seleziona azione 314 | FileExists2=Il file esiste già. 315 | FileExistsOverwriteExisting=S&ovrascrivi il file esistente 316 | FileExistsKeepExisting=&Mantieni il file esistente 317 | FileExistsOverwriteOrKeepAll=&Applica questa azione per i prossimi conflitti 318 | ExistingFileNewerSelectAction=Seleziona azione 319 | ExistingFileNewer2=Il file esistente è più recente del file che si sta cercando di installare. 320 | ExistingFileNewerOverwriteExisting=S&ovrascrivi il file esistente 321 | ExistingFileNewerKeepExisting=&Mantieni il file esistente (suggerito) 322 | ExistingFileNewerOverwriteOrKeepAll=&Applica questa azione per i prossimi conflitti 323 | ErrorChangingAttr=Si è verificato un errore durante il tentativo di modifica dell'attributo del file esistente: 324 | ErrorCreatingTemp=Si è verificato un errore durante la creazione di un file nella cartella di installazione: 325 | ErrorReadingSource=Si è verificato un errore durante la lettura del file sorgente: 326 | ErrorCopying=Si è verificato un errore durante la copia di un file: 327 | ErrorReplacingExistingFile=Si è verificato un errore durante la sovrascrittura del file esistente: 328 | ErrorRestartReplace=Errore durante riavvio o sostituzione: 329 | ErrorRenamingTemp=Si è verificato un errore durante il tentativo di rinominare un file nella cartella di installazione: 330 | ErrorRegisterServer=Impossibile registrare la DLL/OCX: %1 331 | ErrorRegSvr32Failed=RegSvr32 è fallito con codice di uscita %1 332 | ErrorRegisterTypeLib=Impossibile registrare la libreria di tipo: %1 333 | 334 | ; *** Uninstall display name markings 335 | ; used for example as 'My Program (32-bit)' 336 | UninstallDisplayNameMark=%1 (%2) 337 | ; used for example as 'My Program (32-bit, All users)' 338 | UninstallDisplayNameMarks=%1 (%2, %3) 339 | UninstallDisplayNameMark32Bit=32bit 340 | UninstallDisplayNameMark64Bit=64bit 341 | UninstallDisplayNameMarkAllUsers=Tutti gli utenti 342 | UninstallDisplayNameMarkCurrentUser=Utente attuale 343 | 344 | ; *** Post-installation errors 345 | ErrorOpeningReadme=Si è verificato un errore durante l'apertura del file LEGGIMI. 346 | ErrorRestartingComputer=Impossibile riavviare il sistema. Riavvia il sistema manualmente. 347 | 348 | ; *** Uninstaller messages 349 | UninstallNotFound=Il file "%1" non esiste.%n%nImpossibile disinstallare. 350 | UninstallOpenError=Il file "%1" non può essere aperto.%n%nImpossibile disinstallare 351 | UninstallUnsupportedVer=Il file registro di disinstallazione "%1" è in un formato non riconosciuto da questa versione del programma di disinstallazione.%n%nImpossibile disinstallare 352 | UninstallUnknownEntry=Trovata una voce sconosciuta (%1) nel file registro di disinstallazione 353 | ConfirmUninstall=Vuoi rimuovere completamente %1 e tutti i suoi componenti? 354 | UninstallOnlyOnWin64=Questa applicazione può essere disinstallata solo in Windows a 64-bit. 355 | OnlyAdminCanUninstall=Questa applicazione può essere disinstallata solo da un utente con privilegi di amministratore. 356 | UninstallStatusLabel=Attendi fino a che %1 è stato rimosso dal computer. 357 | UninstalledAll=Disinstallazione di %1 completata. 358 | UninstalledMost=Disinstallazione di %1 completata.%n%nAlcuni elementi non possono essere rimossi.%n%nDovranno essere rimossi manualmente. 359 | UninstalledAndNeedsRestart=Per completare la disinstallazione di %1, è necessario riavviare il sistema.%n%nVuoi riavviare il sistema adesso? 360 | UninstallDataCorrupted=Il file "%1" è danneggiato. Impossibile disinstallare 361 | 362 | ; *** Uninstallation phase messages 363 | ConfirmDeleteSharedFileTitle=Vuoi rimuovere il file condiviso? 364 | ConfirmDeleteSharedFile2=Il sistema indica che il seguente file condiviso non è più usato da nessun programma.%nVuoi rimuovere questo file condiviso?%nSe qualche programma usasse questo file, potrebbe non funzionare più correttamente.%nSe non sei sicuro, seleziona "No".%nLasciare il file nel sistema non può causare danni. 365 | SharedFileNameLabel=Nome del file: 366 | SharedFileLocationLabel=Percorso: 367 | WizardUninstalling=Stato disinstallazione 368 | StatusUninstalling=Disinstallazione di %1... 369 | 370 | ; *** Shutdown block reasons 371 | ShutdownBlockReasonInstallingApp=Installazione di %1. 372 | ShutdownBlockReasonUninstallingApp=Disinstallazione di %1. 373 | 374 | ; The custom messages below aren't used by Setup itself, but if you make 375 | ; use of them in your scripts, you'll want to translate them. 376 | 377 | [CustomMessages] 378 | 379 | NameAndVersion=%1 versione %2 380 | AdditionalIcons=Icone aggiuntive: 381 | CreateDesktopIcon=Crea un'icona sul &desktop 382 | CreateQuickLaunchIcon=Crea un'icona nella &barra 'Avvio veloce' 383 | ProgramOnTheWeb=Sito web di %1 384 | UninstallProgram=Disinstalla %1 385 | LaunchProgram=Avvia %1 386 | AssocFileExtension=&Associa i file con estensione %2 a %1 387 | AssocingFileExtension=Associazione dei file con estensione %2 a %1... 388 | AutoStartProgramGroupDescription=Esecuzione automatica: 389 | AutoStartProgram=Esegui automaticamente %1 390 | AddonHostProgramNotFound=Impossibile individuare %1 nella cartella selezionata.%n%nVuoi continuare ugualmente? 391 | -------------------------------------------------------------------------------- /third-party/inno/Languages/Japanese.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Japanese.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Norwegian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Norwegian.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Polish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Polish.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Portuguese.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Portuguese.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Russian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Russian.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Slovak.isl: -------------------------------------------------------------------------------- 1 | ; ****************************************************** 2 | ; *** *** 3 | ; *** Inno Setup version 6.1.0+ Slovak messages *** 4 | ; *** *** 5 | ; *** Original Author: *** 6 | ; *** *** 7 | ; *** Milan Potancok (milan.potancok AT gmail.com) *** 8 | ; *** *** 9 | ; *** Contributors: *** 10 | ; *** *** 11 | ; *** Ivo Bauer (bauer AT ozm.cz) *** 12 | ; *** *** 13 | ; *** Tomas Falb (tomasf AT pobox.sk) *** 14 | ; *** Slappy (slappy AT pobox.sk) *** 15 | ; *** Comments: (mitems58 AT gmail.com) *** 16 | ; *** *** 17 | ; *** Update: 28.01.2021 *** 18 | ; *** *** 19 | ; ****************************************************** 20 | ; 21 | ; 22 | 23 | [LangOptions] 24 | LanguageName=Sloven<010D>ina 25 | LanguageID=$041b 26 | LanguageCodePage=1250 27 | 28 | [Messages] 29 | 30 | ; *** Application titles 31 | SetupAppTitle=Sprievodca inštaláciou 32 | SetupWindowTitle=Sprievodca inštaláciou - %1 33 | UninstallAppTitle=Sprievodca odinštaláciou 34 | UninstallAppFullTitle=Sprievodca odinštaláciou - %1 35 | 36 | ; *** Misc. common 37 | InformationTitle=Informácie 38 | ConfirmTitle=Potvrdenie 39 | ErrorTitle=Chyba 40 | 41 | ; *** SetupLdr messages 42 | SetupLdrStartupMessage=Víta Vás Sprievodca inštaláciou produktu %1. Prajete si pokračovať? 43 | LdrCannotCreateTemp=Nie je možné vytvoriť dočasný súbor. Sprievodca inštaláciou sa ukončí 44 | LdrCannotExecTemp=Nie je možné spustiť súbor v dočasnom adresári. Sprievodca inštaláciou sa ukončí 45 | HelpTextNote= 46 | 47 | ; *** Startup error messages 48 | LastErrorMessage=%1.%n%nChyba %2: %3 49 | SetupFileMissing=Inštalačný adresár neobsahuje súbor %1. Opravte túto chybu, alebo si zaobstarajte novú kópiu tohto produktu. 50 | SetupFileCorrupt=Súbory Sprievodcu inštaláciou sú poškodené. Zaobstarajte si novú kópiu tohto produktu. 51 | SetupFileCorruptOrWrongVer=Súbory Sprievodcu inštaláciou sú poškodené alebo sa nezhodujú s touto verziou Sprievodcu inštaláciou. Opravte túto chybu, alebo si zaobstarajte novú kópiu tohto produktu. 52 | InvalidParameter=Nesprávny parameter na príkazovom riadku: %n%n%1 53 | SetupAlreadyRunning=Inštalácia už prebieha. 54 | WindowsVersionNotSupported=Tento program nepodporuje vašu verziu systému Windows. 55 | WindowsServicePackRequired=Tento program vyžaduje %1 Service Pack %2 alebo novší. 56 | NotOnThisPlatform=Tento produkt sa nedá spustiť v %1. 57 | OnlyOnThisPlatform=Tento produkt musí byť spustený v %1. 58 | OnlyOnTheseArchitectures=Tento produkt je možné nainštalovať iba vo verziách MS Windows s podporou architektúry procesorov:%n%n%1 59 | WinVersionTooLowError=Tento produkt vyžaduje %1 verzie %2 alebo vyššej. 60 | WinVersionTooHighError=Tento produkt sa nedá nainštalovať vo %1 verzie %2 alebo vyššej. 61 | AdminPrivilegesRequired=Na inštaláciu tohto produktu musíte byť prihlásený s právami administrátora. 62 | PowerUserPrivilegesRequired=Na inštaláciu tohto produktu musíte byť prihlásený s právami Administrátora alebo člena skupiny Power Users. 63 | SetupAppRunningError=Sprievodca inštaláciou zistil, že produkt %1 je teraz spustený.%n%nUkončte všetky spustené inštancie tohto produktu a pokračujte kliknutím na tlačidlo "OK", alebo ukončte inštaláciu tlačidlom "Zrušiť". 64 | UninstallAppRunningError=Sprievodca odinštaláciou zistil, že produkt %1 je teraz spustený.%n%nUkončte všetky spustené inštancie tohto produktu a pokračujte kliknutím na tlačidlo "OK", alebo ukončte inštaláciu tlačidlom "Zrušiť". 65 | 66 | ; *** Startup questions 67 | PrivilegesRequiredOverrideTitle=Vyberte inštalačný mód inštalátora 68 | PrivilegesRequiredOverrideInstruction=Vyberte inštalačný mód 69 | PrivilegesRequiredOverrideText1=%1 sa môže nainštalovať pre všetkých užívateľov (vyžaduje administrátorské práva), alebo len pre Vás. 70 | PrivilegesRequiredOverrideText2=%1 sa môže nainštalovať len pre Vás, alebo pre všetkých užívateľov (vyžadujú sa Administrátorské práva). 71 | PrivilegesRequiredOverrideAllUsers=Inštalovať pre &všetkých užívateľov 72 | PrivilegesRequiredOverrideAllUsersRecommended=Inštalovať pre &všetkých užívateľov (odporúčané) 73 | PrivilegesRequiredOverrideCurrentUser=Inštalovať len pre &mňa 74 | PrivilegesRequiredOverrideCurrentUserRecommended=Inštalovať len pre &mňa (odporúčané) 75 | 76 | ; *** Misc. errors 77 | ErrorCreatingDir=Sprievodca inštaláciou nemohol vytvoriť adresár "%1" 78 | ErrorTooManyFilesInDir=Nedá sa vytvoriť súbor v adresári "%1", pretože tento adresár už obsahuje príliš veľa súborov 79 | 80 | ; *** Setup common messages 81 | ExitSetupTitle=Ukončiť Sprievodcu inštaláciou 82 | ExitSetupMessage=Inštalácia nebola kompletne dokončená. Ak teraz ukončíte Sprievodcu inštaláciou, produkt nebude nainštalovaný.%n%nSprievodcu inštaláciou môžete znovu spustiť neskôr a dokončiť tak inštaláciu.%n%nUkončiť Sprievodcu inštaláciou? 83 | AboutSetupMenuItem=&O Sprievodcovi inštalácie... 84 | AboutSetupTitle=O Sprievodcovi inštalácie 85 | AboutSetupMessage=%1 verzia %2%n%3%n%n%1 domovská stránka:%n%4 86 | AboutSetupNote= 87 | TranslatorNote=Slovak translation maintained by Milan Potancok (milan.potancok AT gmail.com), Ivo Bauer (bauer AT ozm.cz), Tomas Falb (tomasf AT pobox.sk) + Slappy (slappy AT pobox.sk) 88 | 89 | ; *** Buttons 90 | ButtonBack=< &Späť 91 | ButtonNext=&Ďalej > 92 | ButtonInstall=&Inštalovať 93 | ButtonOK=OK 94 | ButtonCancel=Zrušiť 95 | ButtonYes=&Áno 96 | ButtonYesToAll=Áno &všetkým 97 | ButtonNo=&Nie 98 | ButtonNoToAll=Ni&e všetkým 99 | ButtonFinish=&Dokončiť 100 | ButtonBrowse=&Prechádzať... 101 | ButtonWizardBrowse=&Prechádzať... 102 | ButtonNewFolder=&Vytvoriť nový adresár 103 | 104 | ; *** "Select Language" dialog messages 105 | SelectLanguageTitle=Výber jazyka Sprievodcu inštaláciou 106 | SelectLanguageLabel=Zvoľte jazyk, ktorý sa má použiť pri inštalácii. 107 | 108 | ; *** Common wizard text 109 | ClickNext=Pokračujte kliknutím na tlačidlo "Ďalej", alebo ukončte sprievodcu inštaláciou tlačidlom "Zrušiť". 110 | BeveledLabel= 111 | BrowseDialogTitle=Nájsť adresár 112 | BrowseDialogLabel=Z dole uvedeného zoznamu vyberte adresár a kliknite na "OK". 113 | NewFolderName=Nový adresár 114 | 115 | ; *** "Welcome" wizard page 116 | WelcomeLabel1=Víta Vás Sprievodca inštaláciou produktu [name]. 117 | WelcomeLabel2=Produkt [name/ver] sa nainštaluje do tohto počítača.%n%nSkôr, ako budete pokračovať, odporúčame ukončiť všetky spustené aplikácie. 118 | 119 | ; *** "Password" wizard page 120 | WizardPassword=Heslo 121 | PasswordLabel1=Táto inštalácia je chránená heslom. 122 | PasswordLabel3=Zadajte heslo a pokračujte kliknutím na tlačidlo "Ďalej". Pri zadávaní hesla rozlišujte malé a veľké písmená. 123 | PasswordEditLabel=&Heslo: 124 | IncorrectPassword=Zadané heslo nie je správne. Skúste to ešte raz prosím. 125 | 126 | ; *** "License Agreement" wizard page 127 | WizardLicense=Licenčná zmluva 128 | LicenseLabel=Skôr, ako budete pokračovať, prečítajte si tieto dôležité informácie, prosím. 129 | LicenseLabel3=Prečítajte si túto Licenčnú zmluvu prosím. Aby mohla inštalácia pokračovať, musíte súhlasiť s podmienkami tejto zmluvy. 130 | LicenseAccepted=&Súhlasím s podmienkami Licenčnej zmluvy 131 | LicenseNotAccepted=&Nesúhlasím s podmienkami Licenčnej zmluvy 132 | 133 | ; *** "Information" wizard pages 134 | WizardInfoBefore=Informácie 135 | InfoBeforeLabel=Skôr, ako budete pokračovať, prečítajte si tieto dôležité informácie, prosím. 136 | InfoBeforeClickLabel=Pokračujte v inštalácii kliknutím na tlačidlo "Ďalej". 137 | WizardInfoAfter=Informácie 138 | InfoAfterLabel=Skôr, ako budete pokračovať, prečítajte si tieto dôležité informácie prosím. 139 | InfoAfterClickLabel=Pokračujte v inštalácii kliknutím na tlačidlo "Ďalej". 140 | 141 | ; *** "User Information" wizard page 142 | WizardUserInfo=Informácie o používateľovi 143 | UserInfoDesc=Zadajte požadované informácie prosím. 144 | UserInfoName=&Používateľské meno: 145 | UserInfoOrg=&Organizácia: 146 | UserInfoSerial=&Sériové číslo: 147 | UserInfoNameRequired=Meno používateľa musí byť zadané. 148 | 149 | ; *** "Select Destination Location" wizard page 150 | WizardSelectDir=Vyberte cieľový adresár 151 | SelectDirDesc=Kde má byť produkt [name] nainštalovaný? 152 | SelectDirLabel3=Sprievodca nainštaluje produkt [name] do nasledujúceho adresára. 153 | SelectDirBrowseLabel=Pokračujte kliknutím na tlačidlo "Ďalej". Ak chcete vybrať iný adresár, kliknite na tlačidlo "Prechádzať". 154 | DiskSpaceGBLabel=Inštalácia vyžaduje najmenej [gb] GB miesta v disku. 155 | DiskSpaceMBLabel=Inštalácia vyžaduje najmenej [mb] MB miesta v disku. 156 | CannotInstallToNetworkDrive=Sprievodca inštaláciou nemôže inštalovať do sieťovej jednotky. 157 | CannotInstallToUNCPath=Sprievodca inštaláciou nemôže inštalovať do UNC umiestnenia. 158 | InvalidPath=Musíte zadať úplnú cestu vrátane písmena jednotky; napríklad:%n%nC:\Aplikácia%n%nalebo cestu UNC v tvare:%n%n\\Server\Zdieľaný adresár 159 | InvalidDrive=Vami vybraná jednotka alebo cesta UNC neexistuje, alebo nie je dostupná. Vyberte iné umiestnenie prosím. 160 | DiskSpaceWarningTitle=Nedostatok miesta v disku 161 | DiskSpaceWarning=Sprievodca inštaláciou vyžaduje najmenej %1 KB voľného miesta pre inštaláciu produktu, ale vo vybranej jednotke je dostupných iba %2 KB.%n%nAj napriek tomu chcete pokračovať? 162 | DirNameTooLong=Názov adresára alebo cesta sú príliš dlhé. 163 | InvalidDirName=Názov adresára nie je správny. 164 | BadDirName32=Názvy adresárov nesmú obsahovať žiadny z nasledujúcich znakov:%n%n%1 165 | DirExistsTitle=Adresár už existuje 166 | DirExists=Adresár:%n%n%1%n%nuž existuje. Aj napriek tomu chcete nainštalovať produkt do tohto adresára? 167 | DirDoesntExistTitle=Adresár neexistuje 168 | DirDoesntExist=Adresár: %n%n%1%n%nešte neexistuje. Má sa tento adresár vytvoriť? 169 | 170 | ; *** "Select Components" wizard page 171 | WizardSelectComponents=Vyberte komponenty 172 | SelectComponentsDesc=Aké komponenty majú byť nainštalované? 173 | SelectComponentsLabel2=Zaškrtnite iba komponenty, ktoré chcete nainštalovať; komponenty, ktoré se nemajú inštalovať, nechajte nezaškrtnuté. Pokračujte kliknutím na tlačidlo "Ďalej". 174 | FullInstallation=Úplná inštalácia 175 | ; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) 176 | CompactInstallation=Kompaktná inštalácia 177 | CustomInstallation=Voliteľná inštalácia 178 | NoUninstallWarningTitle=Komponenty existujú 179 | NoUninstallWarning=Sprievodca inštaláciou zistil že nasledujúce komponenty už sú v tomto počítači nainštalované:%n%n%1%n%nAk ich teraz nezahrniete do výberu, nebudú neskôr odinštalované.%n%nAj napriek tomu chcete pokračovať? 180 | ComponentSize1=%1 KB 181 | ComponentSize2=%1 MB 182 | ComponentsDiskSpaceGBLabel=Vybrané komponenty vyžadujú najmenej [gb] GB miesta v disku. 183 | ComponentsDiskSpaceMBLabel=Vybrané komponenty vyžadujú najmenej [mb] MB miesta v disku. 184 | 185 | ; *** "Select Additional Tasks" wizard page 186 | WizardSelectTasks=Vyberte ďalšie úlohy 187 | SelectTasksDesc=Ktoré ďalšie úlohy majú byť vykonané? 188 | SelectTasksLabel2=Vyberte ďalšie úlohy, ktoré majú byť vykonané počas inštalácie produktu [name] a pokračujte kliknutím na tlačidlo "Ďalej". 189 | 190 | ; *** "Select Start Menu Folder" wizard page 191 | WizardSelectProgramGroup=Vyberte skupinu v ponuke Štart 192 | SelectStartMenuFolderDesc=Kam má sprievodca inštalácie umiestniť zástupcov aplikácie? 193 | SelectStartMenuFolderLabel3=Sprievodca inštaláciou vytvorí zástupcov aplikácie v nasledujúcom adresári ponuky Štart. 194 | SelectStartMenuFolderBrowseLabel=Pokračujte kliknutím na tlačidlo Ďalej. Ak chcete zvoliť iný adresár, kliknite na tlačidlo "Prechádzať". 195 | MustEnterGroupName=Musíte zadať názov skupiny. 196 | GroupNameTooLong=Názov adresára alebo cesta sú príliš dlhé. 197 | InvalidGroupName=Názov adresára nie je správny. 198 | BadGroupName=Názov skupiny nesmie obsahovať žiadny z nasledujúcich znakov:%n%n%1 199 | NoProgramGroupCheck2=&Nevytvárať skupinu v ponuke Štart 200 | 201 | ; *** "Ready to Install" wizard page 202 | WizardReady=Inštalácia je pripravená 203 | ReadyLabel1=Sprievodca inštaláciou je teraz pripravený nainštalovať produkt [name] na Váš počítač. 204 | ReadyLabel2a=Pokračujte v inštalácii kliknutím na tlačidlo "Inštalovať". Ak chcete zmeniť niektoré nastavenia inštalácie, kliknite na tlačidlo "< Späť". 205 | ReadyLabel2b=Pokračujte v inštalácii kliknutím na tlačidlo "Inštalovať". 206 | ReadyMemoUserInfo=Informácie o používateľovi: 207 | ReadyMemoDir=Cieľový adresár: 208 | ReadyMemoType=Typ inštalácie: 209 | ReadyMemoComponents=Vybrané komponenty: 210 | ReadyMemoGroup=Skupina v ponuke Štart: 211 | ReadyMemoTasks=Ďalšie úlohy: 212 | 213 | ; *** TDownloadWizardPage wizard page and DownloadTemporaryFile 214 | DownloadingLabel=Sťahovanie dodatočných súborov... 215 | ButtonStopDownload=&Zastaviť sťahovanie 216 | StopDownload=Naozaj chcete zastaviť sťahovanie? 217 | ErrorDownloadAborted=Sťahovanie prerušené 218 | ErrorDownloadFailed=Sťahovanie zlyhalo: %1 %2 219 | ErrorDownloadSizeFailed=Zlyhalo získanie veľkosti: %1 %2 220 | ErrorFileHash1=Kontrola hodnoty súboru zlyhala: %1 221 | ErrorFileHash2=Nesprávna kontrolná hodnota: očakávala sa %1, zistená %2 222 | ErrorProgress=Nesprávny priebeh: %1 z %2 223 | ErrorFileSize=Nesprávna veľkosť súboru: očakávala sa %1, zistená %2 224 | 225 | ; *** "Preparing to Install" wizard page 226 | WizardPreparing=Príprava inštalácie 227 | PreparingDesc=Sprievodca inštaláciou pripravuje inštaláciu produktu [name] do tohto počítača. 228 | PreviousInstallNotCompleted=Inštalácia/odinštalácia predošlého produktu nebola úplne dokončená. Dokončenie tohto procesu vyžaduje reštart počítača.%n%nPo reštartovaní počítača znovu spustite Sprievodcu inštaláciou, aby bolo možné kompletne dokončiť inštaláciu produktu [name]. 229 | CannotContinue=Sprievodca inštaláciou nemôže pokračovať. Ukončite, prosím, sprievodcu inštaláciou kliknutím na tlačidlo "Zrušiť". 230 | ApplicationsFound=Nasledujúce aplikácie pracujú so súbormi, ktoré musí Sprievodca inštaláciou aktualizovať. Odporúčame, aby ste povolili Sprievodcovi inštaláciou automaticky ukončiť tieto aplikácie. 231 | ApplicationsFound2=Nasledujúce aplikácie pracujú so súbormi, ktoré musí Sprievodca inštaláciou aktualizovať. Odporúčame, aby ste povolili Sprievodcovi inštaláciou automaticky ukončiť tieto aplikácie. Po dokončení inštalácie sa Sprievodca inštaláciou pokúsi tieto aplikácie opätovne spustiť. 232 | CloseApplications=&Automaticky ukončiť aplikácie 233 | DontCloseApplications=&Neukončovať aplikácie 234 | ErrorCloseApplications=Sprievodca inštaláciou nemohol automaticky zatvoriť všetky aplikácie. Odporúčame, aby ste ručne ukončili všetky aplikácie, ktoré používajú súbory a ktoré má Sprievodca aktualizovať. 235 | PrepareToInstallNeedsRestart=Sprievodca inštaláciou potrebuje reštartovať tento počítač. Po reštartovaní počítača znovu spustite tohto Sprievodcu inštaláciou, aby sa inštalácia [name] dokončila.%n%nChcete teraz reštartovať tento počítač? 236 | 237 | ; *** "Installing" wizard page 238 | WizardInstalling=Inštalujem 239 | InstallingLabel=Počkajte prosím, pokiaľ Sprievodca inštaláciou dokončí inštaláciu produktu [name] do tohto počítača. 240 | 241 | ; *** "Setup Completed" wizard page 242 | FinishedHeadingLabel=Dokončuje sa inštalácia produktu [name] 243 | FinishedLabelNoIcons=Sprievodca inštaláciou dokončil inštaláciu produktu [name] do tohto počítača. 244 | FinishedLabel=Sprievodca inštaláciou dokončil inštaláciu produktu [name] do tohto počítača. Produkt je možné spustiť pomocou nainštalovaných ikon a zástupcov. 245 | ClickFinish=Ukončte Sprievodcu inštaláciou kliknutím na tlačidlo "Dokončiť". 246 | FinishedRestartLabel=Pre dokončenie inštalácie produktu [name] je nutné reštartovať tento počítač. Želáte si teraz reštartovať tento počítač? 247 | FinishedRestartMessage=Pre dokončenie inštalácie produktu [name] je nutné reštartovať tento počítač.%n%nŽeláte si teraz reštartovať tento počítač? 248 | ShowReadmeCheck=Áno, chcem zobraziť dokument "ČITAJMA" 249 | YesRadio=&Áno, chcem teraz reštartovať počítač 250 | NoRadio=&Nie, počítač reštartujem neskôr 251 | 252 | ; used for example as 'Run MyProg.exe' 253 | RunEntryExec=Spustiť %1 254 | ; used for example as 'View Readme.txt' 255 | RunEntryShellExec=Zobraziť %1 256 | 257 | ; *** "Setup Needs the Next Disk" stuff 258 | ChangeDiskTitle=Sprievodca inštaláciou vyžaduje ďalší disk 259 | SelectDiskLabel2=Vložte prosím, disk %1 a kliknite na tlačidlo "OK".%n%nAk sa súbory tohto disku nachádzajú v inom adresári ako v tom, ktorý je zobrazený nižšie, zadajte správnu cestu alebo kliknite na tlačidlo "Prechádzať". 260 | PathLabel=&Cesta: 261 | FileNotInDir2=Súbor "%1" sa nedá nájsť v "%2". Vložte prosím, správny disk, alebo zvoľte iný adresár. 262 | SelectDirectoryLabel=Špecifikujte prosím, umiestnenie ďalšieho disku. 263 | 264 | ; *** Installation phase messages 265 | SetupAborted=Inštalácia nebola úplne dokončená.%n%nOpravte chybu a opäť spustite Sprievodcu inštaláciou prosím. 266 | AbortRetryIgnoreSelectAction=Vyberte akciu 267 | AbortRetryIgnoreRetry=&Skúsiť znovu 268 | AbortRetryIgnoreIgnore=&Ignorovať chybu a pokračovať 269 | AbortRetryIgnoreCancel=Zrušiť inštaláciu 270 | 271 | ; *** Installation status messages 272 | StatusClosingApplications=Ukončovanie aplikácií... 273 | StatusCreateDirs=Vytvárajú sa adresáre... 274 | StatusExtractFiles=Rozbaľujú sa súbory... 275 | StatusCreateIcons=Vytvárajú sa ikony a zástupcovia... 276 | StatusCreateIniEntries=Vytvárajú sa záznamy v konfiguračných súboroch... 277 | StatusCreateRegistryEntries=Vytvárajú sa záznamy v systémovom registri... 278 | StatusRegisterFiles=Registrujú sa súbory... 279 | StatusSavingUninstall=Ukladajú sa informácie potrebné pre neskoršie odinštalovanie produktu... 280 | StatusRunProgram=Dokončuje sa inštalácia... 281 | StatusRestartingApplications=Reštartovanie aplikácií... 282 | StatusRollback=Vykonané zmeny sa vracajú späť... 283 | 284 | ; *** Misc. errors 285 | ErrorInternal2=Interná chyba: %1 286 | ErrorFunctionFailedNoCode=%1 zlyhala 287 | ErrorFunctionFailed=%1 zlyhala; kód %2 288 | ErrorFunctionFailedWithMessage=%1 zlyhala; kód %2.%n%3 289 | ErrorExecutingProgram=Nedá sa spustiť súbor:%n%1 290 | 291 | ; *** Registry errors 292 | ErrorRegOpenKey=Došlo k chybe pri otváraní kľúča systémového registra:%n%1\%2 293 | ErrorRegCreateKey=Došlo k chybe pri vytváraní kľúča systémového registra:%n%1\%2 294 | ErrorRegWriteKey=Došlo k chybe pri zápise kľúča do systémového registra:%n%1\%2 295 | 296 | ; *** INI errors 297 | ErrorIniEntry=Došlo k chybe pri vytváraní záznamu v konfiguračnom súbore "%1". 298 | 299 | ; *** File copying errors 300 | FileAbortRetryIgnoreSkipNotRecommended=&Preskočiť tento súbor (neodporúčané) 301 | FileAbortRetryIgnoreIgnoreNotRecommended=&Ignorovať chybu a pokračovať (neodporúčané) 302 | SourceIsCorrupted=Zdrojový súbor je poškodený 303 | SourceDoesntExist=Zdrojový súbor "%1" neexistuje 304 | ExistingFileReadOnly2=Existujúci súbor nie je možné prepísať, pretože je označený atribútom Iba na čítanie. 305 | ExistingFileReadOnlyRetry=&Odstrániť atribút Iba na čítanie a skúsiť znovu 306 | ExistingFileReadOnlyKeepExisting=&Ponechať existujúci súbor 307 | ErrorReadingExistingDest=Došlo k chybe pri pokuse o čítanie existujúceho súboru: 308 | FileExistsSelectAction=Vyberte akciu 309 | FileExists2=Súbor už existuje. 310 | FileExistsOverwriteExisting=&Prepísať existujúci súbor 311 | FileExistsKeepExisting=Ponechať &existujúci súbor 312 | FileExistsOverwriteOrKeepAll=&Vykonať pre všetky ďalšie konflikty 313 | ExistingFileNewerSelectAction=Vyberte akciu 314 | ExistingFileNewer2=Existujúci súbor je novší ako súbor, ktorý sa Sprievodca inštaláciou pokúša nainštalovať. 315 | ExistingFileNewerOverwriteExisting=&Prepísať existujúci súbor 316 | ExistingFileNewerKeepExisting=Ponechať &existujúci súbor (odporúčané) 317 | ExistingFileNewerOverwriteOrKeepAll=&Vykonať pre všetky ďalšie konflikty 318 | ErrorChangingAttr=Došlo k chybe pri pokuse o modifikáciu atribútov existujúceho súboru: 319 | ErrorCreatingTemp=Došlo k chybe pri pokuse o vytvorenie súboru v cieľovom adresári: 320 | ErrorReadingSource=Došlo k chybe pri pokuse o čítanie zdrojového súboru: 321 | ErrorCopying=Došlo k chybe pri pokuse o skopírovanie súboru: 322 | ErrorReplacingExistingFile=Došlo k chybe pri pokuse o nahradenie existujúceho súboru: 323 | ErrorRestartReplace=Zlyhala funkcia "RestartReplace" Sprievodcu inštaláciou: 324 | ErrorRenamingTemp=Došlo k chybe pri pokuse o premenovanie súboru v cieľovom adresári: 325 | ErrorRegisterServer=Nedá sa vykonať registrácia DLL/OCX: %1 326 | ErrorRegSvr32Failed=Volanie RegSvr32 zlyhalo s návratovým kódom %1 327 | ErrorRegisterTypeLib=Nedá sa vykonať registrácia typovej knižnice: %1 328 | 329 | ; *** Uninstall display name markings 330 | ; used for example as 'My Program (32-bit)' 331 | UninstallDisplayNameMark=%1 (%2) 332 | ; used for example as 'My Program (32-bit, All users)' 333 | UninstallDisplayNameMarks=%1 (%2, %3) 334 | UninstallDisplayNameMark32Bit=32bitový 335 | UninstallDisplayNameMark64Bit=64bitový 336 | UninstallDisplayNameMarkAllUsers=Všetci užívatelia 337 | UninstallDisplayNameMarkCurrentUser=Aktuálny užívateľ 338 | 339 | ; *** Post-installation errors 340 | ErrorOpeningReadme=Došlo k chybe pri pokuse o otvorenie dokumentu "ČITAJMA". 341 | ErrorRestartingComputer=Sprievodcovi inštaláciou sa nepodarilo reštartovať tento počítač. Reštartujte ho manuálne prosím. 342 | 343 | ; *** Uninstaller messages 344 | UninstallNotFound=Súbor "%1" neexistuje. Produkt sa nedá odinštalovať. 345 | UninstallOpenError=Súbor "%1" nie je možné otvoriť. Produkt nie je možné odinštalovať. 346 | UninstallUnsupportedVer=Sprievodcovi odinštaláciou sa nepodarilo rozpoznať formát súboru obsahujúceho informácie na odinštalovanie produktu "%1". Produkt sa nedá odinštalovať 347 | UninstallUnknownEntry=V súbore obsahujúcom informácie na odinštalovanie produktu bola zistená neznáma položka (%1) 348 | ConfirmUninstall=Naozaj chcete odinštalovať %1 a všetky jeho komponenty? 349 | UninstallOnlyOnWin64=Tento produkt je možné odinštalovať iba v 64-bitových verziách MS Windows. 350 | OnlyAdminCanUninstall=K odinštalovaniu tohto produktu musíte byť prihlásený s právami Administrátora. 351 | UninstallStatusLabel=Počkajte prosím, kým produkt %1 nebude odinštalovaný z tohto počítača. 352 | UninstalledAll=%1 bol úspešne odinštalovaný z tohto počítača. 353 | UninstalledMost=%1 bol odinštalovaný z tohto počítača.%n%nNiektoré jeho komponenty sa však nepodarilo odinštalovať. Môžete ich odinštalovať manuálne. 354 | UninstalledAndNeedsRestart=Na dokončenie odinštalácie produktu %1 je potrebné reštartovať tento počítač.%n%nChcete ihneď reštartovať tento počítač? 355 | UninstallDataCorrupted=Súbor "%1" je poškodený. Produkt sa nedá odinštalovať 356 | 357 | ; *** Uninstallation phase messages 358 | ConfirmDeleteSharedFileTitle=Odinštalovať zdieľaný súbor? 359 | ConfirmDeleteSharedFile2=Systém indikuje, že nasledujúci zdieľaný súbor nie je používaný žiadnymi inými aplikáciami. Má Sprievodca odinštaláciou tento zdieľaný súbor odstrániť?%n%nAk niektoré aplikácie tento súbor používajú, nemusia po jeho odinštalovaní pracovať správne. Pokiaľ to neviete správne posúdiť, odporúčame zvoliť "Nie". Ponechanie tohto súboru v systéme nespôsobí žiadnu škodu. 360 | SharedFileNameLabel=Názov súboru: 361 | SharedFileLocationLabel=Umiestnenie: 362 | WizardUninstalling=Stav odinštalovania 363 | StatusUninstalling=Prebieha odinštalovanie %1... 364 | 365 | ; *** Shutdown block reasons 366 | ShutdownBlockReasonInstallingApp=Inštalovanie %1. 367 | ShutdownBlockReasonUninstallingApp=Odinštalovanie %1. 368 | 369 | ; The custom messages below aren't used by Setup itself, but if you make 370 | ; use of them in your scripts, you'll want to translate them. 371 | 372 | [CustomMessages] 373 | 374 | NameAndVersion=%1 verzia %2 375 | AdditionalIcons=Ďalší zástupcovia: 376 | CreateDesktopIcon=Vytvoriť zástupcu na &ploche 377 | CreateQuickLaunchIcon=Vytvoriť zástupcu na paneli &Rýchle spustenie 378 | ProgramOnTheWeb=Aplikácia %1 na internete 379 | UninstallProgram=Odinštalovať aplikáciu %1 380 | LaunchProgram=Spustiť aplikáciu %1 381 | AssocFileExtension=Vytvoriť &asociáciu medzi súbormi typu %2 a aplikáciou %1 382 | AssocingFileExtension=Vytvára sa asociácia medzi súbormi typu %2 a aplikáciou %1... 383 | AutoStartProgramGroupDescription=Pri spustení: 384 | AutoStartProgram=Automaticky spustiť %1 385 | AddonHostProgramNotFound=Nepodarilo sa nájsť %1 v adresári, ktorý ste zvolili.%n%nChcete napriek tomu pokračovať? 386 | -------------------------------------------------------------------------------- /third-party/inno/Languages/Slovenian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Slovenian.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Spanish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Spanish.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Turkish.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Turkish.isl -------------------------------------------------------------------------------- /third-party/inno/Languages/Ukrainian.isl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Languages/Ukrainian.isl -------------------------------------------------------------------------------- /third-party/inno/README.txt: -------------------------------------------------------------------------------- 1 | These are the binary files of Inno Setup 6.2.2 from https://jrsoftware.org/isinfo.php 2 | We've removed some unnecessary files to reduce the size of the application 3 | See license.txt for licensing information 4 | 5 | Source code: https://github.com/jrsoftware/issrc 6 | -------------------------------------------------------------------------------- /third-party/inno/Setup.e32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/Setup.e32 -------------------------------------------------------------------------------- /third-party/inno/SetupClassicIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/SetupClassicIcon.ico -------------------------------------------------------------------------------- /third-party/inno/SetupLdr.e32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/SetupLdr.e32 -------------------------------------------------------------------------------- /third-party/inno/WizClassicImage-IS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/WizClassicImage-IS.bmp -------------------------------------------------------------------------------- /third-party/inno/WizClassicImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/WizClassicImage.bmp -------------------------------------------------------------------------------- /third-party/inno/WizClassicSmallImage-IS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/WizClassicSmallImage-IS.bmp -------------------------------------------------------------------------------- /third-party/inno/WizClassicSmallImage.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/WizClassicSmallImage.bmp -------------------------------------------------------------------------------- /third-party/inno/isbunzip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/isbunzip.dll -------------------------------------------------------------------------------- /third-party/inno/isbzip.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/isbzip.dll -------------------------------------------------------------------------------- /third-party/inno/isfaq.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://jrsoftware.org/isfaq.php 3 | -------------------------------------------------------------------------------- /third-party/inno/islzma.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/islzma.dll -------------------------------------------------------------------------------- /third-party/inno/islzma32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/islzma32.exe -------------------------------------------------------------------------------- /third-party/inno/islzma64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/islzma64.exe -------------------------------------------------------------------------------- /third-party/inno/isscint.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/isscint.dll -------------------------------------------------------------------------------- /third-party/inno/isunzlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/isunzlib.dll -------------------------------------------------------------------------------- /third-party/inno/iszlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/inno/iszlib.dll -------------------------------------------------------------------------------- /third-party/inno/license.txt: -------------------------------------------------------------------------------- 1 | Inno Setup License 2 | ================== 3 | 4 | Except where otherwise noted, all of the documentation and software included in the Inno Setup 5 | package is copyrighted by Jordan Russell. 6 | 7 | Copyright (C) 1997-2023 Jordan Russell. All rights reserved. 8 | Portions Copyright (C) 2000-2023 Martijn Laan. All rights reserved. 9 | 10 | This software is provided "as-is," without any express or implied warranty. In no event shall the 11 | author be held liable for any damages arising from the use of this software. 12 | 13 | Permission is granted to anyone to use this software for any purpose, including commercial 14 | applications, and to alter and redistribute it, provided that the following conditions are met: 15 | 16 | 1. All redistributions of source code files must retain all copyright notices that are currently in 17 | place, and this list of conditions without modification. 18 | 19 | 2. All redistributions in binary form must retain all occurrences of the above copyright notice and 20 | web site addresses that are currently in place (for example, in the About boxes). 21 | 22 | 3. The origin of this software must not be misrepresented; you must not claim that you wrote the 23 | original software. If you use this software to distribute a product, an acknowledgment in the 24 | product documentation would be appreciated but is not required. 25 | 26 | 4. Modified versions in source or binary form must be plainly marked as such, and must not be 27 | misrepresented as being the original software. 28 | 29 | 30 | Jordan Russell 31 | jr-2020 AT jrsoftware.org 32 | https://jrsoftware.org/ -------------------------------------------------------------------------------- /third-party/inno/whatsnew.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Inno Setup 6 Revision History 5 | 6 | 19 | 20 | 21 | 22 |
Inno Setup 6
Revision History
23 | 24 |

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

28 | 29 |

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

30 | 31 |

6.2.2 (2023-02-15)

32 | 41 | 42 |

6.2.1 (2022-04-14)

43 | 47 | 48 |

6.2.0 (2021-06-03)

49 |

Graphics modernized

50 | 59 |

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.

60 |

Example screenshots:

61 | 66 |

Comparison screenshots of the *previous* version:

67 | 70 |

Other changes

71 | 93 |

Inno Setup FAQ updated

94 | 98 |

QuickStart Pack removed

99 | 103 | 104 |

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

105 | 106 |

Inno Setup 6.1 Revision History

107 | 108 | 109 | 110 | -------------------------------------------------------------------------------- /third-party/rcedit/README.txt: -------------------------------------------------------------------------------- 1 | rcedit v2.0.0 from https://github.com/electron/rcedit 2 | 3 | License: 4 | Copyright (c) 2013 GitHub Inc. 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining 7 | a copy of this software and associated documentation files (the 8 | "Software"), to deal in the Software without restriction, including 9 | without limitation the rights to use, copy, modify, merge, publish, 10 | distribute, sublicense, and/or sell copies of the Software, and to 11 | permit persons to whom the Software is furnished to do so, subject to 12 | the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be 15 | included in all copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 18 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 19 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 20 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 21 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 22 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 23 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 24 | -------------------------------------------------------------------------------- /third-party/rcedit/rcedit-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TurboWarp/packager-extras/308912136fae38be3e1506e67e0451f3aceedebe/third-party/rcedit/rcedit-x86.exe -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- 1 | { 2 | "//": "This file has been superceded by https://packager.turbowarp.org/extras-version.json", 3 | "latest": "1.7.0" 4 | } 5 | --------------------------------------------------------------------------------