| LocalizationHelperLocalizeExpression Method | 
            Localizes the given expression, handles two types of expressions:
            
            stringkey - Simple localization
            
            =default string|cs-cz=localized string - advanced localization
            
 
Namespace: CMS.LocalizationAssembly: CMS.Localization (in CMS.Localization.dll) Version: 8.2.23
 Syntax
Syntaxpublic static string 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
See Also