Actions

Translations

Translations:ExpressionScript How-tos/49/nl

From LimeSurvey Manual

Revision as of 15:47, 21 May 2020 by Han (talk | contribs) (Created page with "{| |#||Code||Vraag||Type||Relevantie |- |1||numKids||Hoeveel kinderen heeft u?||Numerical input||1 |- |2||kid1||Hoe oud is uw eerste kind?||Numerical input||numKids >= 1 |- |3...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
# Code Vraag Type Relevantie
1 numKids Hoeveel kinderen heeft u? Numerical input 1
2 kid1 Hoe oud is uw eerste kind? Numerical input numKids >= 1
3 kid2 Hoe oud is uw tweede kind? Numerical input numKids >= 2
4 kid3 Hoe oud is uw derde kind? Numerical input numKids >= 3
5 kid4 Hoe oud is uw vierde kind? Numerical input numKids >= 4
6 sumKidAges {sum(kid1.NAOK,kid2.NAOK,kid3.NAOK,kid4.NAOK)} Equation 1
7 kidSummary U heeft aangegeven dat u {numKids}. {if(numKids==1,'kind','kinderen')} heeft. {if(numKids>1,implode(' ','De som van de leeftijden van uw eerste ',min(numKids,4),' kinderen is ',sumKidAges,'.'),' ')} Text display 1