| ILocalizationServiceLocalizeExpression Method  | 
            Localizes the given expression, handles two types of expressions:
            
            stringkey - Simple localization
            
            =default string|cs-cz=localized string - advanced localization
            
 
Namespace: CMS.CoreAssembly: CMS.Core (in CMS.Core.dll) Version: 9.0.0
Syntaxstring LocalizeExpression(
	string expression,
	string culture = null,
	bool encode = false,
	Func<string, string, bool, string> getStringMethod = null,
	bool useDefaultCulture = true
)
Parameters
- expression
 - Type: SystemString
Expression to localize - culture (Optional)
 - Type: SystemString
Culture to use for localization - encode (Optional)
 - Type: SystemBoolean
If true, translations (replacements) are HTML encoded - getStringMethod (Optional)
 - Type: SystemFuncString, String, Boolean, String
Method to get the resource string for localization - useDefaultCulture (Optional)
 - Type: SystemBoolean
If true the default culture translation is used if translation in chosen culture doesn't exist 
Return Value
Type: 
String
See Also