Browse Source

git-gui: Rename Project menu to Repository.

Since all of the actions in our Project menu actually apply to the
Git concept of a repository, it is a disservice to our users to
call it "project".  This is especially true if Git ever gets any
sort of subproject support, as the term would then most definately
conflict.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
maint
Shawn O. Pearce 18 years ago
parent
commit
a4abfa62d6
  1. 24
      git-gui

24
git-gui

@ -2602,7 +2602,7 @@ apply_config
# -- Menu Bar # -- Menu Bar
# #
menu .mbar -tearoff 0 menu .mbar -tearoff 0
.mbar add cascade -label Project -menu .mbar.project .mbar add cascade -label Repository -menu .mbar.repository
.mbar add cascade -label Edit -menu .mbar.edit .mbar add cascade -label Edit -menu .mbar.edit
.mbar add cascade -label Commit -menu .mbar.commit .mbar add cascade -label Commit -menu .mbar.commit
if {!$single_commit} { if {!$single_commit} {
@ -2612,38 +2612,38 @@ if {!$single_commit} {
} }
. configure -menu .mbar . configure -menu .mbar


# -- Project Menu # -- Repository Menu
# #
menu .mbar.project menu .mbar.repository
.mbar.project add command -label Visualize \ .mbar.repository add command -label Visualize \
-command do_gitk \ -command do_gitk \
-font font_ui -font font_ui
if {!$single_commit} { if {!$single_commit} {
.mbar.project add separator .mbar.repository add separator


.mbar.project add command -label {Repack Database} \ .mbar.repository add command -label {Repack Database} \
-command do_repack \ -command do_repack \
-font font_ui -font font_ui


.mbar.project add command -label {Verify Database} \ .mbar.repository add command -label {Verify Database} \
-command do_fsck_objects \ -command do_fsck_objects \
-font font_ui -font font_ui


.mbar.project add separator .mbar.repository add separator


if {$tcl_platform(platform) eq {windows}} { if {$tcl_platform(platform) eq {windows}} {
.mbar.project add command \ .mbar.repository add command \
-label {Create Desktop Icon} \ -label {Create Desktop Icon} \
-command do_windows_shortcut \ -command do_windows_shortcut \
-font font_ui -font font_ui
} elseif {[is_MacOSX]} { } elseif {[is_MacOSX]} {
.mbar.project add command \ .mbar.repository add command \
-label {Create Desktop Icon} \ -label {Create Desktop Icon} \
-command do_macosx_app \ -command do_macosx_app \
-font font_ui -font font_ui
} }
} }
.mbar.project add command -label Quit \ .mbar.repository add command -label Quit \
-command do_quit \ -command do_quit \
-accelerator $M1T-Q \ -accelerator $M1T-Q \
-font font_ui -font font_ui
@ -2729,7 +2729,7 @@ lappend disable_on_lock \
lappend disable_on_lock \ lappend disable_on_lock \
[list .mbar.commit entryconf [.mbar.commit index last] -state] [list .mbar.commit entryconf [.mbar.commit index last] -state]


.mbar.commit add command -label {Include All} \ .mbar.commit add command -label {Include All In Commit} \
-command do_include_all \ -command do_include_all \
-accelerator $M1T-I \ -accelerator $M1T-I \
-font font_ui -font font_ui

Loading…
Cancel
Save