diff options
author | Johannes Sixt <johannes.sixt@telecom.at> | 2007-05-08 13:33:06 +0200 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-05-08 10:35:58 -0400 |
commit | a1a4975824e8f9f88a8c96ae908c488a2c6047c5 (patch) | |
tree | 8e034a94d9533af707279766e174b78ddf3874cc | |
parent | 681bfd59ce1a93a4492e11a480e438099f721294 (diff) | |
download | git-a1a4975824e8f9f88a8c96ae908c488a2c6047c5.tar.gz git-a1a4975824e8f9f88a8c96ae908c488a2c6047c5.tar.xz |
git-gui: Call changes "Staged" and "Unstaged" in file list titles.
All menu entries talk about "staging" and "unstaging" changes, but the
titles of the file lists use different wording, which may confuse
newcomers.
Signed-off-by: Johannes Sixt <johannes.sixt@telecom.at>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
-rwxr-xr-x | git-gui.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-gui.sh b/git-gui.sh index ae881336d..4cf340dfe 100755 --- a/git-gui.sh +++ b/git-gui.sh @@ -5496,7 +5496,7 @@ pack .vpane -anchor n -side top -fill both -expand 1 # -- Index File List # frame .vpane.files.index -height 100 -width 200 -label .vpane.files.index.title -text {Changes To Be Committed} \ +label .vpane.files.index.title -text {Staged Changes (Will Be Committed)} \ -background green \ -font font_ui text $ui_index -background white -borderwidth 0 \ @@ -5518,7 +5518,7 @@ pack $ui_index -side left -fill both -expand 1 # -- Working Directory File List # frame .vpane.files.workdir -height 100 -width 200 -label .vpane.files.workdir.title -text {Changed But Not Updated} \ +label .vpane.files.workdir.title -text {Unstaged Changes (Will Not Be Committed)} \ -background red \ -font font_ui text $ui_workdir -background white -borderwidth 0 \ |