Russian and Ukranian translation files from Sergey Semerikov
svn: r18272
This commit is contained in:
parent
d4b0f917df
commit
177f572cda
|
@ -70,16 +70,18 @@
|
|||
(define (get-translating-acks)
|
||||
(string-append
|
||||
"Thanks to "
|
||||
"ChongKai Zhu, "
|
||||
"Ian Barland, "
|
||||
"Biep Durieux, "
|
||||
"Tim Hanson, "
|
||||
"Chihiro Kuraya, "
|
||||
"Philippe Meunier, "
|
||||
"Irina Mintiy, "
|
||||
"Sergey Semerikov, "
|
||||
"Jens Axel Søgaard, "
|
||||
"Francisco Solsona, "
|
||||
"Mike Sperber, "
|
||||
"Reini Urban, "
|
||||
"ChongKai Zhu, "
|
||||
"and "
|
||||
"Paolo Zoppetti "
|
||||
"for their help translating DrScheme's GUI to other languages."))
|
||||
|
|
1529
collects/string-constants/russian-string-constants.ss
Normal file
1529
collects/string-constants/russian-string-constants.ss
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -11,7 +11,9 @@
|
|||
(prefix portuguese: "portuguese-string-constants.ss")
|
||||
(prefix japanese: "japanese-string-constants.ss")
|
||||
(prefix traditional-chinese: "traditional-chinese-string-constants.ss")
|
||||
(prefix simplified-chinese: "simplified-chinese-string-constants.ss"))
|
||||
(prefix simplified-chinese: "simplified-chinese-string-constants.ss")
|
||||
(prefix russian: "russian-string-constants.ss")
|
||||
(prefix ukrainian: "ukrainian-string-constants.ss"))
|
||||
|
||||
(require mzlib/file
|
||||
mzlib/etc
|
||||
|
@ -26,19 +28,21 @@
|
|||
;; table : (listof (list symbol regexp regexp))
|
||||
;; this table indicates what the default value of the natural language
|
||||
;; preference is. the first regexp is used under Windows and the second
|
||||
;; is used on other platofmr.s All regexps are compared to the result
|
||||
;; is used on other platforms. All regexps are compared to the result
|
||||
;; of (system-language+country)
|
||||
(define table
|
||||
'((english #rx"^en_" #rx"^English_")
|
||||
(spanish #rx"^es_" #rx"^Espanol_")
|
||||
(german #rx"^de_" #rx"^German_")
|
||||
(french #rx"^fr_" #rx"French_")
|
||||
(dutch #rx"nl_" #rx"^Netherlands_")
|
||||
(danish #rx"^da_DK" #rx"^Danish_")
|
||||
(portuguese #rx"^pt_" #rx"Portuguese_")
|
||||
(japanese #rx"^ja_" #rx"^Japan_")
|
||||
'((english #rx"^en_" #rx"^English_")
|
||||
(spanish #rx"^es_" #rx"^Espanol_")
|
||||
(german #rx"^de_" #rx"^German_")
|
||||
(french #rx"^fr_" #rx"French_")
|
||||
(dutch #rx"nl_" #rx"^Netherlands_")
|
||||
(danish #rx"^da_DK" #rx"^Danish_")
|
||||
(portuguese #rx"^pt_" #rx"Portuguese_")
|
||||
(japanese #rx"^ja_" #rx"^Japan_")
|
||||
(traditional-chinese #rx"^zh_(HK|TW)" #rx"Chinese_China")
|
||||
(simplified-chinese #rx"^zh_CN" #rx"Chinese_(Hong|Taiwan)")))
|
||||
(simplified-chinese #rx"^zh_CN" #rx"Chinese_(Hong|Taiwan)")
|
||||
(russian #rx"^ru_" #rx"^Russian_")
|
||||
(ukrainian #rx"^uk_" #rx"^Ukrainian_")))
|
||||
|
||||
;; default-language : -> symbol
|
||||
;; uses `table' and system-language+contry to find what language to start with
|
||||
|
@ -77,7 +81,9 @@
|
|||
(make-sc 'portuguese portuguese:string-constants #f)
|
||||
(make-sc 'japanese japanese:string-constants #f)
|
||||
(make-sc 'traditional-chinese traditional-chinese:string-constants #f)
|
||||
(make-sc 'simplified-chinese simplified-chinese:string-constants #f)))
|
||||
(make-sc 'simplified-chinese simplified-chinese:string-constants #f)
|
||||
(make-sc 'russian russian: string-constants # f)
|
||||
(make-sc 'ukrainian ukrainian: string-constants # f)))
|
||||
|
||||
(define first-string-constant-set (car available-string-constant-sets))
|
||||
|
||||
|
|
1529
collects/string-constants/ukrainian-string-constants.ss
Normal file
1529
collects/string-constants/ukrainian-string-constants.ss
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user