Nicolas Cellier uploaded a new version of Multilingual to project The Trunk:
http://source.squeak.org/trunk/Multilingual-nice.248.mcz ==================== Summary ==================== Name: Multilingual-nice.248 Author: nice Time: 9 December 2019, 3:07:24.38758 pm UUID: e5023db8-378f-4141-bfb2-ae3f377da27c Ancestors: Multilingual-mt.247 Fix input interpreter on Windows VM which was incorrectly set to MacRomanInputInterpreter in Latin1Environment... It should be UTF32InputInterpreter which is what Open Smalltalk VM did always used since birth. While at it, nuke unused Current class var. You can check current keyborad interpreter with: ActiveHand keyboardInterpreter. You can reset it with: LanguageEnvironment clearDefault. HandMorph clearInterpreters. ActiveHand keyboardInterpreter. If you don't do it manually, it should be reset at next image startup. Note: Since modern images only run on Open Smalltalk VM and since Open Smalltalk VM always use utf-32, we might better nuke win32VMUsesUnicode alltogether - it will always be true. But since it is feature freeze, and since I cannot test the other environments, I leave this change for post-release. =============== Diff against Multilingual-mt.247 =============== Item was changed: Object subclass: #LanguageEnvironment instanceVariableNames: 'id' + classVariableNames: 'ClipboardInterpreterClass FileNameConverterClass InputInterpreterClass KnownEnvironments SystemConverterClass' - classVariableNames: 'ClipboardInterpreterClass Current FileNameConverterClass InputInterpreterClass KnownEnvironments SystemConverterClass' poolDictionaries: '' category: 'Multilingual-Languages'! !LanguageEnvironment commentStamp: 'bf 8/16/2009 16:52' prior: 0! The name multilingualized Squeak suggests that you can use multiple language at one time. This is true, of course, but the system still how to manage the primary language; that provides the interpretation of data going out or coming in from outside world. It also provides how to render strings, as there rendering rule could be different in one language to another, even if the code points in a string is the same. Originally, LanguageEnvironment and its subclasses only has class side methods. After merged with Diego's Babel work, it now has instance side methods. Since this historical reason, the class side and instance side are not related well. When we talk about the interface with the ou t s i d e o f t h e S q u e a k w o r l d , t h e r e a r e t h r e e d i f f e r e n t " |