Announcement

Collapse
No announcement yet.

Use translated value for options

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Use translated value for options

    Hi,

    for example, when i fill a field with 'type'

    ifThen(
    name == '',
    name = string\concatenate(type, ' ', accountName)
    );

    how can i get the translated value? I want "Reklamation" instead of "Return delivery".
    Click image for larger version

Name:	type.png
Views:	67
Size:	29.9 KB
ID:	42974

  • #2
    Hello,
    it could be possible, if you create own function for formula.
    Or (simpier) if you can define translation manually

    $transaltedType = '';
    ifThen(type == 'Complaint', $transaltedType = 'Reklamation');
    ifThen(type == 'Return Delivery', $transaltedType = 'Retoure');

    ifThen(name == '', name = string\concatenate($transaltedType, ' ', accountName));

    Comment


    • #3
      Hi Tanya,

      thanks for the anser, i try an own formula then.

      Comment

      Working...
      X