winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 31a785668e07cf57ecf37e44eb7424b1b415287d
parent b0bd0fbbfafdf6a3314554314876493418927800
Author: chausner <15180557+chausner@users.noreply.github.com>
Date:   Sat, 26 Aug 2023 00:58:40 +0200

Replace download cancelled message with a localized message (#3559)


Diffstat:
Msrc/AppInstallerCLICore/Workflows/DownloadFlow.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/AppInstallerCLICore/Workflows/DownloadFlow.cpp b/src/AppInstallerCLICore/Workflows/DownloadFlow.cpp @@ -344,7 +344,7 @@ namespace AppInstaller::CLI::Workflow if (!hash) { - context.Reporter.Info() << "Package download canceled." << std::endl; + context.Reporter.Info() << Resource::String::Cancelled << std::endl; AICLI_TERMINATE_CONTEXT(E_ABORT); }