Package com.threerings.util

Examples of com.threerings.util.MessageBundle


        public String xlate (String message) {
            return xlate("stage.editor", message);
        }

        public String xlate (String bundle, String message) {
            MessageBundle mbundle = _msgmgr.getBundle(bundle);
            if (mbundle == null) {
                log.warning("Requested to translate message with non-existent bundle",
                    "bundle", bundle, "message", message);
                return message;
            } else {
                return mbundle.xlate(message);
            }
        }
View Full Code Here

TOP

Related Classes of com.threerings.util.MessageBundle

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.