Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pedroblandim/bf2f35d87509aad4624bae3eabc26962 to your computer and use it in GitHub Desktop.
Save pedroblandim/bf2f35d87509aad4624bae3eabc26962 to your computer and use it in GitHub Desktop.
Liferay: Get language key without themedisplay or request
@Activate
public void activate() {
ResourceBundle resourceBundle = ResourceBundle.getBundle(
"content.Language", LocaleUtil.getDefault());
String value = LanguageUtil.get(resourceBundle, "key");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment