@@ -2065,47 +2065,47 @@ proc makewindow {} {
2065
2065
# The "mc" arguments here are purely so that xgettext
2066
2066
# sees the following string as needing to be translated
2067
2067
set file {
2068
- mc " File" cascade {
2069
- {mc " Update" command updatecommits -accelerator F5}
2070
- {mc " Reload" command reloadcommits -accelerator Shift-F5}
2071
- {mc " Reread references " command rereadrefs}
2072
- {mc " List references" command showrefs -accelerator F2}
2068
+ mc " & File" cascade {
2069
+ {mc " & Update" command updatecommits -accelerator F5}
2070
+ {mc " & Reload" command reloadcommits -accelerator Shift-F5}
2071
+ {mc " Reread re&ferences " command rereadrefs}
2072
+ {mc " & List references" command showrefs -accelerator F2}
2073
2073
{xx " " separator}
2074
- {mc " Start git gui" command {exec git gui &}}
2074
+ {mc " Start git & gui" command {exec git gui &}}
2075
2075
{xx " " separator}
2076
- {mc " Quit" command doquit -accelerator Meta1-Q}
2076
+ {mc " & Quit" command doquit -accelerator Meta1-Q}
2077
2077
}}
2078
2078
set edit {
2079
- mc " Edit" cascade {
2080
- {mc " Preferences" command doprefs}
2079
+ mc " & Edit" cascade {
2080
+ {mc " & Preferences" command doprefs}
2081
2081
}}
2082
2082
set view {
2083
- mc " View" cascade {
2084
- {mc " New view..." command {newview 0} -accelerator Shift-F4}
2085
- {mc " Edit view..." command editview -state disabled -accelerator F4}
2086
- {mc " Delete view" command delview -state disabled}
2083
+ mc " & View" cascade {
2084
+ {mc " & New view..." command {newview 0} -accelerator Shift-F4}
2085
+ {mc " & Edit view..." command editview -state disabled -accelerator F4}
2086
+ {mc " & Delete view" command delview -state disabled}
2087
2087
{xx " " separator}
2088
- {mc " All files" radiobutton {selectedview 0} -command {showview 0}}
2088
+ {mc " & All files" radiobutton {selectedview 0} -command {showview 0}}
2089
2089
}}
2090
2090
if {[tk windowingsystem] ne " aqua" } {
2091
2091
set help {
2092
- mc " Help" cascade {
2093
- {mc " About gitk" command about}
2094
- {mc " Key bindings" command keys}
2092
+ mc " & Help" cascade {
2093
+ {mc " & About gitk" command about}
2094
+ {mc " & Key bindings" command keys}
2095
2095
}}
2096
2096
set bar [list $file $edit $view $help ]
2097
2097
} else {
2098
2098
proc ::tk::mac::ShowPreferences {} {doprefs}
2099
2099
proc ::tk::mac::Quit {} {doquit}
2100
2100
lset file end [lreplace [lindex $file end] end-1 end]
2101
2101
set apple {
2102
- xx " Apple" cascade {
2103
- {mc " About gitk" command about}
2102
+ xx " & Apple" cascade {
2103
+ {mc " & About gitk" command about}
2104
2104
{xx " " separator}
2105
2105
}}
2106
2106
set help {
2107
- mc " Help" cascade {
2108
- {mc " Key bindings" command keys}
2107
+ mc " & Help" cascade {
2108
+ {mc " & Key bindings" command keys}
2109
2109
}}
2110
2110
set bar [list $apple $file $view $help ]
2111
2111
}
@@ -4468,8 +4468,8 @@ proc showview {n} {
4468
4468
4469
4469
set curview $n
4470
4470
set selectedview $n
4471
- .bar.view entryconf [mca " Edit view..." ] -state [expr {$n == 0? " disabled" : " normal" }]
4472
- .bar.view entryconf [mca " Delete view" ] -state [expr {$n == 0? " disabled" : " normal" }]
4471
+ .bar.view entryconf [mca " & Edit view..." ] -state [expr {$n == 0? " disabled" : " normal" }]
4472
+ .bar.view entryconf [mca " & Delete view" ] -state [expr {$n == 0? " disabled" : " normal" }]
4473
4473
4474
4474
run refill_reflist
4475
4475
if {![info exists viewcomplete($n )]} {
0 commit comments