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")
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if tag has a value

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

Assign tag to a value for later use

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

Outputting the template tag

<!--@QuickPay3.language-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Check if string has a value

<!--@If Defined(@QuickPay3.language)-->
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX