├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── Setup.iss ├── lang ├── en.isl ├── ru.isl └── ua.isl └── resources ├── VCRHyb64.exe ├── VC_redist.x64.exe ├── VC_redist.x86.exe └── hosts /.gitattributes: -------------------------------------------------------------------------------- 1 | resources/** filter=lfs diff=lfs merge=lfs -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /release/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2010-2025 Open Server Panel Dev Team 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | 11 | ------------------------------------------------------------------------------ 12 | 13 | Third-Party Product Licensing for System Preparation Tool 14 | 15 | This section includes third-party license information for certain third-party products included with System Preparation Tool 16 | 17 | MICROSOFT SOFTWARE LICENSE TERMS 18 | 19 | MICROSOFT VISUAL C++ 2005 RUNTIME LIBRARIES 20 | 21 | These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft 22 | * updates, 23 | * supplements, 24 | * Internet-based services, and 25 | * support services 26 | for this software, unless other terms accompany those items. If so, those terms apply. 27 | By using the software, you accept these terms. If you do not accept them, do not use the software. 28 | If you comply with these license terms, you have the rights below. 29 | 1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices. 30 | 2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not 31 | * disclose the results of any benchmark tests of the software to any third party without Microsoft’s prior written approval; 32 | * work around any technical limitations in the software; 33 | * reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; 34 | * make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; 35 | * publish the software for others to copy; 36 | * rent, lease or lend the software; 37 | * transfer the software or this agreement to any third party; or 38 | * use the software for commercial software hosting services. 39 | 3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. 40 | 4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. 41 | 5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. 42 | 6. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. 43 | 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. 44 | 8. APPLICABLE LAW. 45 | a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. 46 | b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. 47 | 9. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. 48 | 10. DISCLAIMER OF WARRANTY. The software is licensed “as-is.” You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. 49 | 11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. 50 | This limitation applies to 51 | * anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and 52 | * claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. 53 | It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. 54 | 55 | MICROSOFT VISUAL C++ 2008 RUNTIME LIBRARIES 56 | 57 | These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft 58 | • updates, 59 | • supplements, 60 | • Internet-based services, and 61 | • support services 62 | for this software, unless other terms accompany those items. If so, those terms apply. 63 | BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. 64 | If you comply with these license terms, you have the rights below. 65 | 1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices. 66 | 2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not 67 | • disclose the results of any benchmark tests of the software to any third party without Microsoft’s prior written approval; 68 | • work around any technical limitations in the software; 69 | • reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; 70 | • make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; 71 | • publish the software for others to copy; 72 | • rent, lease or lend the software; 73 | • transfer the software or this agreement to any third party; or 74 | • use the software for commercial software hosting services. 75 | 3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. 76 | 4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. 77 | 5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. 78 | 6. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. 79 | 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. 80 | 8. APPLICABLE LAW. 81 | a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. 82 | b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. 83 | 9. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. 84 | 10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 85 | 11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. 86 | This limitation applies to 87 | • anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and 88 | • claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. 89 | It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. 90 | 91 | MICROSOFT VISUAL C++ 2010 RUNTIME LIBRARIES 92 | 93 | These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft 94 | · updates, 95 | · supplements, 96 | · Internet-based services, and 97 | · support services 98 | for this software, unless other terms accompany those items. If so, those terms apply. 99 | BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. 100 | If you comply with these license terms, you have the rights below. 101 | 1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices. 102 | 2. Scope of License. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not 103 | · disclose the results of any benchmark tests of the software to any third party without Microsoft’s prior written approval; 104 | · work around any technical limitations in the software; 105 | · reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; 106 | · make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; 107 | · publish the software for others to copy; 108 | · rent, lease or lend the software; 109 | · transfer the software or this agreement to any third party; or 110 | · use the software for commercial software hosting services. 111 | 3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. 112 | 4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. 113 | 5. Export Restrictions. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting . 114 | 6. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. 115 | 7. Entire Agreement. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. 116 | 8. Applicable Law. 117 | a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. 118 | b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. 119 | 9. Legal Effect. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. 120 | 10. Disclaimer of Warranty. The software is licensed “as-is.” You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. 121 | 11. Limitation on and Exclusion of Remedies and Damages. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. 122 | This limitation applies to 123 | · anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and 124 | · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. 125 | It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. 126 | 127 | MICROSOFT VISUAL C++ 2012 RUNTIME LIBRARIES 128 | 129 | These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft 130 | · updates, 131 | · supplements, 132 | · Internet-based services, and 133 | · support services 134 | for this software, unless other terms accompany those items. If so, those terms apply. 135 | By using the software, you accept these terms. If you do not accept them, do not use the software. 136 | If you comply with these license terms, you have the perpetual rights below. 137 | 1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices. 138 | 2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not 139 | · disclose the results of any benchmark tests of the software to any third party without Microsoft’s prior written approval; 140 | · work around any technical limitations in the software; 141 | · reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; 142 | · make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; 143 | · publish the software for others to copy; 144 | · rent, lease or lend the software; 145 | · transfer the software or this agreement to any third party; or 146 | · use the software for commercial software hosting services. 147 | 3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. 148 | 4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. 149 | 5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. 150 | 6. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. 151 | 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. 152 | 8. APPLICABLE LAW. 153 | a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. 154 | b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. 155 | 9. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. 156 | 10. DISCLAIMER OF WARRANTY. The software is licensed “as-is.” You bear the risk of using it. Microsoft gives no express warranties, guarantees or conditions. You may have additional consumer rights or statutory guarantees under your local laws which this agreement cannot change. To the extent permitted under your local laws, Microsoft excludes the implied warranties of merchantability, fitness for a particular purpose and non-infringement. 157 | FOR AUSTRALIA - You have statutory guarantees under the Australian Consumer Law and nothing in these terms is intended to affect those rights. 158 | 11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. You can recover from Microsoft and its suppliers only direct damages up to U.S. $5.00. You cannot recover any other damages, including consequential, lost profits, special, indirect or incidental damages. 159 | This limitation applies to 160 | · anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and 161 | · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. 162 | It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. 163 | 164 | MICROSOFT VISUAL C++ REDISTRIBUTABLE FOR VISUAL STUDIO 2013 165 | 166 | These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. Please read them. They apply to the software named above, which includes the media on which you received it, if any. The terms also apply to any Microsoft 167 | · updates, 168 | · supplements, 169 | · Internet-based services, and 170 | · support services 171 | for this software, unless other terms accompany those items. If so, those terms apply. 172 | BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS. IF YOU DO NOT ACCEPT THEM, DO NOT USE THE SOFTWARE. 173 | IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE PERPETUAL RIGHTS BELOW. 174 | 1. INSTALLATION AND USE RIGHTS. You may install and use any number of copies of the software on your devices. 175 | 2. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not 176 | · disclose the results of any benchmark tests of the software to any third party without Microsoft’s prior written approval; 177 | · work around any technical limitations in the software; 178 | · reverse engineer, decompile or disassemble the software, except and only to the extent that applicable law expressly permits, despite this limitation; 179 | · make more copies of the software than specified in this agreement or allowed by applicable law, despite this limitation; 180 | · publish the software for others to copy; 181 | · rent, lease or lend the software; 182 | · transfer the software or this agreement to any third party; or 183 | · use the software for commercial software hosting services. 184 | 3. BACKUP COPY. You may make one backup copy of the software. You may use it only to reinstall the software. 185 | 4. DOCUMENTATION. Any person that has valid access to your computer or internal network may copy and use the documentation for your internal, reference purposes. 186 | 5. EXPORT RESTRICTIONS. The software is subject to United States export laws and regulations. You must comply with all domestic and international export laws and regulations that apply to the software. These laws include restrictions on destinations, end users and end use. For additional information, see www.microsoft.com/exporting. 187 | 6. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. 188 | 7. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. 189 | 8. APPLICABLE LAW. 190 | a. United States. If you acquired the software in the United States, Washington state law governs the interpretation of this agreement and applies to claims for breach of it, regardless of conflict of laws principles. The laws of the state where you live govern all other claims, including claims under state consumer protection laws, unfair competition laws, and in tort. 191 | b. Outside the United States. If you acquired the software in any other country, the laws of that country apply. 192 | 9. LEGAL EFFECT. This agreement describes certain legal rights. You may have other rights under the laws of your country. You may also have rights with respect to the party from whom you acquired the software. This agreement does not change your rights under the laws of your country if the laws of your country do not permit it to do so. 193 | 10. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. YOU MAY HAVE ADDITIONAL CONSUMER RIGHTS OR STATUTORY GUARANTEES UNDER YOUR LOCAL LAWS WHICH THIS AGREEMENT CANNOT CHANGE. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 194 | FOR AUSTRALIA - YOU HAVE STATUTORY GUARANTEES UNDER THE AUSTRALIAN CONSUMER LAW AND NOTHING IN THESE TERMS IS INTENDED TO AFFECT THOSE RIGHTS. 195 | 11. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. 196 | This limitation applies to 197 | · anything related to the software, services, content (including code) on third party Internet sites, or third party programs; and 198 | · claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. 199 | It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. 200 | 201 | MICROSOFT VISUAL C++ 2015-2022 RUNTIME 202 | 203 | These license terms are an agreement between Microsoft Corporation (or based on where you live, one of its affiliates) and you. They apply to the software named above. The terms also apply to any Microsoft services or updates for the software, except to the extent those have different terms. 204 | IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. 205 | 1. INSTALLATION AND USE RIGHTS. 206 | You may install and use any number of copies of the software. 207 | 2. TERMS FOR SPECIFIC COMPONENTS. 208 | a. Microsoft Platforms. The software may include components from Microsoft Windows; Microsoft Windows Server; Microsoft SQL Server; Microsoft Exchange; Microsoft Office; and Microsoft SharePoint. These components are governed by separate agreements and their own product support policies, as described in the Microsoft “Licenses” folder accompanying the software, except that, if license terms for those components are also included in the associated installation directory, those license terms control. 209 | b. Third Party Components. The software may include third party components with separate legal notices or governed by other agreements, as may be described in the notices file(s) accompanying the software. 210 | 3. SCOPE OF LICENSE. The software is licensed, not sold. This agreement only gives you some rights to use the software. Microsoft reserves all other rights. Unless applicable law gives you more rights despite this limitation, you may use the software only as expressly permitted in this agreement. In doing so, you must comply with any technical limitations in the software that only allow you to use it in certain ways. You may not 211 | * work around any technical limitations in the software; 212 | * reverse engineer, decompile or disassemble the software, or otherwise attempt to derive the source code for the software except, and only to the extent required by third party licensing terms governing the use of certain open source components that may be included in the software; 213 | * remove, minimize, block or modify any notices of Microsoft or its suppliers in the software; 214 | * use the software in any way that is against the law; 215 | * share, publish, rent or lease the software; or 216 | * provide the software as a stand-alone offering or combined with any of your applications for others to use, or transfer the software or this agreement to any third party. 217 | 4. EXPORT RESTRICTIONS. You must comply with all domestic and international export laws and regulations that apply to the software, which include restrictions on destinations, end users, and end use. For further information on export restrictions, visit www.microsoft.com/exporting. 218 | 5. SUPPORT SERVICES. Because this software is “as is,” we may not provide support services for it. 219 | 6. ENTIRE AGREEMENT. This agreement, and the terms for supplements, updates, Internet-based services and support services that you use, are the entire agreement for the software and support services. 220 | 7. APPLICABLE LAW. If you acquired the software in the United States, Washington law applies to interpretation of and claims for breach of this agreement, and the laws of the state where you live apply to all other claims. If you acquired the software in any other country, its laws apply. 221 | 8. CONSUMER RIGHTS; REGIONAL VARIATIONS. This agreement describes certain legal rights. You may have other rights, including consumer rights, under the laws of your state or country. Separate and apart from your relationship with Microsoft, you may also have rights with respect to the party from which you acquired the software. This agreement does not change those other rights if the laws of your state or country do not permit it to do so. For example, if you acquired the software in one of the below regions, or mandatory country law applies, then the following provisions apply to you: 222 | a. Australia. You have statutory guarantees under the Australian Consumer Law and nothing in this agreement is intended to affect those rights. 223 | b. Canada. If you acquired this software in Canada, you may stop receiving updates by turning off the automatic update feature, disconnecting your device from the Internet (if and when you re-connect to the Internet, however, the software will resume checking for and installing updates), or uninstalling the software. The product documentation, if any, may also specify how to turn off updates for your specific device or software. 224 | c. Germany and Austria. 225 | (i) Warranty. The properly licensed software will perform substantially as described in any Microsoft materials that accompany the software. However, Microsoft gives no contractual guarantee in relation to the licensed software. 226 | (ii) Limitation of Liability. In case of intentional conduct, gross negligence, claims based on the Product Liability Act, as well as, in case of death or personal or physical injury, Microsoft is liable according to the statutory law. 227 | Subject to the foregoing clause (ii), Microsoft will only be liable for slight negligence if Microsoft is in breach of such material contractual obligations, the fulfillment of which facilitate the due performance of this agreement, the breach of which would endanger the purpose of this agreement and the compliance with which a party may constantly trust in (so-called "cardinal obligations"). In other cases of slight negligence, Microsoft will not be liable for slight negligence. 228 | 9. DISCLAIMER OF WARRANTY. THE SOFTWARE IS LICENSED “AS-IS.” YOU BEAR THE RISK OF USING IT. MICROSOFT GIVES NO EXPRESS WARRANTIES, GUARANTEES OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS, MICROSOFT EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. 229 | 10. LIMITATION ON AND EXCLUSION OF DAMAGES. YOU CAN RECOVER FROM MICROSOFT AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $5.00. YOU CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS, SPECIAL, INDIRECT OR INCIDENTAL DAMAGES. 230 | This limitation applies to (a) anything related to the software, services, content (including code) on third party Internet sites, or third party applications; and (b) claims for breach of contract, breach of warranty, guarantee or condition, strict liability, negligence, or other tort to the extent permitted by applicable law. 231 | It also applies even if Microsoft knew or should have known about the possibility of the damages. The above limitation or exclusion may not apply to you because your country may not allow the exclusion or limitation of incidental, consequential or other damages. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # System Preparation Tool 2 | 3 | A tool for preparing the Windows operating system to work with an [Open Server Panel](https://ospanel.io).\ 4 | To compile the application yourself, you need to install [Inno Setup Compiler](https://jrsoftware.org/download.php/is.exe). 5 | 6 | ## Installations (required) 7 | 8 | * Microsoft Visual C++ Redistributable packages 2005-2022 9 | 10 | ## Changes to access settings 11 | 12 | * Removing access restrictions to the HOSTS file (+ restoring the file in case of its absence) 13 | 14 | ## Automatic optimizations (required, hidden, non-switchable) 15 | 16 | * Setting the timeout after which the application is considered to be frozen, equal to 30 seconds 17 | * Disabling the automatic shutdown of hung applications 18 | * Disabling the 260-character path length limit 19 | * Setting the following order of domain name resolution: local cache, HOSTS file, DNS, NetBT 20 | * Setting standard DNS timeouts 21 | * Setting IPv4 priority over IPv6 when resolving domain names 22 | * Enabling Prefetcher (also enabled by default in Windows). In new operating systems, the SysMain service performs the function of optimizing memory consumption: page combining and memory compression. 23 | * Disabling Large System Cache (also disabled by default in Windows). Prohibits the operating system from using all RAM for the cache of system files, which allows you to provide Open Server Panel modules with more available RAM. 24 | * Disabling the cleanup of the swap file when the system is turned off (it is also turned off by default in Windows). When the computer is turned off, data is being intensively written to disk and the Open Server Panel requires as many resources as possible to correctly and quickly close running processes. 25 | 26 | ## Optimizations performed for SSD drives 27 | 28 | * Disabling the creation of names in the outdated MS-DOS format (8.3) 29 | * Enabling the TRIM command 30 | 31 | ## System requirements 32 | 33 | **Operating System:** Windows 7 SP1 x64 / Windows Server 2008 R2 SP1 x64 or later 34 | 35 | *** 36 | 37 | # Инструмент подготовки системы 38 | 39 | Инструмент для подготовки операционной системы Windows к работе с [Open Server Panel](https://ospanel.io).\ 40 | Для самостоятельной компиляции приложения необходимо установить [Inno Setup Compiler](https://jrsoftware.org/download.php/is.exe). 41 | 42 | ## Выполняемые установки (обязательные) 43 | 44 | * Microsoft Visual C++ Redistributable packages 2005-2022 45 | 46 | ## Изменения настроек доступа 47 | 48 | * Снятие ограничений доступа к файлу HOSTS (+ восстановление файла в случае его отсутствия) 49 | 50 | ## Автоматические оптимизации (обязательные, скрытые, неотключаемые) 51 | 52 | * Установка таймаута, после которого приложение считается зависшим, равным 30-ти секундам 53 | * Отключение автоматического завершения зависших приложений 54 | * Отключение ограничения на длину пути в 260 символов 55 | * Установка следующего порядка разрешения доменных имён: локальный кэш, файл HOSTS, DNS, NetBT 56 | * Установка стандартных таймаутов DNS 57 | * Установка приоритета IPv4 над IPv6 при разрешении доменных имён 58 | * Включение Prefetcher (по умолчанию в Windows также включено). В новых операционных системах служба SysMain выполняет функцию оптимизации потребления памяти: объединение страниц памяти (page combining) и сжатие памяти (memory compression). 59 | * Отключение Large System Cache (по умолчанию в Windows также выключено). Запрещает операционной системе использовать всю оперативную память для кэша системных файлов, что позволяет предоставить модулям Open Server Panel больше доступной оперативной памяти. 60 | * Отключение очистки файла подкачки при выключении системы (по умолчанию в Windows также выключено). В момент выключения компьютера идёт интенсивная запись данных на диск и Open Server Panel требуется как можно больше ресурсов для корректного и быстрого закрытия запущенных процессов. 61 | 62 | ## Выполняемые оптимизации для SSD-накопителей 63 | 64 | * Отключение создания имён в устаревшем формате MS-DOS (8.3) 65 | * Включение команды TRIM 66 | 67 | ## Системные требования 68 | 69 | **Операционная система:** Windows 7 SP1 x64 / Windows Server 2008 R2 SP1 x64 или новее 70 | -------------------------------------------------------------------------------- /Setup.iss: -------------------------------------------------------------------------------- 1 | #define AppVersion GetDateTimeString('yy/m/d/h', '.', '.') 2 | #define AppVersion_ GetDateTimeString('yy/m/d/h', '_', '_') 3 | #define AppDomain "ospanel.io" 4 | #define AppTitle "System Preparation Tool" 5 | #define CurrentYear GetDateTimeString('yyyy', '', '') 6 | 7 | [Setup] 8 | 9 | SourceDir = . 10 | OutputDir = release 11 | OutputBaseFilename = ospanel_sp_tool_{#AppVersion_} 12 | 13 | // Application info 14 | 15 | AppName = {#AppTitle} 16 | AppVersion = {#AppVersion} 17 | AppPublisherURL = https://{#AppDomain} 18 | AppPublisher = {#AppDomain} 19 | SetupMutex = Global\OSPSystemPreparationTool 20 | VersionInfoCompany = {#AppDomain} 21 | VersionInfoVersion = {#AppVersion} 22 | VersionInfoTextVersion = {#AppVersion} 23 | VersionInfoDescription = {#AppTitle} 24 | VersionInfoProductName = {#AppTitle} 25 | VersionInfoCopyright = Copyright (c) {#CurrentYear}, {#AppDomain} 26 | 27 | // Compression 28 | 29 | Compression = lzma2/ultra64 30 | InternalCompressLevel = ultra64 31 | LZMAUseSeparateProcess = yes 32 | SolidCompression = yes 33 | 34 | // Misc 35 | 36 | AllowNoIcons = yes 37 | AllowRootDirectory = yes 38 | AllowUNCPath = no 39 | ArchitecturesAllowed = x64 40 | ArchitecturesInstallIn64BitMode = x64 41 | CloseApplications = no 42 | DefaultDirName = {tmp} 43 | DefaultGroupName = {#AppTitle} 44 | DisableDirPage = yes 45 | DisableProgramGroupPage = yes 46 | DisableReadyPage = yes 47 | DisableStartupPrompt = yes 48 | DisableWelcomePage = yes 49 | MinVersion = 6.1sp1 50 | RestartApplications = no 51 | ShowLanguageDialog = auto 52 | Uninstallable = no 53 | UsePreviousAppDir = no 54 | UsePreviousGroup = no 55 | UsePreviousLanguage = no 56 | UsePreviousPrivileges = no 57 | UsePreviousSetupType = no 58 | UsePreviousTasks = no 59 | 60 | [Languages] 61 | 62 | Name: "en"; MessagesFile: "lang\en.isl"; LicenseFile: "LICENSE" 63 | Name: "ru"; MessagesFile: "lang\ru.isl"; LicenseFile: "LICENSE" 64 | Name: "ua"; MessagesFile: "lang\ua.isl"; LicenseFile: "LICENSE" 65 | 66 | [Tasks] 67 | 68 | Name: "task_MSVC"; Description: "{cm:Msvcr}" 69 | Name: "task_HOSTS"; Description: "{cm:UnblHosts}" 70 | Name: "task_SSD"; Description: "{cm:Ssdopts}"; Flags: restart unchecked 71 | 72 | [Files] 73 | 74 | Source: "resources\hosts"; DestDir: "{sys}\drivers\etc"; Flags: ignoreversion onlyifdoesntexist; Tasks: task_HOSTS; Permissions: users-modify 75 | Source: "{sys}\drivers\etc\hosts"; DestDir: "{sys}\drivers\etc"; Flags: ignoreversion external onlyifdestfileexists; Tasks: task_HOSTS; Permissions: users-modify 76 | Source: "resources\VCRHyb64.exe"; DestDir: "{tmp}"; Flags: ignoreversion deleteafterinstall; Tasks: task_MSVC; Permissions: users-modify 77 | Source: "resources\VC_redist.x86.exe"; DestDir: "{tmp}"; Flags: ignoreversion deleteafterinstall; Tasks: task_MSVC; Permissions: users-modify 78 | Source: "resources\VC_redist.x64.exe"; DestDir: "{tmp}"; Flags: ignoreversion deleteafterinstall; Tasks: task_MSVC; Permissions: users-modify 79 | 80 | [Run] 81 | 82 | // Microsoft Visual C++ 2005-2008-2010-2012-2013-2015-2022 Redistributable packages 83 | 84 | Filename: "{tmp}\VCRHyb64.exe"; Parameters: "/DelVCAll"; Flags: runascurrentuser waituntilterminated; Tasks: task_MSVC; Check: not IsVerySilent 85 | Filename: "{tmp}\VCRHyb64.exe"; Parameters: "/WithOutVC22"; Flags: runascurrentuser waituntilterminated; Tasks: task_MSVC; Check: not IsVerySilent 86 | Filename: "{tmp}\VC_redist.x86.exe"; Parameters: "/install /passive /norestart"; Flags: runascurrentuser waituntilterminated; Tasks: task_MSVC; Check: not IsVerySilent 87 | Filename: "{tmp}\VC_redist.x64.exe"; Parameters: "/install /passive /norestart"; Flags: runascurrentuser waituntilterminated; Tasks: task_MSVC; Check: not IsVerySilent 88 | Filename: "{tmp}\VCRHyb64.exe"; Parameters: "/S /DelVCAll"; Flags: runascurrentuser waituntilterminated; Tasks: task_MSVC; Check: IsVerySilent 89 | Filename: "{tmp}\VCRHyb64.exe"; Parameters: "/S /WithOutVC22"; Flags: runascurrentuser waituntilterminated; Tasks: task_MSVC; Check: IsVerySilent 90 | Filename: "{tmp}\VC_redist.x86.exe"; Parameters: "/install /quiet /norestart"; Flags: runascurrentuser waituntilterminated; Tasks: task_MSVC; Check: IsVerySilent 91 | Filename: "{tmp}\VC_redist.x64.exe"; Parameters: "/install /quiet /norestart"; Flags: runascurrentuser waituntilterminated; Tasks: task_MSVC; Check: IsVerySilent 92 | 93 | // System settings optimization (USER) 94 | 95 | Filename: "{sys}\reg.exe"; Parameters: "ADD ""HKEY_CURRENT_USER\Control Panel\Desktop"" /v AutoEndTasks /t REG_SZ /d 0 /f"; Flags: runasoriginaluser runhidden waituntilterminated 96 | Filename: "{sys}\reg.exe"; Parameters: "ADD ""HKEY_CURRENT_USER\Control Panel\Desktop"" /v WaitToKillAppTimeout /t REG_SZ /d 30000 /f"; Flags: runasoriginaluser runhidden waituntilterminated 97 | Filename: "{sys}\reg.exe"; Parameters: "ADD ""HKEY_CURRENT_USER\Control Panel\Desktop"" /v HungAppTimeout /t REG_SZ /d 30000 /f"; Flags: runasoriginaluser runhidden waituntilterminated 98 | 99 | // System settings optimization (ADMIN) 100 | 101 | Filename: "{sys}\sc.exe"; Parameters: "config SysMain start= auto"; Flags: runascurrentuser runhidden waituntilterminated 102 | Filename: "{sys}\sc.exe"; Parameters: "start SysMain"; Flags: runascurrentuser runhidden waituntilterminated 103 | 104 | [Registry] 105 | 106 | // System settings optimization for SSD 107 | 108 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Control\FileSystem"; ValueType: dword; ValueName: "DisableDeleteNotification"; ValueData: "0"; Flags: deletevalue; Tasks: task_SSD 109 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Control\FileSystem"; ValueType: dword; ValueName: "NtfsDisable8dot3NameCreation"; ValueData: "1"; Flags: deletevalue; Tasks: task_SSD 110 | 111 | // Network settings optimization 112 | 113 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider"; ValueType: dword; ValueName: "LocalPriority"; ValueData: "4"; Flags: deletevalue 114 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider"; ValueType: dword; ValueName: "HostsPriority"; ValueData: "5"; Flags: deletevalue 115 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider"; ValueType: dword; ValueName: "DnsPriority"; ValueData: "6"; Flags: deletevalue 116 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Services\Tcpip\ServiceProvider"; ValueType: dword; ValueName: "NetbtPriority"; ValueData: "7"; Flags: deletevalue 117 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Services\Dnscache\Parameters"; ValueType: dword; ValueName: "NegativeCacheTime"; ValueData: "300"; Flags: deletevalue 118 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Services\Dnscache\Parameters"; ValueType: dword; ValueName: "NetFailureCacheTime"; ValueData: "30"; Flags: deletevalue 119 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Services\Dnscache\Parameters"; ValueType: dword; ValueName: "NegativeSOACacheTime"; ValueData: "120"; Flags: deletevalue 120 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Services\TCPIP6\Parameters"; ValueType: dword; ValueName: "DisabledComponents"; ValueData: "32"; Flags: deletevalue 121 | 122 | // System settings optimization (ADMIN) 123 | 124 | Root: "HKCU"; Subkey: "Control Panel\Desktop"; ValueType: string; ValueName: "AutoEndTasks"; ValueData: "0"; Flags: deletevalue 125 | Root: "HKCU"; Subkey: "Control Panel\Desktop"; ValueType: string; ValueName: "WaitToKillAppTimeout"; ValueData: "30000"; Flags: deletevalue 126 | Root: "HKCU"; Subkey: "Control Panel\Desktop"; ValueType: string; ValueName: "HungAppTimeout"; ValueData: "30000"; Flags: deletevalue 127 | Root: "HKU"; Subkey: ".DEFAULT\Control Panel\Desktop"; ValueType: string; ValueName: "AutoEndTasks"; ValueData: "0"; Flags: deletevalue 128 | Root: "HKU"; Subkey: ".DEFAULT\Control Panel\Desktop"; ValueType: string; ValueName: "WaitToKillAppTimeout"; ValueData: "30000"; Flags: deletevalue 129 | Root: "HKU"; Subkey: ".DEFAULT\Control Panel\Desktop"; ValueType: string; ValueName: "HungAppTimeout"; ValueData: "30000"; Flags: deletevalue 130 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Control\FileSystem"; ValueType: dword; ValueName: "LongPathsEnabled"; ValueData: "1"; Flags: deletevalue 131 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management"; ValueType: dword; ValueName: "ClearPageFileAtShutdown"; ValueData: "0"; Flags: deletevalue 132 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management"; ValueType: dword; ValueName: "LargeSystemCache"; ValueData: "0"; Flags: deletevalue 133 | Root: "HKLM"; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\PrefetchParameters"; ValueName: "EnablePrefetcher"; ValueData: "0"; Flags: deletevalue; ValueType: dword 134 | 135 | [Code] 136 | 137 | // Silent mode checking 138 | 139 | function IsVerySilent: Boolean; 140 | var 141 | i: Integer; 142 | begin 143 | Result := False; 144 | for i := 1 to ParamCount do 145 | if CompareText(ParamStr(i), '/VERYSILENT') = 0 then 146 | begin 147 | Result := True; 148 | Exit; 149 | end; 150 | end; 151 | 152 | procedure CurPageChanged(CurPageID: Integer); 153 | begin 154 | if CurPageID = wpFinished then 155 | begin 156 | WizardForm.FinishedHeadingLabel.Font.Style := []; 157 | end; 158 | end; 159 | -------------------------------------------------------------------------------- /lang/en.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=Segoe UI 20 | DialogFontSize=9 21 | WelcomeFontName=Segoe UI 22 | WelcomeFontSize=13 23 | TitleFontName=Segoe UI 24 | TitleFontSize=27 25 | CopyrightFontName=Segoe UI 26 | CopyrightFontSize=9 27 | 28 | [Messages] 29 | 30 | ; *** Application titles 31 | SetupAppTitle=Setup 32 | SetupWindowTitle=%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 and click Next. 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=Preparing the system for working with Open Server Panel 187 | SelectTasksDesc=Installing additional system components 188 | SelectTasksLabel2=Select additional components and actions: 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 the system is being prepared. 240 | 241 | ; *** "Setup Completed" wizard page 242 | FinishedHeadingLabel=Completing the [name] Setup Wizard 243 | FinishedLabelNoIcons=[name] 's work on preparing the system according to the requirements of the Open Server Panel has been completed. 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 apply the changes, Setup must restart your computer. Would you like to restart now? 247 | FinishedRestartMessage=To apply the changes, 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 (for all users) 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 | 386 | Msvcr=Install Microsoft Visual C++ 2005-2022 Redistributable Packages 387 | Sysopts=Optimize system settings 388 | Netopts=Optimize network stack settings 389 | Ssdopts=Optimize system settings for SSD 390 | UnblHosts=Allow writing to HOSTS file (for all users) 391 | -------------------------------------------------------------------------------- /lang/ru.isl: -------------------------------------------------------------------------------- 1 | ; *** Inno Setup version 6.1.0+ Russian messages *** 2 | ; 3 | ; Translated from English by Dmitry Kann, yktooo at gmail.com 4 | ; 5 | ; Note: When translating this text, do not add periods (.) to the end of 6 | ; messages that didn't have them already, because on those messages Inno 7 | ; Setup adds the periods automatically (appending a period would result in 8 | ; two periods being displayed). 9 | 10 | [LangOptions] 11 | LanguageName=<0420><0443><0441><0441><043A><0438><0439> 12 | LanguageID=$0419 13 | LanguageCodePage=0 14 | DialogFontName=Segoe UI 15 | DialogFontSize=9 16 | WelcomeFontName=Segoe UI 17 | WelcomeFontSize=13 18 | TitleFontName=Segoe UI 19 | TitleFontSize=27 20 | CopyrightFontName=Segoe UI 21 | CopyrightFontSize=9 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 | HelpTextNote= 41 | 42 | ; *** Startup error messages 43 | LastErrorMessage=%1.%n%nОшибка %2: %3 44 | SetupFileMissing=Файл %1 отсутствует в папке установки. Пожалуйста, устраните проблему или получите новую версию программы. 45 | SetupFileCorrupt=Установочные файлы повреждены. Пожалуйста, получите новую копию программы. 46 | SetupFileCorruptOrWrongVer=Эти установочные файлы повреждены или несовместимы с данной версией программы установки. Пожалуйста, устраните проблему или получите новую копию программы. 47 | InvalidParameter=Командная строка содержит недопустимый параметр:%n%n%1 48 | SetupAlreadyRunning=Программа установки уже запущена. 49 | WindowsVersionNotSupported=Эта программа не поддерживает версию Windows, установленную на этом компьютере. 50 | WindowsServicePackRequired=Эта программа требует %1 Service Pack %2 или более позднюю версию. 51 | NotOnThisPlatform=Эта программа не будет работать в %1. 52 | OnlyOnThisPlatform=Эту программу можно запускать только в %1. 53 | OnlyOnTheseArchitectures=Установка этой программы возможна только в версиях Windows для следующих архитектур процессоров:%n%n%1 54 | WinVersionTooLowError=Эта программа требует %1 версии %2 или выше. 55 | WinVersionTooHighError=Программа не может быть установлена в %1 версии %2 или выше. 56 | AdminPrivilegesRequired=Чтобы установить данную программу, вы должны выполнить вход в систему как Администратор. 57 | PowerUserPrivilegesRequired=Чтобы установить эту программу, вы должны выполнить вход в систему как Администратор или член группы «Опытные пользователи» (Power Users). 58 | SetupAppRunningError=Обнаружен запущенный экземпляр %1.%n%nПожалуйста, закройте все экземпляры приложения, затем нажмите «OK», чтобы продолжить, или «Отмена», чтобы выйти. 59 | UninstallAppRunningError=Деинсталлятор обнаружил запущенный экземпляр %1.%n%nПожалуйста, закройте все экземпляры приложения, затем нажмите «OK», чтобы продолжить, или «Отмена», чтобы выйти. 60 | 61 | ; *** Startup questions 62 | PrivilegesRequiredOverrideTitle=Выбор режима установки 63 | PrivilegesRequiredOverrideInstruction=Выберите режим установки 64 | PrivilegesRequiredOverrideText1=%1 может быть установлена либо для всех пользователей (требуются привилегии администратора), либо только для вас. 65 | PrivilegesRequiredOverrideText2=%1 может быть установлена либо только для вас, либо для всех пользователей (требуются привилегии администратора). 66 | PrivilegesRequiredOverrideAllUsers=Установить для &всех пользователей 67 | PrivilegesRequiredOverrideAllUsersRecommended=Установить для &всех пользователей (рекомендуется) 68 | PrivilegesRequiredOverrideCurrentUser=Установить только для &меня 69 | PrivilegesRequiredOverrideCurrentUserRecommended=Установить только для &меня (рекомендуется) 70 | 71 | ; *** Misc. errors 72 | ErrorCreatingDir=Невозможно создать папку "%1" 73 | ErrorTooManyFilesInDir=Невозможно создать файл в каталоге "%1", так как в нём слишком много файлов 74 | 75 | ; *** Setup common messages 76 | ExitSetupTitle=Выход из программы установки 77 | ExitSetupMessage=Установка не завершена. Если вы выйдете, программа не будет установлена.%n%nВы сможете завершить установку, запустив программу установки позже.%n%nВыйти из программы установки? 78 | AboutSetupMenuItem=&О программе... 79 | AboutSetupTitle=О программе 80 | AboutSetupMessage=%1, версия %2%n%3%n%nСайт %1:%n%4 81 | AboutSetupNote= 82 | TranslatorNote=Russian translation by Dmitry Kann, http://www.dk-soft.org/ 83 | 84 | ; *** Buttons 85 | ButtonBack=< &Назад 86 | ButtonNext=&Далее > 87 | ButtonInstall=&Установить 88 | ButtonOK=OK 89 | ButtonCancel=Отмена 90 | ButtonYes=&Да 91 | ButtonYesToAll=Да для &Всех 92 | ButtonNo=&Нет 93 | ButtonNoToAll=Н&ет для Всех 94 | ButtonFinish=&Завершить 95 | ButtonBrowse=&Обзор... 96 | ButtonWizardBrowse=&Обзор... 97 | ButtonNewFolder=&Создать папку 98 | 99 | ; *** "Select Language" dialog messages 100 | SelectLanguageTitle=Выберите язык установки 101 | SelectLanguageLabel=Выберите язык, который будет использован в процессе установки. 102 | 103 | ; *** Common wizard text 104 | ClickNext=Нажмите «Далее», чтобы продолжить, или «Отмена», чтобы выйти из программы установки. 105 | BeveledLabel= 106 | BrowseDialogTitle=Обзор папок 107 | BrowseDialogLabel=Выберите папку из списка и нажмите «ОК». 108 | NewFolderName=Новая папка 109 | 110 | ; *** "Welcome" wizard page 111 | WelcomeLabel1=Вас приветствует Мастер установки [name] 112 | WelcomeLabel2=Программа установит [name/ver] на ваш компьютер.%n%nРекомендуется закрыть все прочие приложения перед тем, как продолжить. 113 | 114 | ; *** "Password" wizard page 115 | WizardPassword=Пароль 116 | PasswordLabel1=Эта программа защищена паролем. 117 | PasswordLabel3=Пожалуйста, наберите пароль, потом нажмите «Далее». Пароли необходимо вводить с учётом регистра. 118 | PasswordEditLabel=&Пароль: 119 | IncorrectPassword=Введенный вами пароль неверен. Пожалуйста, попробуйте снова. 120 | 121 | ; *** "License Agreement" wizard page 122 | WizardLicense=Лицензионное Соглашение 123 | LicenseLabel=Пожалуйста, прочтите следующую важную информацию перед тем, как продолжить. 124 | LicenseLabel3=Пожалуйста, прочтите следующее Лицензионное Соглашение. Вы должны принять условия этого соглашения перед тем, как продолжить. 125 | LicenseAccepted=Я &принимаю условия соглашения 126 | LicenseNotAccepted=Я &не принимаю условия соглашения 127 | 128 | ; *** "Information" wizard pages 129 | WizardInfoBefore=Информация 130 | InfoBeforeLabel=Пожалуйста, прочитайте следующую важную информацию перед тем, как продолжить. 131 | InfoBeforeClickLabel=Когда вы будете готовы продолжить установку, нажмите «Далее». 132 | WizardInfoAfter=Информация 133 | InfoAfterLabel=Пожалуйста, прочитайте следующую важную информацию перед тем, как продолжить. 134 | InfoAfterClickLabel=Когда вы будете готовы продолжить установку, нажмите «Далее». 135 | 136 | ; *** "User Information" wizard page 137 | WizardUserInfo=Информация о пользователе 138 | UserInfoDesc=Пожалуйста, введите данные о себе. 139 | UserInfoName=&Имя и фамилия пользователя: 140 | UserInfoOrg=&Организация: 141 | UserInfoSerial=&Серийный номер: 142 | UserInfoNameRequired=Вы должны ввести имя. 143 | 144 | ; *** "Select Destination Location" wizard page 145 | WizardSelectDir=Выбор папки установки 146 | SelectDirDesc=В какую папку вы хотите установить [name]? 147 | SelectDirLabel3=Программа установит [name] в следующую папку. 148 | SelectDirBrowseLabel=Нажмите «Далее», чтобы продолжить. Если вы хотите выбрать другую папку, нажмите «Обзор». 149 | DiskSpaceGBLabel=Требуется как минимум [gb] Гб свободного дискового пространства. 150 | DiskSpaceMBLabel=Требуется как минимум [mb] Мб свободного дискового пространства. 151 | CannotInstallToNetworkDrive=Установка не может производиться на сетевой диск. 152 | CannotInstallToUNCPath=Установка не может производиться в папку по UNC-пути. 153 | InvalidPath=Вы должны указать полный путь с буквой диска; например:%n%nC:\APP%n%nили в форме UNC:%n%n\\имя_сервера\имя_ресурса 154 | InvalidDrive=Выбранный вами диск или сетевой путь не существует или недоступен. Пожалуйста, выберите другой. 155 | DiskSpaceWarningTitle=Недостаточно места на диске 156 | DiskSpaceWarning=Установка требует не менее %1 Кб свободного места, а на выбранном вами диске доступно только %2 Кб.%n%nВы желаете тем не менее продолжить установку? 157 | DirNameTooLong=Имя папки или путь к ней превышают допустимую длину. 158 | InvalidDirName=Указанное имя папки недопустимо. 159 | BadDirName32=Имя папки не может содержать символов: %n%n%1 160 | DirExistsTitle=Папка существует 161 | DirExists=Папка%n%n%1%n%nуже существует. Всё равно установить в эту папку? 162 | DirDoesntExistTitle=Папка не существует 163 | DirDoesntExist=Папка%n%n%1%n%nне существует. Вы хотите создать её? 164 | 165 | ; *** "Select Components" wizard page 166 | WizardSelectComponents=Выбор компонентов 167 | SelectComponentsDesc=Какие компоненты должны быть установлены? 168 | SelectComponentsLabel2=Выберите компоненты, которые вы хотите установить, и нажмите «Далее». 169 | FullInstallation=Полная установка 170 | ; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) 171 | CompactInstallation=Компактная установка 172 | CustomInstallation=Выборочная установка 173 | NoUninstallWarningTitle=Установленные компоненты 174 | NoUninstallWarning=Программа установки обнаружила, что следующие компоненты уже установлены на вашем компьютере:%n%n%1%n%nОтмена выбора этих компонентов не удалит их.%n%nПродолжить? 175 | ComponentSize1=%1 Кб 176 | ComponentSize2=%1 Мб 177 | ComponentsDiskSpaceGBLabel=Текущий выбор требует не менее [gb] Гб на диске. 178 | ComponentsDiskSpaceMBLabel=Текущий выбор требует не менее [mb] Мб на диске. 179 | 180 | ; *** "Select Additional Tasks" wizard page 181 | WizardSelectTasks=Подготовка системы к работе с Open Server Panel 182 | SelectTasksDesc=Установка дополнительных системных компонентов 183 | SelectTasksLabel2=Выберите дополнительные компоненты и действия: 184 | 185 | ; *** "Select Start Menu Folder" wizard page 186 | WizardSelectProgramGroup=Выберите папку в меню «Пуск» 187 | SelectStartMenuFolderDesc=Где программа установки должна создать ярлыки? 188 | SelectStartMenuFolderLabel3=Программа создаст ярлыки в следующей папке меню «Пуск». 189 | SelectStartMenuFolderBrowseLabel=Нажмите «Далее», чтобы продолжить. Если вы хотите выбрать другую папку, нажмите «Обзор». 190 | MustEnterGroupName=Вы должны ввести имя папки. 191 | GroupNameTooLong=Имя папки группы или путь к ней превышают допустимую длину. 192 | InvalidGroupName=Указанное имя папки недопустимо. 193 | BadGroupName=Имя папки не может содержать символов:%n%n%1 194 | NoProgramGroupCheck2=&Не создавать папку в меню «Пуск» 195 | 196 | ; *** "Ready to Install" wizard page 197 | WizardReady=Всё готово к установке 198 | ReadyLabel1=Программа установки готова начать установку [name] на ваш компьютер. 199 | ReadyLabel2a=Нажмите «Установить», чтобы продолжить, или «Назад», если вы хотите просмотреть или изменить опции установки. 200 | ReadyLabel2b=Нажмите «Установить», чтобы продолжить. 201 | ReadyMemoUserInfo=Информация о пользователе: 202 | ReadyMemoDir=Папка установки: 203 | ReadyMemoType=Тип установки: 204 | ReadyMemoComponents=Выбранные компоненты: 205 | ReadyMemoGroup=Папка в меню «Пуск»: 206 | ReadyMemoTasks=Дополнительные задачи: 207 | 208 | ; *** TDownloadWizardPage wizard page and DownloadTemporaryFile 209 | DownloadingLabel=Загрузка дополнительных файлов... 210 | ButtonStopDownload=&Прервать загрузку 211 | StopDownload=Вы действительно хотите прекратить загрузку? 212 | ErrorDownloadAborted=Загрузка прервана 213 | ErrorDownloadFailed=Ошибка загрузки: %1 %2 214 | ErrorDownloadSizeFailed=Ошибка получения размера: %1 %2 215 | ErrorFileHash1=Ошибка хэша файла: %1 216 | ErrorFileHash2=Неверный хэш файла: ожидался %1, получен %2 217 | ErrorProgress=Ошибка выполнения: %1 из %2 218 | ErrorFileSize=Неверный размер файла: ожидался %1, получен %2 219 | 220 | ; *** "Preparing to Install" wizard page 221 | WizardPreparing=Подготовка к установке 222 | PreparingDesc=Программа установки подготавливается к установке [name] на ваш компьютер. 223 | PreviousInstallNotCompleted=Установка или удаление предыдущей программы не были завершены. Вам потребуется перезагрузить компьютер, чтобы завершить ту установку.%n%nПосле перезагрузки запустите вновь Программу установки, чтобы завершить установку [name]. 224 | CannotContinue=Невозможно продолжить установку. Нажмите «Отмена» для выхода из программы. 225 | ApplicationsFound=Следующие приложения используют файлы, которые программа установки должна обновить. Рекомендуется позволить программе установки автоматически закрыть эти приложения. 226 | ApplicationsFound2=Следующие приложения используют файлы, которые программа установки должна обновить. Рекомендуется позволить программе установки автоматически закрыть эти приложения. Когда установка будет завершена, программа установки попытается вновь запустить их. 227 | CloseApplications=&Автоматически закрыть эти приложения 228 | DontCloseApplications=&Не закрывать эти приложения 229 | ErrorCloseApplications=Программе установки не удалось автоматически закрыть все приложения. Рекомендуется закрыть все приложения, которые используют подлежащие обновлению файлы, прежде чем продолжить установку. 230 | PrepareToInstallNeedsRestart=Программе установки требуется перезагрузить ваш компьютер. Когда перезагрузка завершится, пожалуйста, запустите программу установки вновь, чтобы завершить процесс установки [name].%n%nПроизвести перезагрузку сейчас? 231 | 232 | ; *** "Installing" wizard page 233 | WizardInstalling=Установка... 234 | InstallingLabel=Пожалуйста, подождите, пока выполняется подготовка системы. 235 | 236 | ; *** "Setup Completed" wizard page 237 | FinishedHeadingLabel=Завершение работы [name] 238 | FinishedLabelNoIcons=Работа [name] по подготовке системы согласно требований Open Server Panel завершена. 239 | FinishedLabel=Программа [name] установлена на ваш компьютер. Приложение можно запустить с помощью соответствующего значка. 240 | ClickFinish=Нажмите «Завершить», чтобы выйти из программы. 241 | FinishedRestartLabel=Для применения изменений требуется перезагрузить компьютер. Произвести перезагрузку сейчас? 242 | FinishedRestartMessage=Для применения изменений требуется перезагрузить компьютер.%n%nПроизвести перезагрузку сейчас? 243 | ShowReadmeCheck=Я хочу просмотреть файл README 244 | YesRadio=&Да, перезагрузить компьютер сейчас 245 | NoRadio=&Нет, я произведу перезагрузку позже 246 | ; used for example as 'Run MyProg.exe' 247 | RunEntryExec=Запустить %1 248 | ; used for example as 'View Readme.txt' 249 | RunEntryShellExec=Просмотреть %1 250 | 251 | ; *** "Setup Needs the Next Disk" stuff 252 | ChangeDiskTitle=Необходимо вставить следующий диск 253 | SelectDiskLabel2=Пожалуйста, вставьте диск %1 и нажмите «OK».%n%nЕсли файлы этого диска могут быть найдены в папке, отличающейся от показанной ниже, введите правильный путь или нажмите «Обзор». 254 | PathLabel=&Путь: 255 | FileNotInDir2=Файл "%1" не найден в "%2". Пожалуйста, вставьте правильный диск или выберите другую папку. 256 | SelectDirectoryLabel=Пожалуйста, укажите путь к следующему диску. 257 | 258 | ; *** Installation phase messages 259 | SetupAborted=Установка не была завершена.%n%nПожалуйста, устраните проблему и запустите установку снова. 260 | AbortRetryIgnoreSelectAction=Выберите действие 261 | AbortRetryIgnoreRetry=Попробовать &снова 262 | AbortRetryIgnoreIgnore=&Игнорировать ошибку и продолжить 263 | AbortRetryIgnoreCancel=Отменить установку 264 | 265 | ; *** Installation status messages 266 | StatusClosingApplications=Закрытие приложений... 267 | StatusCreateDirs=Создание папок... 268 | StatusExtractFiles=Распаковка файлов... 269 | StatusCreateIcons=Создание ярлыков программы... 270 | StatusCreateIniEntries=Создание INI-файлов... 271 | StatusCreateRegistryEntries=Создание записей реестра... 272 | StatusRegisterFiles=Регистрация файлов... 273 | StatusSavingUninstall=Сохранение информации для деинсталляции... 274 | StatusRunProgram=Завершение установки... 275 | StatusRestartingApplications=Перезапуск приложений... 276 | StatusRollback=Откат изменений... 277 | 278 | ; *** Misc. errors 279 | ErrorInternal2=Внутренняя ошибка: %1 280 | ErrorFunctionFailedNoCode=%1: сбой 281 | ErrorFunctionFailed=%1: сбой; код %2 282 | ErrorFunctionFailedWithMessage=%1: сбой; код %2.%n%3 283 | ErrorExecutingProgram=Невозможно выполнить файл:%n%1 284 | 285 | ; *** Registry errors 286 | ErrorRegOpenKey=Ошибка открытия ключа реестра:%n%1\%2 287 | ErrorRegCreateKey=Ошибка создания ключа реестра:%n%1\%2 288 | ErrorRegWriteKey=Ошибка записи в ключ реестра:%n%1\%2 289 | 290 | ; *** INI errors 291 | ErrorIniEntry=Ошибка создания записи в INI-файле "%1". 292 | 293 | ; *** File copying errors 294 | FileAbortRetryIgnoreSkipNotRecommended=&Пропустить этот файл (не рекомендуется) 295 | FileAbortRetryIgnoreIgnoreNotRecommended=&Игнорировать ошибку и продолжить (не рекомендуется) 296 | SourceIsCorrupted=Исходный файл поврежден 297 | SourceDoesntExist=Исходный файл "%1" не существует 298 | ExistingFileReadOnly2=Невозможно заменить существующий файл, так как он помечен как «файл только для чтения». 299 | ExistingFileReadOnlyRetry=&Удалить атрибут «только для чтения» и повторить попытку 300 | ExistingFileReadOnlyKeepExisting=&Оставить файл на месте 301 | ErrorReadingExistingDest=Произошла ошибка при попытке чтения существующего файла: 302 | FileExistsSelectAction=Выберите действие 303 | FileExists2=Файл уже существует. 304 | FileExistsOverwriteExisting=&Заменить существующий файл 305 | FileExistsKeepExisting=&Сохранить существующий файл 306 | FileExistsOverwriteOrKeepAll=&Повторить действие для всех последующих конфликтов 307 | ExistingFileNewerSelectAction=Выберите действие 308 | ExistingFileNewer2=Существующий файл более новый, чем устанавливаемый. 309 | ExistingFileNewerOverwriteExisting=&Заменить существующий файл 310 | ExistingFileNewerKeepExisting=&Сохранить существующий файл (рекомендуется) 311 | ExistingFileNewerOverwriteOrKeepAll=&Повторить действие для всех последующих конфликтов 312 | ErrorChangingAttr=Произошла ошибка при попытке изменения атрибутов существующего файла: 313 | ErrorCreatingTemp=Произошла ошибка при попытке создания файла в папке назначения: 314 | ErrorReadingSource=Произошла ошибка при попытке чтения исходного файла: 315 | ErrorCopying=Произошла ошибка при попытке копирования файла: 316 | ErrorReplacingExistingFile=Произошла ошибка при попытке замены существующего файла: 317 | ErrorRestartReplace=Ошибка RestartReplace: 318 | ErrorRenamingTemp=Произошла ошибка при попытке переименования файла в папке назначения: 319 | ErrorRegisterServer=Невозможно зарегистрировать DLL/OCX: %1 320 | ErrorRegSvr32Failed=Ошибка при выполнении RegSvr32, код возврата %1 321 | ErrorRegisterTypeLib=Невозможно зарегистрировать библиотеку типов (Type Library): %1 322 | 323 | ; *** Uninstall display name markings 324 | UninstallDisplayNameMark=%1 (%2) 325 | UninstallDisplayNameMarks=%1 (%2, %3) 326 | UninstallDisplayNameMark32Bit=32 бита 327 | UninstallDisplayNameMark64Bit=64 бита 328 | UninstallDisplayNameMarkAllUsers=Все пользователи 329 | UninstallDisplayNameMarkCurrentUser=Текущий пользователь 330 | 331 | ; *** Post-installation errors 332 | ErrorOpeningReadme=Произошла ошибка при попытке открытия файла README. 333 | ErrorRestartingComputer=Программе установки не удалось перезапустить компьютер. Пожалуйста, выполните это самостоятельно. 334 | 335 | ; *** Uninstaller messages 336 | UninstallNotFound=Файл "%1" не существует, деинсталляция невозможна. 337 | UninstallOpenError=Невозможно открыть файл "%1". Деинсталляция невозможна 338 | UninstallUnsupportedVer=Файл протокола для деинсталляции "%1" не распознан данной версией программы-деинсталлятора. Деинсталляция невозможна 339 | UninstallUnknownEntry=Встретился неизвестный пункт (%1) в файле протокола для деинсталляции 340 | ConfirmUninstall=Вы действительно хотите удалить %1 и все компоненты программы? 341 | UninstallOnlyOnWin64=Данную программу возможно деинсталлировать только в среде 64-битной Windows. 342 | OnlyAdminCanUninstall=Эта программа может быть деинсталлирована только пользователем с административными привилегиями. 343 | UninstallStatusLabel=Пожалуйста, подождите, пока %1 будет удалена с вашего компьютера. 344 | UninstalledAll=Программа %1 была полностью удалена с вашего компьютера. 345 | UninstalledMost=Деинсталляция %1 завершена.%n%nЧасть элементов не удалось удалить. Вы можете удалить их самостоятельно. 346 | UninstalledAndNeedsRestart=Для завершения деинсталляции %1 необходимо произвести перезагрузку вашего компьютера.%n%nВыполнить перезагрузку сейчас? 347 | UninstallDataCorrupted=Файл "%1" поврежден. Деинсталляция невозможна 348 | 349 | ; *** Uninstallation phase messages 350 | ConfirmDeleteSharedFileTitle=Удалить совместно используемый файл? 351 | ConfirmDeleteSharedFile2=Система указывает, что следующий совместно используемый файл больше не используется никакими другими приложениями. Подтверждаете удаление файла?%n%nЕсли какие-либо программы всё еще используют этот файл, и он будет удалён, они не смогут работать правильно. Если Вы не уверены, выберите «Нет». Оставленный файл не навредит вашей системе. 352 | SharedFileNameLabel=Имя файла: 353 | SharedFileLocationLabel=Расположение: 354 | WizardUninstalling=Состояние деинсталляции 355 | StatusUninstalling=Деинсталляция %1... 356 | 357 | 358 | ; *** Shutdown block reasons 359 | ShutdownBlockReasonInstallingApp=Установка %1. 360 | ShutdownBlockReasonUninstallingApp=Деинсталляция %1. 361 | 362 | ; The custom messages below aren't used by Setup itself, but if you make 363 | ; use of them in your scripts, you'll want to translate them. 364 | 365 | [CustomMessages] 366 | 367 | NameAndVersion=%1, версия %2 368 | AdditionalIcons=Дополнительные значки: 369 | CreateDesktopIcon=Создать значок на &Рабочем столе (для всех пользователей) 370 | CreateQuickLaunchIcon=Создать значок в &Панели быстрого запуска 371 | ProgramOnTheWeb=Сайт %1 в Интернете 372 | UninstallProgram=Деинсталлировать %1 373 | LaunchProgram=Запустить %1 374 | AssocFileExtension=Св&язать %1 с файлами, имеющими расширение %2 375 | AssocingFileExtension=Связывание %1 с файлами %2... 376 | AutoStartProgramGroupDescription=Автозапуск: 377 | AutoStartProgram=Автоматически запускать %1 378 | AddonHostProgramNotFound=%1 не найден в указанной вами папке.%n%nВы всё равно хотите продолжить? 379 | 380 | Msvcr=Установить Microsoft Visual C++ 2005-2022 Redistributable Packages 381 | Sysopts=Оптимизировать настройки системы 382 | Netopts=Оптимизировать настройки сетевого стека 383 | Ssdopts=Оптимизировать настройки системы для SSD 384 | UnblHosts=Разрешить запись в файл HOSTS (для всех пользователей) 385 | -------------------------------------------------------------------------------- /lang/ua.isl: -------------------------------------------------------------------------------- 1 | ; *** Inno Setup version 6.1.0+ Ukrainian messages *** 2 | ; Author: Dmytro Onyshchuk 3 | ; E-Mail: mrlols3@gmail.com 4 | ; Please report all spelling/grammar errors, and observations. 5 | ; Version 2020.08.04 6 | 7 | ; *** Український переклад Inno Setup для версії 6.1.0 та вище*** 8 | ; Автор перекладу: Дмитро Онищук 9 | ; E-Mail: mrlols3@gmail.com 10 | ; Будь ласка, повідомляйте про всі знайдені помилки та зауваження. 11 | ; Версія перекладу 2020.08.04 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=<0423><043A><0440><0430><0457><043D><0441><044C><043A><0430> 17 | LanguageID=$0422 18 | LanguageCodePage=0 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=Segoe UI 22 | DialogFontSize=9 23 | WelcomeFontName=Segoe UI 24 | WelcomeFontSize=13 25 | TitleFontName=Segoe UI 26 | TitleFontSize=27 27 | CopyrightFontName=Segoe UI 28 | CopyrightFontSize=9 29 | 30 | [Messages] 31 | 32 | ; *** Заголовки програми 33 | SetupAppTitle=Встановлення 34 | SetupWindowTitle=%1 35 | UninstallAppTitle=Видалення 36 | UninstallAppFullTitle=Видалення — %1 37 | 38 | ; *** Misc. common 39 | InformationTitle=Інформація 40 | ConfirmTitle=Підтвердження 41 | ErrorTitle=Помилка 42 | 43 | ; *** SetupLdr messages 44 | SetupLdrStartupMessage=Ця програма встановить %1 на ваш комп'ютер, бажаєте продовжити? 45 | LdrCannotCreateTemp=Неможливо створити тимчасовий файл. Встановлення перервано 46 | LdrCannotExecTemp=Неможливо виконати файл в тимчасовій папці. Встановлення перервано 47 | HelpTextNote= 48 | 49 | ; *** Startup error messages 50 | LastErrorMessage=%1.%n%nПомилка %2: %3 51 | SetupFileMissing=Файл %1 відсутній в папці встановлення. Будь ласка, виправте цю помилку або отримайте нову копію програми. 52 | SetupFileCorrupt=Файли встановлення пошкоджені. Будь ласка, отримайте нову копію програми. 53 | SetupFileCorruptOrWrongVer=Файли встановлення пошкоджені або несумісні з цією версією програми встановлення. Будь ласка, виправте цю помилку або отримайте нову копію програми. 54 | InvalidParameter=Командний рядок містить недопустимий параметр:%n%n%1 55 | SetupAlreadyRunning=Програма встановлення вже запущена. 56 | WindowsVersionNotSupported=Ця програма не підтримує версію Windows, встановлену на цьому комп'ютері. 57 | WindowsServicePackRequired=Ця програма вимагає %1 Service Pack %2 або більш пізню версію. 58 | NotOnThisPlatform=Ця програма не буде працювати під %1. 59 | OnlyOnThisPlatform=Ця програма повинна бути відкрита під %1. 60 | OnlyOnTheseArchitectures=Ця програма може бути встановлена лише на комп'ютерах під управлінням Windows для наступних архітектур процесорів:%n%n%1 61 | WinVersionTooLowError=Ця програма вимагає %1 версії %2 або більш пізню версію. 62 | WinVersionTooHighError=Ця програма не може бути встановлена на %1 версії %2 або більш пізню версію. 63 | AdminPrivilegesRequired=Щоб встановити цю програму ви повинні увійти до системи як адміністратор. 64 | PowerUserPrivilegesRequired=Щоб встановити цю програму ви повинні увійти до системи як адміністратор або як член групи «Досвідчені користувачі». 65 | SetupAppRunningError=Виявлено, що %1 вже відкрита.%n%nБудь ласка, закрийте всі копії програми та натисніть «OK» для продовження, або «Скасувати» для виходу. 66 | UninstallAppRunningError=Виявлено, що %1 вже відкрита.%n%nБудь ласка, закрийте всі копії програми та натисніть «OK» для продовження, або «Скасувати» для виходу. 67 | 68 | ; *** Startup questions 69 | PrivilegesRequiredOverrideTitle=Вибір режиму встановлення 70 | PrivilegesRequiredOverrideInstruction=Виберіть режим встановлення 71 | PrivilegesRequiredOverrideText1=%1 може бути встановлено для всіх користувачів (потребує права адміністратора), або тільки для вас. 72 | PrivilegesRequiredOverrideText2=%1 може бути встановлено тільки для вас, або для всіх користувачів (потребує права адміністратора). 73 | PrivilegesRequiredOverrideAllUsers=Встановити для &всіх користувачів 74 | PrivilegesRequiredOverrideAllUsersRecommended=Встановити для &всіх користувачів (рекомендується) 75 | PrivilegesRequiredOverrideCurrentUser=Встановити тільки для мене 76 | PrivilegesRequiredOverrideCurrentUserRecommended=Встановити тільки для &мене (рекомендується) 77 | 78 | ; *** Різні помилки 79 | ErrorCreatingDir=Програмі встановлення не вдалося створити папку "%1" 80 | ErrorTooManyFilesInDir=Програмі встановлення не вдалося створити файл в папці "%1", тому що в ньому занадто багато файлів 81 | 82 | ; *** Спільні повідомлення програми 83 | ExitSetupTitle=Вихід з програми встановлення 84 | ExitSetupMessage=Встановлення не завершено. Якщо ви вийдете зараз, програму не буде встановлено.%n%nВи можете відкрити програму встановлення в іншим часом.%n%nВийти з програми встановлення? 85 | AboutSetupMenuItem=&Про програму встановлення... 86 | AboutSetupTitle=Про програму встановлення 87 | AboutSetupMessage=%1 версія %2%n%3%n%n%1 домашня сторінка:%n%4 88 | AboutSetupNote= 89 | TranslatorNote=Ukrainian translation by Dmytro Onyshchuk 90 | 91 | ; *** Кнопки 92 | ButtonBack=< &Назад 93 | ButtonNext=&Далі > 94 | ButtonInstall=&Встановити 95 | ButtonOK=OK 96 | ButtonCancel=Скасувати 97 | ButtonYes=&Так 98 | ButtonYesToAll=Так для &Всіх 99 | ButtonNo=&Ні 100 | ButtonNoToAll=Н&і для Всіх 101 | ButtonFinish=&Готово 102 | ButtonBrowse=&Огляд... 103 | ButtonWizardBrowse=О&гляд... 104 | ButtonNewFolder=&Створити папку 105 | 106 | ; *** Діалогове повідомлення "Вибір мови" 107 | SelectLanguageTitle=Виберіть мову встановлення 108 | SelectLanguageLabel=Виберіть мову, яка буде використовуватися під час встановлення. 109 | 110 | ; *** Спільний тест програми 111 | ClickNext=Натисніть «Далі», щоб продовжити, або «Скасувати» для виходу з програми встановлення. 112 | BeveledLabel= 113 | BrowseDialogTitle=Огляд папок 114 | BrowseDialogLabel=Виберіть папку зі списку та натисніть «ОК». 115 | NewFolderName=Нова папка 116 | 117 | ; *** Сторінка "Привітання" 118 | WelcomeLabel1=Ласкаво просимо до програми встановлення [name]. 119 | WelcomeLabel2=Ця програма встановить [name/ver] на ваш комп’ютер.%n%nРекомендується закрити всі інші програми перед продовженням. 120 | 121 | ; *** Сторінка "Пароль" 122 | WizardPassword=Пароль 123 | PasswordLabel1=Ця програма встановлення захищена паролем. 124 | PasswordLabel3=Будь ласка, введіть пароль та натисніть «Далі», щоб продовжити. Пароль чутливий до регістру. 125 | PasswordEditLabel=&Пароль: 126 | IncorrectPassword=Ви ввели неправильний пароль. Будь ласка, спробуйте ще раз. 127 | 128 | ; *** Сторінка "Ліцензійна угода" 129 | WizardLicense=Ліцензійна угода 130 | LicenseLabel=Будь ласка, прочитайте ліцензійну угоду. 131 | LicenseLabel3=Будь ласка, прочитайте ліцензійну угоду. Ви повинні прийняти умови цієї угоди, перш ніж продовжити встановлення. 132 | LicenseAccepted=Я &приймаю умови угоди 133 | LicenseNotAccepted=Я &не приймаю умови угоди 134 | 135 | ; *** Сторінка "Інформація" 136 | WizardInfoBefore=Інформація 137 | InfoBeforeLabel=Будь ласка, прочитайте наступну важливу інформацію, перш ніж продовжити. 138 | InfoBeforeClickLabel=Якщо ви готові продовжити встановлення, натисніть «Далі». 139 | WizardInfoAfter=Інформація 140 | InfoAfterLabel=Будь ласка, прочитайте наступну важливу інформацію, перш ніж продовжити. 141 | InfoAfterClickLabel=Якщо ви готові продовжити встановлення, натисніть «Далі». 142 | 143 | ; *** Сторінка "Інформація про користувача" 144 | WizardUserInfo=Інформація про користувача 145 | UserInfoDesc=Будь ласка, введіть дані про себе. 146 | UserInfoName=&Ім’я користувача: 147 | UserInfoOrg=&Організація: 148 | UserInfoSerial=&Серійний номер: 149 | UserInfoNameRequired=Ви повинні ввести ім'я. 150 | 151 | ; *** Сторінка "Вибір шляху встановлення" 152 | WizardSelectDir=Вибір шляху встановлення 153 | SelectDirDesc=Куди ви бажаєте встановити [name]? 154 | SelectDirLabel3=Програма встановить [name] у наступну папку. 155 | SelectDirBrowseLabel=Натисніть «Далі», щоб продовжити. Якщо ви бажаєте вибрати іншу папку, натисніть «Огляд». 156 | DiskSpaceGBLabel=Необхідно як мінімум [gb] Гб вільного дискового простору. 157 | DiskSpaceMBLabel=Необхідно як мінімум [mb] Mб вільного дискового простору. 158 | CannotInstallToNetworkDrive=Встановлення не може проводитися на мережевий диск. 159 | CannotInstallToUNCPath=Встановлення не може проводитися по мережевому шляху. 160 | InvalidPath=Ви повинні вказати повний шлях з буквою диску, наприклад:%n%nC:\APP%n%nабо в форматі UNC:%n%n\\сервер\ресурс 161 | InvalidDrive=Обраний Вами диск чи мережевий шлях не існує, або не доступний. Будь ласка, виберіть інший. 162 | DiskSpaceWarningTitle=Недостатньо дискового простору 163 | DiskSpaceWarning=Для встановлення необхідно як мінімум %1 Кб вільного простору, а на вибраному диску доступно лише %2 Кб.%n%nВи все одно бажаєте продовжити? 164 | DirNameTooLong=Ім'я папки або шлях до неї перевищують допустиму довжину. 165 | InvalidDirName=Вказане ім’я папки недопустиме. 166 | BadDirName32=Ім'я папки не може включати наступні символи:%n%n%1 167 | DirExistsTitle=Папка існує 168 | DirExists=Папка:%n%n%1%n%nвже існує. Ви все одно бажаєте встановити в цю папку? 169 | DirDoesntExistTitle=Папка не існує 170 | DirDoesntExist=Папка:%n%n%1%n%nне існує. Ви бажаєте створити її? 171 | 172 | ; *** Сторінка "Вибір компонентів" 173 | WizardSelectComponents=Вибір компонентів 174 | SelectComponentsDesc=Які компоненти ви бажаєте встановити? 175 | SelectComponentsLabel2=Виберіть компоненти які ви бажаєте встановити та натисніть «Далі». 176 | FullInstallation=Повне встановлення 177 | ; if possible don't translate 'Compact' as 'Minimal' (I mean 'Minimal' in your language) 178 | CompactInstallation=Компактне встановлення 179 | CustomInstallation=Вибіркове встановлення 180 | NoUninstallWarningTitle=Компоненти існують 181 | NoUninstallWarning=Виявлено, що наступні компоненти вже встановленні на вашому комп’ютері:%n%n%1%n%nВідміна вибору цих компонентів не видалить їх.%n%nВи бажаєте продовжити? 182 | ComponentSize1=%1 Kб 183 | ComponentSize2=%1 Mб 184 | ComponentsDiskSpaceGBLabel=Даний вибір вимагає як мінімум [gb] Гб дискового простору. 185 | ComponentsDiskSpaceMBLabel=Даний вибір вимагає як мінімум [mb] Mб дискового простору. 186 | 187 | ; *** Сторінка "Вибір додаткових завдань" 188 | WizardSelectTasks=Підготовка системи до роботи з Open Server Panel 189 | SelectTasksDesc=Встановлення додаткових системних компонентів 190 | SelectTasksLabel2=Виберіть додаткові компоненти та дії: 191 | 192 | ; *** Сторінка "Вибір папки в меню «Пуск»" 193 | WizardSelectProgramGroup=Вибір папки в меню «Пуск» 194 | SelectStartMenuFolderDesc=Де ви бажаєте створити ярлики? 195 | SelectStartMenuFolderLabel3=Програма встановлення створить ярлики у наступній папці меню «Пуск». 196 | SelectStartMenuFolderBrowseLabel=Натисніть «Далі», щоб продовжити. Якщо ви бажаєте вибрати іншу папку, натисніть «Огляд». 197 | MustEnterGroupName=Ви повинні ввести ім'я папки. 198 | GroupNameTooLong=Ім’я папки або шлях до неї перевищують допустиму довжину. 199 | InvalidGroupName=Вказане ім’я папки недопустиме. 200 | BadGroupName=Ім'я папки не може включати наступні символи:%n%n%1 201 | NoProgramGroupCheck2=&Не створювати папку в меню «Пуск» 202 | 203 | ; *** Сторінка "Усе готово до встановлення" 204 | WizardReady=Усе готово до встановлення 205 | ReadyLabel1=Програма готова розпочати встановлення [name] на ваш комп’ютер. 206 | ReadyLabel2a=Натисніть «Встановити» для продовження встановлення, або «Назад», якщо ви бажаєте переглянути або змінити налаштування встановлення. 207 | ReadyLabel2b=Натисніть «Встановити» для продовження. 208 | ReadyMemoUserInfo=Дані про користувача: 209 | ReadyMemoDir=Шлях встановлення: 210 | ReadyMemoType=Тип встановлення: 211 | ReadyMemoComponents=Вибрані компоненти: 212 | ReadyMemoGroup=Папка в меню «Пуск»: 213 | ReadyMemoTasks=Додаткові завдання: 214 | 215 | ; *** TDownloadWizardPage wizard page and DownloadTemporaryFile 216 | DownloadingLabel=Завантаження додаткових файлів... 217 | ButtonStopDownload=&Перервати завантаження 218 | StopDownload=Ви дійсно бажаєте перервати завантаження? 219 | ErrorDownloadAborted=Завантаження перервано 220 | ErrorDownloadFailed=Помилка завантаження: %1 %2 221 | ErrorDownloadSizeFailed=Помилка отримання розміру: %1 %2 222 | ErrorFileHash1=Помилка хешу файлу: %1 223 | ErrorFileHash2=Невірний хеш файлу: очікувався %1, отриманий %2 224 | ErrorProgress=Помилка виконання: %1 з %2 225 | ErrorFileSize=Невірний розмір файлу: очікувався %1, отриманий %2 226 | 227 | ; *** Сторінка "Підготовка до встановлення" 228 | WizardPreparing=Підготовка до встановлення 229 | PreparingDesc=Програма встановлення готується до встановлення [name] на ваш комп’ютер. 230 | PreviousInstallNotCompleted=Встановлення або видалення попередньої програми не було завершено. Вам потрібно перезавантажити ваш комп’ютер для завершення минулого встановлення.%n%nПісля перезавантаження відкрийте програму встановлення знову, щоб завершити встановлення [name]. 231 | CannotContinue=Встановлення неможливо продовжити. Будь ласка, натисніть «Скасувати» для виходу. 232 | ApplicationsFound=Наступні програми використовують файли, які повинні бути оновлені програмою встановлення. Рекомендується дозволили програмі встановлення автоматично закрити ці програми. 233 | ApplicationsFound2=Наступні програми використовують файли, які повинні бути оновлені програмою встановлення. Рекомендується дозволили програмі встановлення автоматично закрити ці програми. Після завершення встановлення, програма встановлення спробує знову запустити їх. 234 | CloseApplications=&Автоматично закрити програми 235 | DontCloseApplications=&Не закривати програми 236 | ErrorCloseApplications=Програма встановлення не може автоматично закрити всі програми. Рекомендується закрити всі програми, що використовують файли, які повинні бути оновлені програмою встановлення, перш ніж продовжити. 237 | PrepareToInstallNeedsRestart=Програмі встановлення необхідно перезавантажити ваш ПК. Після перезавантаження ПК, запустіть встановлення знову для завершення встановлення [name]%n%nВи бажаєте перезавантажити зараз? 238 | 239 | ; *** Сторінка "Встановлення" 240 | WizardInstalling=Встановлення 241 | InstallingLabel=Будь ласка, зачекайте, поки виконується підготовка системи. 242 | 243 | ; *** Сторінка "Встановлення завершено" 244 | FinishedHeadingLabel=Завершення роботи [name] 245 | FinishedLabelNoIcons=Робота [name] з підготовки системи згідно з вимогами Open Server Panel завершена. 246 | FinishedLabel=Встановлення [name] на ваш комп’ютер завершено. Встановлені програми можна відкрити за допомогою створених ярликів. 247 | ClickFinish=Натисніть «Готово» для виходу з програми. 248 | FinishedRestartLabel=Для застосування змін необхідно перезавантажити ваш комп’ютер. Перезавантажити комп’ютер зараз? 249 | FinishedRestartMessage=Для застосування змін необхідно перезавантажити ваш комп’ютер.%n%nПерезавантажити комп’ютер зараз? 250 | ShowReadmeCheck=Так, я хочу переглянути файл README 251 | YesRadio=&Так, перезавантажити комп’ютер зараз 252 | NoRadio=&Ні, я перезавантажу комп’ютер пізніше 253 | ; used for example as 'Run MyProg.exe' 254 | RunEntryExec=Відкрити %1 255 | ; used for example as 'View Readme.txt' 256 | RunEntryShellExec=Переглянути %1 257 | 258 | ; *** "Setup Needs the Next Disk" stuff 259 | ChangeDiskTitle=Необхідно вставити наступний диск 260 | SelectDiskLabel2=Будь ласка, вставте диск %1 і натисніть «OK».%n%nЯкщо потрібні файли можуть знаходитися в іншій папці, на відміну від вказаної нижче, введіть правильний шлях або натисніть «Огляд». 261 | PathLabel=&Шлях: 262 | FileNotInDir2=Файл "%1" не знайдений в "%2". Будь ласка, вставте належний диск або вкажіть іншу папку. 263 | SelectDirectoryLabel=Будь ласка, вкажіть шлях до наступного диску. 264 | 265 | ; *** Installation phase messages 266 | SetupAborted=Встановлення не завершено.%n%nБудь ласка, усуньте проблему і відкрийте програму встановлення знову. 267 | AbortRetryIgnoreSelectAction=Виберіть дію 268 | AbortRetryIgnoreRetry=&Спробувати знову 269 | AbortRetryIgnoreIgnore=&Ігнорувати помилку та продовжити 270 | AbortRetryIgnoreCancel=Відмінити встановлення 271 | 272 | ; *** Повідомлення стану встановлення 273 | StatusClosingApplications=Закриття програм... 274 | StatusCreateDirs=Створення папок... 275 | StatusExtractFiles=Розпакування файлів... 276 | StatusCreateIcons=Створення ярликів... 277 | StatusCreateIniEntries=Створення INI записів... 278 | StatusCreateRegistryEntries=Створення записів реєстру... 279 | StatusRegisterFiles=Реєстрація файлів... 280 | StatusSavingUninstall=Збереження інформації для видалення... 281 | StatusRunProgram=Завершення встановлення... 282 | StatusRestartingApplications=Перезапуск програм... 283 | StatusRollback=Скасування змін... 284 | 285 | ; *** Різні помилки 286 | ErrorInternal2=Внутрішня помилка: %1 287 | ErrorFunctionFailedNoCode=%1 збій 288 | ErrorFunctionFailed=%1 збій; код %2 289 | ErrorFunctionFailedWithMessage=%1 збій; код %2.%n%3 290 | ErrorExecutingProgram=Неможливо виконати файл:%n%1 291 | 292 | ; *** Помилки реєстру 293 | ErrorRegOpenKey=Помилка відкриття ключа реєстру:%n%1\%2 294 | ErrorRegCreateKey=Помилка створення ключа реєстру:%n%1\%2 295 | ErrorRegWriteKey=Помилка запису в ключ реєстру:%n%1\%2 296 | 297 | ; *** Помилки INI 298 | ErrorIniEntry=Помилка при створенні запису в INI-файлі "%1". 299 | 300 | ; *** Помилки копіювання файлів 301 | FileAbortRetryIgnoreSkipNotRecommended=&Пропустити файл (не рекомендується) 302 | FileAbortRetryIgnoreIgnoreNotRecommended=&Ігнорувати помилку та продовжити (не рекомендується) 303 | SourceIsCorrupted=Вихідний файл пошкоджений 304 | SourceDoesntExist=Вихідний файл "%1" не існує 305 | ExistingFileReadOnly2=Неможливо замінити існуючий файл, оскільки він позначений лише для читання. 306 | ExistingFileReadOnlyRetry=&Видалити атрибут "лише читання" та спробувати знову 307 | ExistingFileReadOnlyKeepExisting=&Залишити існуючий файл 308 | ErrorReadingExistingDest=Виникла помилка при спробі читання існуючого файлу: 309 | FileExistsSelectAction=Виберіть дію 310 | FileExists2=Файл вже існує. 311 | FileExistsOverwriteExisting=&Замінити існуючий файл 312 | FileExistsKeepExisting=&Зберегти існуючий файл 313 | FileExistsOverwriteOrKeepAll=&Повторити дію для всіх подальших конфліктів 314 | ExistingFileNewerSelectAction=Виберіть дію 315 | ExistingFileNewer2=Існуючий файл новіший, ніж встановлюваємий. 316 | ExistingFileNewerOverwriteExisting=&Замінити існуючий файл 317 | ExistingFileNewerKeepExisting=&Зберегти існуючий файл (рекомендується) 318 | ExistingFileNewerOverwriteOrKeepAll=&Повторити дію для всіх подальших конфліктів 319 | ErrorChangingAttr=Виникла помилка при спробі зміни атрибутів існуючого файлу: 320 | ErrorCreatingTemp=Виникла помилка при спробі створення файлу в папці встановлення: 321 | ErrorReadingSource=Виникла помилка при спробі читання вихідного файлу: 322 | ErrorCopying=Виникла помилка при спробі копіювання файлу: 323 | ErrorReplacingExistingFile=Виникла помилка при спробі заміни існуючого файлу: 324 | ErrorRestartReplace=Помилка RestartReplace: 325 | ErrorRenamingTemp=Виникла помилка при спробі перейменування файлу в папці встановлення: 326 | ErrorRegisterServer=Неможливо зареєструвати DLL/OCX: %1 327 | ErrorRegSvr32Failed=Помилка при виконанні RegSvr32, код повернення %1 328 | ErrorRegisterTypeLib=Неможливо зареєструвати бібліотеку типів: %1 329 | 330 | ; *** Uninstall display name markings 331 | UninstallDisplayNameMark=%1 (%2) 332 | UninstallDisplayNameMarks=%1 (%2, %3) 333 | UninstallDisplayNameMark32Bit=32-біт 334 | UninstallDisplayNameMark64Bit=64-біт 335 | UninstallDisplayNameMarkAllUsers=Всі користувачі 336 | UninstallDisplayNameMarkCurrentUser=Поточний користувач 337 | 338 | ; *** Post-installation errors 339 | ErrorOpeningReadme=Виникла помилка при спробі відкриття файлу README. 340 | ErrorRestartingComputer=Програмі встановлення не вдалося перезавантажити комп'ютер. Будь ласка, виконайте це самостійно. 341 | 342 | ; *** Повідомлення видалення 343 | UninstallNotFound=Файл "%1" не існує, видалення неможливе. 344 | UninstallOpenError=Неможливо відкрити файл "%1". Видалення неможливе 345 | UninstallUnsupportedVer=Файл протоколу для видалення "%1" не розпізнаний даною версією програми видалення. Видалення неможливе 346 | UninstallUnknownEntry=Невідомий запис (%1) в файлі протоколу для видалення 347 | ConfirmUninstall=Ви впевнені, що бажаєте видалити %1 і всі його компоненти? 348 | UninstallOnlyOnWin64=Цю програму можливо видалити лише у середовищі 64-бітної версії Windows. 349 | OnlyAdminCanUninstall=Ця програма може бути видалена лише користувачем з правами адміністратора. 350 | UninstallStatusLabel=Будь ласка, зачекайте, поки %1 видалиться з вашого комп'ютера. 351 | UninstalledAll=%1 успішно видалено з вашого комп'ютера. 352 | UninstalledMost=Видалення %1 завершено.%n%nДеякі елемент неможливо видалити. Ви можете видалити їх вручну. 353 | UninstalledAndNeedsRestart=Для завершення видалення %1 необхідно перезавантажити ваш комп’ютер.%n%nПерезавантажити комп’ютер зараз? 354 | UninstallDataCorrupted=Файл "%1" пошкоджений. Видалення неможливе 355 | 356 | ; *** Uninstallation phase messages 357 | ConfirmDeleteSharedFileTitle=Видалити загальні файли? 358 | ConfirmDeleteSharedFile2=Система свідчить, що наступний спільний файл більше не використовується іншими програмами. Ви бажаєте видалити цей спільний файл?%n%nЯкщо інші програми все ще використовують цей файл і він видалиться, то ці програми можуть функціонувати неправильно. Якщо ви не впевнені, виберіть «Ні». Залишений файл не нашкодить вашій системі. 359 | SharedFileNameLabel=Ім'я файлу: 360 | SharedFileLocationLabel=Розміщення: 361 | WizardUninstalling=Стан видалення 362 | StatusUninstalling=Видалення %1... 363 | 364 | 365 | ; *** Причини блокування вимкнення 366 | ShutdownBlockReasonInstallingApp=Встановлення %1. 367 | ShutdownBlockReasonUninstallingApp=Видалення %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, версія %2 375 | AdditionalIcons=Додаткові ярлики: 376 | CreateDesktopIcon=Створити ярлики на &Робочому столі (для всіх користувачів) 377 | CreateQuickLaunchIcon=Створити ярлики на &Панелі швидкого запуску 378 | ProgramOnTheWeb=Сайт %1 в Інтернеті 379 | UninstallProgram=Видалити %1 380 | LaunchProgram=Відкрити %1 381 | AssocFileExtension=&Асоціювати %1 з розширенням файлу %2 382 | AssocingFileExtension=Асоціювання %1 з розширенням файлу %2... 383 | AutoStartProgramGroupDescription=Автозавантаження: 384 | AutoStartProgram=Автоматично завантажувати %1 385 | AddonHostProgramNotFound=%1 не знайдений у вказаній вами папці%n%nВи все одно бажаєте продовжити? 386 | 387 | Msvcr=Встановити Microsoft Visual C++ 2005-2022 Redistributable Packages 388 | Sysopts=Оптимізувати налаштування системи 389 | Netopts=Оптимізувати налаштування мережевого стека 390 | Ssdopts=Оптимізувати налаштування системи для SSD 391 | UnblHosts=Дозволити запис до файлу HOSTS (для всіх користувачів) 392 | -------------------------------------------------------------------------------- /resources/VCRHyb64.exe: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09588a7c5e047d5dbb4064a7f4b75b93e0687134e9f80d32ab7a1e990083fee1 3 | size 48503179 4 | -------------------------------------------------------------------------------- /resources/VC_redist.x64.exe: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f9fb1b3cfe6e5092cf1225ecd6659dab7ce50b8bf935cb79bfede1f3c895240 3 | size 25641968 4 | -------------------------------------------------------------------------------- /resources/VC_redist.x86.exe: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c4e3992f3883005881cf3937f9e33f1c7d792ac1c860ea9c52d8f120a16a7eb1 3 | size 13949616 4 | -------------------------------------------------------------------------------- /resources/hosts: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9140f4dfa60989b9a5c1c69863e99c003f4f801032483f63d5a1f60be382a716 3 | size 784 4 | --------------------------------------------------------------------------------