|
Trying to see why LocaleTest testLocaleChanged fail , I got the attached
But I have:
NaturalLanguageTranslator>>#isDomainLoaded:
isDomainLoaded: aDomainName
"ask if translation dictionary for the domain has been loaded and
available now for use"
self subclassResponsibility.
GetTextTranslator>>#isDomainLoaded:
isDomainLoaded: aDomainName
| mo |
mo := moFiles at: aDomainName ifAbsent: [nil].
^mo isNil not.
InternalTranslator>>#isDomainLoaded:
isDomainLoaded: aDomainName
^true
Some could teach me what is wrong?
I do not touch any of this methods.
Edgar
|