Actions

Translations

Translations:ExpressionScript - Presentation/39/da

From LimeSurvey Manual

{if(er_empty(PFTotals),
 '',
 if(PFTotals >= -5 && PFTtotals <= -4,
 'Meget blød',
 if(PFTotals >= -3 && PFTotals <= -2,
 'Blød',
 if(PFTotals == -1,
 'Somewhat Soft',
 if(PFTotals == 0,
 'Moderate',
 if(PFTotals == 1,
 'Somewhat Hard',
 if(PFTotals >= 2 && PFTtotals <= 3,
 'Hard',
 if(PFTotals >= 4 && PFTtotals <= 5,
 'Meget hårdt',
 ''
 )
 )
 )
 )
 )
 )
 )
)}