Class GroovyLanguageConstants.GLCApplications
- java.lang.Object
-
- de.uplanet.lucy.server.i18n.scripting.groovy.GroovyLanguageConstants.GLCApplications
-
- Enclosing class:
- GroovyLanguageConstants
public final class GroovyLanguageConstants.GLCApplications extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
get(String p_strKey)
Get the value of the given application language constant.String
getAt(String p_strKey)
Get the value of the given application language constant.String
getFallbackLanguage()
Get the fallback language that is used when a language constant is not found in thecontext language
.String
getLanguage()
Get the context language set for this object.GroovyLanguageConstants.GLCApplications
language(String p_strLang)
Get the application language constants for the specified language.
-
-
-
Method Detail
-
getLanguage
public String getLanguage()
Get the context language set for this object.- Returns:
- The context language.
-
getFallbackLanguage
public String getFallbackLanguage()
Get the fallback language that is used when a language constant is not found in thecontext language
.Usually this is the portal's default language.
- Returns:
- The default language.
-
language
public GroovyLanguageConstants.GLCApplications language(String p_strLang)
Get the application language constants for the specified language.This can be useful when another than the predefined context language should be used.
- Parameters:
p_strLang
- The language.- Returns:
- The language constants for the specified language.
-
getAt
public String getAt(String p_strKey)
Get the value of the given application language constant. If there is no value for the given key in the context language, the fallback language is used. If no fallback is availablenull
will be returned.- Parameters:
p_strKey
- The key.- Returns:
- The localized string.
-
get
public String get(String p_strKey)
Get the value of the given application language constant. If there is no value for the given key in the context language, the fallback language is used. If no fallback is availablenull
will be returned.- Parameters:
p_strKey
- The key.- Returns:
- The localized string.
-
-