Skip to content

Commit 196b26c

Browse files
alshopovrfindler
authored andcommitted
Add messages to translate from quickscript
Signed-off-by: Alexander Shopov <ash@kambanaria.org>
1 parent a80aa54 commit 196b26c

File tree

2 files changed

+54
-1
lines changed

2 files changed

+54
-1
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.48")
10+
(define version "1.49")
1111

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

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

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2232,4 +2232,57 @@ please adhere to these guidelines:
22322232
" add\n\n ~a\n\n"
22332233
" to it.")
22342234
(add-racket/bin-to-path "Configure Command Line for Racket…") ;; menu item label
2235+
2236+
;; quickscript messages
2237+
(qs-my-first-script "My First Script")
2238+
(qs-script-library "Script library")
2239+
(qs-directories "Directories")
2240+
(qs-add "&Add")
2241+
(qs-remove "&Remove")
2242+
(qs-scripts "Scripts")
2243+
(qs-disable "Disa&ble")
2244+
(qs-enable "Ena&ble")
2245+
(qs-shadow "S&hadow")
2246+
(qs-recompiling "Recompiling quickscripts…")
2247+
(qs-recompiling-wait "Recompiling quickscripts, please wait…")
2248+
(qs-scripts "&Scripts")
2249+
(qs-manage "&Manage")
2250+
(qs-compilation-error "Quickscript: Error during compilation")
2251+
(qs-caught-exception "Quickscript caught an exception")
2252+
(qs-recompiling-library "Recompiling library")
2253+
(qs-my-script "My amazing script")
2254+
(qs-script-help "The help-string of the script.")
2255+
(qs-compiling-scripts "Compiling scripts")
2256+
;; ~a is a script file including its path
2257+
(qs-compiling "Compiling ~a")
2258+
;; ~a is a script file including its path
2259+
(qs-file-not-found "File not found: ~a")
2260+
(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")
2263+
(qs-script-name "Script name")
2264+
(qs-script-name-enter "Enter the name of the new script:")
2265+
(qs-open-script "Open a script")
2266+
;; ~a is the name of a script file
2267+
(qs-error-run "Run: Error in script file ~s:\n" )
2268+
(qs-output "Output") ;; not repl-out-color where it means color of the output
2269+
(qs-load-script-menu "Loading Scripts menu")
2270+
(qs-loading-file "Loading file ")
2271+
;; ~a is the name of a script file
2272+
(qs-script-file "Script file ~s:")
2273+
(qs-build-menu "Building script menu")
2274+
;; ~a is number of rebuilds
2275+
(qs-menu-rebuild "Script menu rebuild #~a...")
2276+
(qs-delete-menu "Deleting menu items")
2277+
;; ~a is a a script entry in menu
2278+
(qs-delete-menu-item "Deleting menu item ~a... ")
2279+
(qs-new-script "&New script…")
2280+
(qs-open-script "&Open script…")
2281+
(qs-disable-scripts "&Disable scripts…")
2282+
(qs-library "&Library…")
2283+
(qs-reload-menu "&Reload menu")
2284+
(qs-compile-scripts "&Compile scripts")
2285+
(qs-stop-scripts "&Stop persistent scripts")
2286+
(qs-report-issue "Report an &issue")
2287+
(qs-error-load "Quickscript: Errors while loading script properties")
22352288
)

0 commit comments

Comments
 (0)