Skip to content

Commit e45aec7

Browse files
committed
adjust the string constants used by quickscript
related to Metaxal/quickscript#85
1 parent 196b26c commit e45aec7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

string-constants-lib/info.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
(define pkg-authors '(robby))
99

10-
(define version "1.49")
10+
(define version "1.50")
1111

1212
(define license
1313
'(Apache-2.0 OR MIT))

string-constants-lib/string-constants/private/english-string-constants.rkt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2258,8 +2258,10 @@ please adhere to these guidelines:
22582258
;; ~a is a script file including its path
22592259
(qs-file-not-found "File not found: ~a")
22602260
(qs-invalid-hook "Invalid hook name.\n Valid names:\n")
2261-
;; 1st ~a is number of errors, 2nd ~a is summaries of errors
2262-
(qs-error-details "~a error(s) have been caught.\n~a\nSummary:\n~a\n\nDetails:\n")
2261+
;; the three `qs-error-detail-*` string constants are put into the same message
2262+
(qs-error-detail-overview "~a error(s) have been caught.") ; the ~a is number of errors
2263+
(qs-error-detail-summary "Summary:")
2264+
(qs-error-detail-details "Details:")
22632265
(qs-script-name "Script name")
22642266
(qs-script-name-enter "Enter the name of the new script:")
22652267
(qs-open-script "Open a script")

0 commit comments

Comments
 (0)