Translations:ExpressionScript - Presentation/39/nl
From LimeSurvey Manual
{if(is_empty(PFTotals),
'',
if(PFTotals >= -5 && PFTotals <= -4,
'Heel weinig',
if(PFTotals >= -3 && PFTotals <= -2,
'Weinig',
if(PFTotals == -1,
'Minder dan normaal',
if(PFTotals == 0,
'Normaal',
if(PFTotals == 1,
'Meer dan normaal',
if(PFTotals >= 2 && PFTotals <= 3,
'Veel',
if(PFTotals >= 4 && PFTotals <= 5,
'Heel veel',
''
)
)
)
)
)
)
)
)}