Again nice design.

Pretty music and elegant multilingual approach.
I have attached language files for German 'de', French 'fr' and Dutch 'nl'.
I had to add the extension '.txt', otherwise the files were not accepted as attachment.
Maybe you should change that as required format.
I tested the different languages by a small change in the code where the language is accessed:
Code: Select all
test=1 ! language$="nl" ' testmode only
if FILE_EXISTS ("System/Language/"&SYSTEM_LANGUAGE$ ())=0 then
FILE "System/Language/en" INPUT imj1$,imj2$,imj3$,imj4$,imj5$,imj6$
else
IF test THEN
FILE "System/Language/"&language$ INPUT imj1$,imj2$,imj3$,imj4$,imj5$,imj6$
ELSE
FILE "System/Language/"&SYSTEM_LANGUAGE$ () INPUT imj1$,imj2$,imj3$,imj4$,imj5$,imj6$
ENDIF
endif
Note that in French the word sequence of "Classic TETRIS' is changed to 'TETRIS classique'
That change does give wrong fontsize for these words.
Furthermore it would be easier if you make it possible to have the possibility to translate a single word in two words.
Now the program reads word by word, maybe it should read line by line.
