'From etoys3.0 of 24 February 2008 [latest update: #2101] on 27 August 2008 at 3:30:38 pm'! "Change Set: NatLangExtraInfo2-yo Date: 27 August 2008 Author: Yoshiki Ohshima Fix a typo in an extra information phrase."! !GetTextExporter2 methodsFor: 'private' stamp: 'yo 8/27/2008 15:29'! createExtraInformation | extras | extras := OrderedCollection new. #( 'Language name as you''d like it to appear in the Languages menu' 'Language-Name' 'Scale to apply to font size (2 for twice as large)' 'Font-Scale' 'Directionality of language' 'Language-Direction' 'Use this if you do not want any of the text to be bolded, for legibility' 'Suppress-Bold' 'Font to use on a Windows system' 'Win-Font' 'Font to use on a Mac system' 'Mac-Font' 'Font to use on a Linux system' 'Linux-Font') pairsDo: [:first :second | extras add: (Array with: '' with: first with: second). ]. ^ extras! !