ResourceBundle

Holds language-specific data (e.g. compiler messages.)

Constructors

this
this()

Constructs an object and creates a list of empty messages.

this
this(cstring[] msgs)

Contructs an object and takes a list of messages.

this
this(cstring[] msgs, ResourceBundle parent)

Contructs an object by inheriting from a parent object.

Members

Functions

msg
cstring msg(MID mid)

Returns a text msg for a msg ID.

Variables

langCode
cstring langCode;

The language code. E.g.: "en" for English.

messages
cstring[] messages;

The list of messages.

Meta