Example usage for com.liferay.portal.kernel.util PortalUtil getResourceBundle

List of usage examples for com.liferay.portal.kernel.util PortalUtil getResourceBundle

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.util PortalUtil getResourceBundle.

Prototype

public static ResourceBundle getResourceBundle(Locale locale) 

Source Link

Usage

From source file:com.liferay.users.admin.web.internal.servlet.taglib.ui.navigation.user.entry.BaseUserScreenNavigationEntry.java

License:Open Source License

protected ResourceBundle getResourceBundle(Locale locale) {
    ResourceBundle bundleResourceBundle = ResourceBundleUtil.getBundle("content.Language", locale, getClass());

    return new AggregateResourceBundle(bundleResourceBundle, PortalUtil.getResourceBundle(locale));
}