Lines Matching defs:language

30     private Vector bundles;                                   // A Vector of NLSbundles, one for each language
54 String language = Resources.getLanguage(localeStr);
57 if (language == null || language.equals("") || language.length() > 3) language = "en";
59 if (variant == null) Resources.setLocale(new Locale(language, country));
60 else Resources.setLocale(new Locale(language, country, variant));
113 // Count the number of language files and set up the encoding and dictionary data
134 // Count the number of language files
201 o = descriptors.get("fileLanguage"); if (o != null) dict.language = ((String) o);
260 // Now that we have parsed the entire main language file, populate the allNLSKey set with the dictionary keys
303 o = descriptors.get("fileLanguage"); if (o != null) dict.language = ((String) o);
500 * Attempts to create a new item in each of the language files. The method first checks the base Resource Bundle
554 * Attempts to create a new group in each of the language files. The method first checks the base Resource Bundle
644 * @param encoding The proper encoding for the resource. Must be of form 'language', 'language_country', or 'language_country_variant'
645 * @param language A more formal name for the language (e.g. 'English', 'Deutsch', etc.), can be <CODE>null</CODE>
653 String language, String country, String variant, boolean copyValues) {
662 bundle.language = language;
773 if (dict.language != null) dictStr += dict.language;
784 * Returns the number of translations contained across all language files
848 * A Vector of NLSbundles, one for each language
940 usage += " encoding -> Returns results for only the language encoding specified\n";