Fix translations

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Jack Ye 2025-07-20 12:57:04 +08:00 committed by GitHub
parent 1c76114bb0
commit e931f3ae41
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -446,7 +446,9 @@ namespace Flow.Launcher.Plugin.Program
var title = Context.API.GetTranslation("flowlauncher_plugin_program_disable_dlgtitle_error");
var message = string.Format(Context.API.GetTranslation("flowlauncher_plugin_program_run_failed"),
info.FileName);
Context.API.ShowMsgError(title, string.Format(message, info.FileName));
@@ Plugins/Flow.Launcher.Plugin.Program/Main.cs:449
- Context.API.ShowMsgError(title, string.Format(message, info.FileName));
+ Context.API.ShowMsgError(title, message);
}
}