Used to construct localized properties file names from a base name and a Locale. The path is assumed to be on the external file system.
101102103104105106107108109110111112
case DIRECT: loadFromDirect(ref.data); break; case EXTERNAL: if(attribs.locale!= null){ ExternalizedLocaleStringBuilder builder = new ExternalizedLocaleStringBuilder(ref.data,attribs.locale); List<String> list = builder.getValidPaths(); for(String localizedPath :list){ try { loadFromFile(localizedPath); }catch(Exception x) {} }