Next: I18N.LcMessagesDummyDomain, Previous: I18N.LcMessagesCatalog, Up: Iconv/I18N packages
Translations are accessed using either #at: or the shortcut binary messages `?'. This way, common idioms to access translated strings will be
string := NLS? 'abc'. string := self? 'abc'.
(in the first case NLS is a class variable, in the second the receiver implements #? through delegation) which is only five or six characters longer than the traditional
string := 'abc'.
(cfr. the _("abc") idiom used by GNU gettext)