import java.util.ListResourceBundle; public class LabelsBundle extends ListResourceBundle { public Object[][] getContents() { return contents; } static final Object[][] contents = { // LOCALIZE THIS { "LocaleLabel", "Locale: " }, { "DateLabel", "Today's Date: " }, { "TimeLabel", "Current Time (in {0}): " }, { "RepCity", "San Francisco" }, { "TimeZone", "PST" }, { "GDPLabel", "Per Capita GDP: " }, { "PopulationLabel", "Population: " }, { "LiteracyLabel", "Literacy Rate: " }, // END "LOCALIZE THIS" }; }