Added support for a global message bundle to which other bundles fall back

if they can't find a message in their own list of strings.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1876 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-11-01 00:01:37 +00:00
parent dd4b1c69c3
commit b07fef8396
2 changed files with 30 additions and 4 deletions
@@ -1,5 +1,5 @@
//
// $Id: MessageBundle.java,v 1.13 2002/08/16 19:31:39 mdb Exp $
// $Id: MessageBundle.java,v 1.14 2002/11/01 00:01:37 mdb Exp $
package com.threerings.util;
@@ -23,10 +23,11 @@ public class MessageBundle
* from the supplied resource bundle. The path is provided purely for
* reporting purposes.
*/
public void init (String path, ResourceBundle bundle)
public void init (String path, ResourceBundle bundle, MessageBundle parent)
{
_path = path;
_bundle = bundle;
_parent = parent;
}
/**
@@ -72,6 +73,15 @@ public class MessageBundle
}
} catch (MissingResourceException mre) {
// if we have a parent, try getting the string from them
if (_parent != null) {
String value = _parent.getResourceString(key, false);
if (value != null) {
return value;
}
// if we didn't find it in our parent, we want to fall
// through and report missing appropriately
}
if (reportMissing) {
Log.warning("Missing translation message " +
"[bundle=" + _path + ", key=" + key + "].");
@@ -325,6 +335,9 @@ public class MessageBundle
/** The resource bundle from which we obtain our messages. */
protected ResourceBundle _bundle;
/** Our parent bundle if we're not the global bundle. */
protected MessageBundle _parent;
/** Text prefixed by this character will be considered tainted when
* doing recursive translations and won't be translated. */
protected static final String TAINT_CHAR = "~";