Package org.exoplatform.services.resources

Examples of org.exoplatform.services.resources.ResourceBundleManager


      setProperty(PortalProperties.SESSION_ALIVE, type);
   }
  
   private void localizePageNavigation(PageNavigation nav,Locale locale)
   {
      ResourceBundleManager mgr = getApplicationComponent(ResourceBundleManager.class);
      if (nav.getOwnerType().equals(PortalConfig.USER_TYPE))
         return;
      ResourceBundle res = mgr.getNavigationResourceBundle(locale.getLanguage(), nav.getOwnerType(), nav.getOwnerId());
      for (PageNode node : nav.getNodes())
      {
         resolveLabel(res, node);
      }
   }
View Full Code Here


      return (page != null);
   }

   public void localizeNavigations()
   {
      ResourceBundleManager i18nManager = getApplicationComponent(ResourceBundleManager.class);
      Locale locale = getLocale();
     
      for(PageNavigation nav : this.getNavigations())
      {
         PageNavigationUtils.localizePageNavigation(nav, locale, i18nManager);
View Full Code Here

      setProperty(PortalProperties.SESSION_ALIVE, type);
   }
  
   private void localizePageNavigation(PageNavigation nav,Locale locale)
   {
      ResourceBundleManager mgr = getApplicationComponent(ResourceBundleManager.class);
      if (nav.getOwnerType().equals(PortalConfig.USER_TYPE))
         return;
      ResourceBundle res = mgr.getNavigationResourceBundle(locale.getLanguage(), nav.getOwnerType(), nav.getOwnerId());
      for (PageNode node : nav.getNodes())
      {
         resolveLabel(res, node);
      }
   }
View Full Code Here

      return (page != null);
   }

   public void localizeNavigations()
   {
      ResourceBundleManager i18nManager = getApplicationComponent(ResourceBundleManager.class);
      Locale locale = getLocale();
     
      for(PageNavigation nav : this.getNavigations())
      {
         PageNavigationUtils.localizePageNavigation(nav, locale, i18nManager);
View Full Code Here

TOP

Related Classes of org.exoplatform.services.resources.ResourceBundleManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.