Skip to content

Commit 3052c87

Browse files
alshopovrfindler
authored andcommitted
Extract new translatable constants, bump dependency
Signed-off-by: Alexander Shopov <[email protected]>
1 parent 3e50572 commit 3052c87

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

drracket/drracket/private/tools.rkt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -492,12 +492,12 @@
492492

493493
;; Preferences GUI
494494

495-
(define load-action "Load the tool")
496-
(define skip-action "Skip the tool")
495+
(define load-action (string-constant load-tool-load))
496+
(define skip-action (string-constant load-tool-skip))
497497

498498
(define (add-prefs-panel)
499499
(preferences:add-panel
500-
"Tools"
500+
(string-constant tool-prefs-panel-title)
501501
(lambda (parent)
502502
(define main (new-vertical-panel% (parent parent)))
503503
(define advisory

drracket/info.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"sandbox-lib"
1919
("scribble-lib" #:version "1.11")
2020
("snip-lib" #:version "1.2")
21-
["string-constants-lib" #:version "1.31"]
21+
["string-constants-lib" #:version "1.32"]
2222
"typed-racket-lib"
2323
"wxme-lib"
2424
["gui-lib" #:version "1.45"]

0 commit comments

Comments
 (0)