debugger: Change some text in the launch tab (#32170)

Cole Miller created

I think using `Debugger Program` and `~/bin/debugger` here makes it seem
like that field is for specifying the path to the debugger itself, and
not the program being debugged.

Release Notes:

- N/A

Change summary

crates/debugger_ui/src/new_process_modal.rs | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Detailed changes

crates/debugger_ui/src/new_process_modal.rs 🔗

@@ -831,7 +831,7 @@ impl LaunchMode {
     pub(super) fn new(window: &mut Window, cx: &mut App) -> Entity<Self> {
         let program = cx.new(|cx| Editor::single_line(window, cx));
         program.update(cx, |this, cx| {
-            this.set_placeholder_text("ENV=Zed ~/bin/debugger --launch", cx);
+            this.set_placeholder_text("ENV=Zed ~/bin/program --option", cx);
         });
 
         let cwd = cx.new(|cx| Editor::single_line(window, cx));
@@ -919,7 +919,7 @@ impl LaunchMode {
                     .child(adapter_menu),
             )
             .child(
-                Label::new("Debugger Program")
+                Label::new("Program")
                     .size(ui::LabelSize::Small)
                     .color(Color::Muted),
             )