From: Harald Oehlmann on
I use message cataloges a bit different than prevued:
In the source code there is no final text but only tags like:
-text [mc errboxFatalExit]

All real text is in message catalogue files.

It would be useful to have a default text independent from the current
language setting.
This might be set using the empty language in mcset:
msgcat::mcset {} errboxFatalExit "Sorry, fatal exit"

This works when entered as source code.

But what is the message catalogue file name for those commands ?
Is it ".msg" ?

Regards,
Harald
From: Don Porter on
Harald Oehlmann wrote:
> But what is the message catalogue file name for those commands ?
> Is it ".msg" ?

No. ROOT.msg

http://www.tcl.tk/man/tcl/TclCmd/msgcat.htm

--
| Don Porter Mathematical and Computational Sciences Division |
| donald.porter(a)nist.gov Information Technology Laboratory |
| http://math.nist.gov/~DPorter/ NIST |
|______________________________________________________________________|
From: Harald Oehlmann on
Thank you, RTFM helps.
Harald