We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c907c29 commit 675ee9eCopy full SHA for 675ee9e
Plugins/Flow.Launcher.Plugin.PluginsManager/PluginsManager.cs
@@ -159,8 +159,9 @@ internal async Task InstallOrUpdateAsync(UserPlugin plugin)
159
var totalBytes = response.Content.Headers.ContentLength ?? -1L;
160
var canReportProgress = totalBytes != -1;
161
162
+ var prgBoxTitle = $"{Context.API.GetTranslation("plugin_pluginsmanager_downloading_plugin")} {plugin.Name}";
163
if (canReportProgress &&
- (prgBox = Context.API.ShowProgressBox($"Download {plugin.Name}...", () =>
164
+ (prgBox = Context.API.ShowProgressBox(prgBoxTitle, () =>
165
{
166
httpClient.CancelPendingRequests();
167
downloadCancelled = true;
0 commit comments