Actions

Translations

Translations:ExpressionScript - Presentation/39/nl

From LimeSurvey Manual

Revision as of 15:43, 9 March 2020 by Han (talk | contribs) (Created page with "<syntaxhighlight lang="java" enclose="div">{if(is_empty(PFTotals),  '',  if(PFTotals >= -5 && PFTotals <= -4,    'Heel weinig',    if(PFTotals >= -3 && PFTotals <= -2,...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
{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',
               ''
             )
           )
         )
       )
     )
   )
 )
)}