Actions

Translations

Questions - introduction/23/de: Difference between revisions

From LimeSurvey Manual

No edit summary
No edit summary
 
(4 intermediate revisions by one other user not shown)
Line 1: Line 1:
<syntaxhighlight lang="php" enclose="div">Hello {TOKEN:FIRSTNAME}. We sent an email to you using this address {TOKEN:EMAIL}. Is this correct?
<syntaxhighlight lang="php">Was denken Sie als {TOKEN:ATTRIBUTE_1} über Ihr {if(TOKEN:ATTRIBUTE_1=='worker','bosses','workers')}?</syntaxhighlight>
What do you as a {TOKEN:ATTRIBUTE_1} think about your
<script type="text/javascript" language="Javascript">;
  var job='{TOKEN:ATTRIBUTE_1}';
  if (job=='worker') {
      document.write ('bosses')
  } else {
      document.write('workers')
  }
</script>
?
</syntaxhighlight>
XXX
<syntaxhighlight lang="php" enclose="div">
Was denken Sie als {TOKEN:ATTRIBUTE_1} über Ihren {if(TOKEN:ATTRIBUTE_1=='Angestellter','Vorgesetzten','Angestellter')}?
</syntaxhighlight>

Latest revision as of 08:16, 1 August 2023

Message definition (Questions - introduction)
<syntaxhighlight lang="php">What do you as a {TOKEN:ATTRIBUTE_1} think about your {if(TOKEN:ATTRIBUTE_1=='worker','bosses','workers')}?</syntaxhighlight>
Was denken Sie als {TOKEN:ATTRIBUTE_1} über Ihr {if(TOKEN:ATTRIBUTE_1=='worker','bosses','workers')}?