QuickPay3.language

Version: - string  

Summary

Returns the language that's used.

Settings

The value is generated automatically.

Remarks

The following languages are currently supported by Quickpay:
da = Danish 
de = German 
en = English 
fo = Faeroese 
fr = French 
kl = Greenlandish 
it = Italian 
no = Norwegian 
nl = Dutch 
pl = Polish 
sv = Swedish

Examples

Outputting the template tag

@GetString("QuickPay3.language")

Check if tag has a value

@if(!string.IsNullOrWhiteSpace(GetString("QuickPay3.language"))) { @* Tag has value, so let's do something useful here. *@ }

Assign tag to a value for later use

@{ string storedTag = GetString("QuickPay3.language"); }

Outputting the template tag

<!--@QuickPay3.language-->

Check if string has a value

<!--@If Defined(@QuickPay3.language)--> Let's output this tag here: <strong><!--@QuickPay3.language--></strong> <!--@EndIf(@QuickPay3.language)-->