From 4259568d722d0a46993ad945ffdba0f084448b37 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Thu, 25 Sep 2008 00:12:50 +0200 Subject: [PATCH] git-gui: Avoid using the term URL when specifying repositories Instead, 'Location' is used to label such inputs; in the Clone dialog, 'Source' and 'Target' are also introduced to further clarify the situation. The intent is to increase GUI consistency in the case location templates (upcoming) are used - then, other locators than URL may be used. Signed-off-by: Petr Baudis Signed-off-by: Shawn O. Pearce --- lib/choose_repository.tcl | 4 ++-- lib/remote_branch_delete.tcl | 2 +- lib/transport.tcl | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/choose_repository.tcl b/lib/choose_repository.tcl index 318078615..f54d88af1 100644 --- a/lib/choose_repository.tcl +++ b/lib/choose_repository.tcl @@ -463,7 +463,7 @@ method _do_clone {} { frame $w_body.args pack $args -fill both - label $args.origin_l -text [mc "URL:"] + label $args.origin_l -text [mc "Source Location:"] entry $args.origin_t \ -textvariable @origin_url \ -font font_diff \ @@ -473,7 +473,7 @@ method _do_clone {} { -command [cb _open_origin] grid $args.origin_l $args.origin_t $args.origin_b -sticky ew - label $args.where_l -text [mc "Directory:"] + label $args.where_l -text [mc "Target Directory:"] entry $args.where_t \ -textvariable @local_path \ -font font_diff \ diff --git a/lib/remote_branch_delete.tcl b/lib/remote_branch_delete.tcl index fbcfb2715..89eb0f70f 100644 --- a/lib/remote_branch_delete.tcl +++ b/lib/remote_branch_delete.tcl @@ -63,7 +63,7 @@ constructor dialog {} { set urltype url } radiobutton $w.dest.url_r \ - -text [mc "Arbitrary URL:"] \ + -text [mc "Arbitrary Location:"] \ -value url \ -variable @urltype entry $w.dest.url_t \ diff --git a/lib/transport.tcl b/lib/transport.tcl index 8e6a9d0a6..e419d7810 100644 --- a/lib/transport.tcl +++ b/lib/transport.tcl @@ -135,7 +135,7 @@ proc do_push_anywhere {} { set push_urltype url } radiobutton $w.dest.url_r \ - -text [mc "Arbitrary URL:"] \ + -text [mc "Arbitrary Location:"] \ -value url \ -variable push_urltype entry $w.dest.url_t \ -- 2.45.2