Global:Area.Culture.DisplayName

Version: - globalvalue  

Summary

Returns the website culture in this format: Danish (Denmark).

Settings

Based on the setting for the culture of the website.

(Modules - Websites - website - Regional settings)

Examples

Outputting the template tag

@GetGlobalValue("Global:Area.Culture.DisplayName")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetGlobalValue("Global:Area.Culture.DisplayName"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetGlobalValue("Global:Area.Culture.DisplayName"); }

Outputting the template tag

<!--@Global:Area.Culture.DisplayName-->

Check if globalvalue has a value

<!--@If Defined(@Global:Area.Culture.DisplayName)--> Let's output this tag here: <strong><!--@Global:Area.Culture.DisplayName--></strong> <!--@EndIf(@Global:Area.Culture.DisplayName)-->