1 package thinlet.drafts; 2 3 import java.util.*; 4 import thinlet.*; 5 6 9 public class Internationalization { 10 11 14 public void update(Thinlet thinlet, Object combobox, int selected, Object panel) throws Exception { 15 String locale = (String ) thinlet.getProperty(thinlet.getItem(combobox, selected), "locale"); 16 ResourceBundle bundle = ResourceBundle.getBundle("thinlet.drafts.i18n", new Locale(locale, "", "")); 17 18 thinlet.setResourceBundle(bundle); 19 thinlet.add(panel, thinlet.parse("i18npanel.xml")); 20 thinlet.setResourceBundle(null); 21 } 22 } | Popular Tags |