import java.util.ListResourceBundle; public class NumbersBundle extends ListResourceBundle { public Object[][] getContents() { return contents; } static final Object[][] contents = { // LOCALIZE THIS { "GDP", new Double(24700) }, { "Population", new Integer(260713585) }, { "Literacy", new Double(0.97) }, // END "LOCALIZE THIS" }; }