blob: 42c8fa6381de6fe8e2bedfbe9d549b284f445b0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<WixLocalization Culture="en-us" Language="1033" xmlns="http://wixtoolset.org/schemas/v4/wxl">
<String Id="Caption" Value="[WixBundleName] Setup" />
<String Id="Title" Value="Microsoft .NET Core required for [WixBundleName] setup" />
<String Id="ConfirmCancelMessage" Value="Are you sure you want to cancel?" />
<String Id="HelpHeader" Value="Setup Help" />
<String Id="HelpText" Value="/passive | /quiet - displays minimal UI with no prompts or displays no UI and
 no prompts. By default UI and all prompts are displayed.

/norestart - suppress any attempts to restart. By default UI will prompt before restart.
/log log.txt - logs to a specific file. By default a log file is created in %TEMP%." />
<String Id="HelpCloseButton" Value="&Close" />
<String Id="InstallLicenseTerms" Value="Click the "Accept and Install" button to accept the Microsoft .NET Core <a href="#">license terms</a>." />
<String Id="InstallAcceptAndInstallButton" Value="&Accept and Install" />
<String Id="InstallDeclineButton" Value="&Decline" />
<String Id="ProgressHeader" Value="Setup Progress" />
<String Id="ProgressLabel" Value="Processing:" />
<String Id="ProgressCancelButton" Value="&Cancel" />
<String Id="SuccessHeader" Value="Microsoft .NET Framework Setup Successful" />
<String Id="SuccessRestartText" Value="You must restart your computer before [WixBundleName] setup can continue." />
<String Id="SuccessRestartButton" Value="&Restart" />
<String Id="SuccessCloseButton" Value="&Close" />
<String Id="FailureHeader" Value="Setup Failed" />
<String Id="FailureLogLinkText" Value="One or more issues caused the setup to fail. Please fix the issues and then retry setup. For more information see the <a href="#">log file</a>." />
<String Id="FailureRestartText" Value="You must restart your computer to complete the rollback of the software." />
<String Id="FailureRestartButton" Value="&Restart" />
<String Id="FailureCloseButton" Value="&Close" />
<String Id="SCDRUNTIMEFAILUREErrorMessage" Value="[WixBundleName] cannot run on this machine. Install the latest updates and/or the latest OS to run in a supported environment." />
<String Id="PREREQBAINFINITELOOPErrorMessage" Value="[WixBundleName] failed to load the .NET Core runtime even though all of the prerequisites are installed." />
<String Id="FilesInUseTitle" Value="Files In Use" />
<String Id="FilesInUseLabel" Value="The following applications are using files that need to be updated:" />
<String Id="FilesInUseNetfxCloseRadioButton" Value="Close the &applications." />
<String Id="FilesInUseCloseRadioButton" Value="Close the &applications and attempt to restart them." />
<String Id="FilesInUseDontCloseRadioButton" Value="&Do not close applications. A reboot will be required." />
<String Id="FilesInUseRetryButton" Value="&Retry" />
<String Id="FilesInUseIgnoreButton" Value="&Ignore" />
<String Id="FilesInUseExitButton" Value="E&xit" />
</WixLocalization>
|