'From etoys2.3 of 1 December 2007 [latest update: #1861] on 22 December 2007 at 9:18:55 am'! "Change Set: MOmagicNo-KR Date: 22 December 2007 Author: Korakurider fix typo of magic no of gettext MO file."! !MOFile methodsFor: 'private' stamp: 'KR 12/22/2007 09:18'! loadHeader: strm strm binary. magic _ strm uint32. magic = 16rDE120495 ifTrue: [isLittleEndian _ true] ifFalse: [ magic = 16r950412DE ifTrue: [isLittleEndian _ false] ifFalse: [ self error: 'invalid MO'] ]. revision _ self nextInt32From: strm. nStrings _ self nextInt32From: strm. originalTableOffset _ self nextInt32From: strm. translatedTableOffset _ self nextInt32From: strm. hashTableSize _ self nextInt32From: strm. hashTableOffset _ self nextInt32From: strm. ! !