Skip to content

Commit e931f3a

Browse files
Fix translations
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 1c76114 commit e931f3a

File tree

1 file changed

+3
-1
lines changed
  • Plugins/Flow.Launcher.Plugin.Program

1 file changed

+3
-1
lines changed

Plugins/Flow.Launcher.Plugin.Program/Main.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,9 @@ public static void StartProcess(Func<ProcessStartInfo, Process> runProcess, Proc
446446
var title = Context.API.GetTranslation("flowlauncher_plugin_program_disable_dlgtitle_error");
447447
var message = string.Format(Context.API.GetTranslation("flowlauncher_plugin_program_run_failed"),
448448
info.FileName);
449-
Context.API.ShowMsgError(title, string.Format(message, info.FileName));
449+
@@ Plugins/Flow.Launcher.Plugin.Program/Main.cs:449
450+
- Context.API.ShowMsgError(title, string.Format(message, info.FileName));
451+
+ Context.API.ShowMsgError(title, message);
450452
}
451453
}
452454

0 commit comments

Comments
 (0)