changing wording of kill/break in menus

svn: r11046
This commit is contained in:
Robby Findler 2008-08-03 13:29:17 +00:00
parent a95c83d041
commit 0f9964e875
2 changed files with 8 additions and 8 deletions

View File

@ -3182,17 +3182,17 @@ module browser threading seems wrong.
#\t
(string-constant execute-menu-item-help-string)))
(make-object menu:can-restore-menu-item%
(string-constant break-menu-item-label)
(string-constant ask-quit-menu-item-label)
scheme-menu
(λ (_1 _2) (send current-tab break-callback))
#\b
(string-constant break-menu-item-help-string))
(string-constant ask-quit-menu-item-help-string))
(make-object menu:can-restore-menu-item%
(string-constant kill-menu-item-label)
(string-constant force-quit-menu-item-label)
scheme-menu
(λ (_1 _2) (send interactions-text kill-evaluation))
#\k
(string-constant kill-menu-item-help-string))
(string-constant force-quit-menu-item-help-string))
(when (custodian-memory-accounting-available?)
(new menu-item%
[label (string-constant limit-memory-menu-item-label)]

View File

@ -847,10 +847,10 @@ please adhere to these guidelines:
(scheme-menu-name "S&cheme")
(execute-menu-item-label "Run")
(execute-menu-item-help-string "Restart the program in the definitions window")
(break-menu-item-label "Stop")
(break-menu-item-help-string "Break the current evaluation")
(kill-menu-item-label "Kill")
(kill-menu-item-help-string "Kill the current evaluation")
(ask-quit-menu-item-label "Ask the program to quit")
(ask-quit-menu-item-help-string "Uses break-thread to stop the primary thread of the current evaluation")
(force-quit-menu-item-label "Force the program to quit")
(force-quit-menu-item-help-string "Uses custodian-shutdown-all to abort the current evaluation")
(limit-memory-menu-item-label "Limit memory...")
(limit-memory-msg-1 "The limit will take effect the next time the program")
(limit-memory-msg-2 "is Run, and it must be at least 100 megabytes.")