Uses of Class
org.olat.core.util.i18n.I18nItem

Packages that use I18nItem
org.olat.core.util.i18n   
org.olat.core.util.i18n.devtools   
 

Uses of I18nItem in org.olat.core.util.i18n
 

Methods in org.olat.core.util.i18n that return I18nItem
 I18nItem I18nManager.getI18nItem(java.lang.String bundleName, java.lang.String key, java.util.Locale locale)
          Factory method to create a single i18n item
 

Methods in org.olat.core.util.i18n that return types with arguments of type I18nItem
 java.util.List<I18nItem> I18nManager.findExistingAndMissingI18nItems(java.util.Locale referenceLocale, java.util.Locale targetLocale, java.lang.String limitToBundleName, boolean includeBundlesChildren)
          Find all i18n items that exist in the source locale and the target locale
 java.util.List<I18nItem> I18nManager.findExistingI18nItems(java.util.Locale targetLocale, java.lang.String limitToBundleName, boolean includeBundlesChildren)
          Find all i18n items that exist in the target locale
 java.util.List<I18nItem> I18nManager.findI18nItemsByKeySearch(java.lang.String searchString, java.util.Locale searchLocale, java.util.Locale targetLocale, java.lang.String limitToBundleName, boolean includeBundlesChildren)
          Find all i18n items that contain the given search string in their key.
 java.util.List<I18nItem> I18nManager.findI18nItemsByValueSearch(java.lang.String searchString, java.util.Locale searchLocale, java.util.Locale targetLocale, java.lang.String limitToBundleName, boolean includeBundlesChildren)
          Find all i18n items that contain a given search string in their value.
 java.util.List<I18nItem> I18nManager.findMissingI18nItems(java.util.Locale referenceLocale, java.util.Locale targetLocale, java.lang.String limitToBundleName, boolean includeBundlesChildren)
          Find all i18n items that exist in the source locale but not in the target locale
 

Methods in org.olat.core.util.i18n with parameters of type I18nItem
 java.lang.String I18nManager.getAnnotation(I18nItem i18nItem)
          Get the annotation for this i18n item.
 java.lang.String I18nManager.getLocalizedString(I18nItem i18nItem, java.lang.Object[] args)
          Get the translated value for a given i18n item.
 void I18nManager.saveOrUpdateI18nItem(I18nItem i18nItem, java.lang.String value)
          Save the given value for the given i18nItem
 void I18nManager.setAnnotation(I18nItem i18nItem, java.lang.String annotation)
           
 

Method parameters in org.olat.core.util.i18n with type arguments of type I18nItem
 void I18nManager.sortI18nItems(java.util.List<I18nItem> i18nItems, boolean afterBundlePriorities, boolean afterKeyPriorities)
          Sort a list of i18n items.
 

Uses of I18nItem in org.olat.core.util.i18n.devtools
 

Methods in org.olat.core.util.i18n.devtools that return I18nItem
 I18nItem TranslationDevManager.searchForReusableItemByKey(java.lang.String key)
           
 

Methods in org.olat.core.util.i18n.devtools that return types with arguments of type I18nItem
 java.util.List<I18nItem> TranslationDevManager.getDouplicateKeys()
           
 java.util.List<I18nItem> TranslationDevManager.getDouplicateValues()