ShowConfirmation nanoflow activity internationalization

0
Hello, I have a nanoflow which, in some case, need to show a confirmation popup and ask the user to continue or not the action implemented in the nanoflow. For this I use the showConfirmation activity (from NanoflowCommons module). The display is great at one exception. The title, message and button captions of the activity do not seam to be internationalized in the same way as for other activities, widgets ... Am I wrong? if yes, what am I missing. Thx in advance for answers.
asked
1 answers
0

This is correct and unfortunately works the same for all widgets that have a straight expression in them instead of a caption / template.

 

As a workaround, you can do various things:

 

  • Make a decision for the selected language and add a separate "show confirmation" for each language

or, my personal preference:

 

  • Make one or more enums that have the correct title / question / proceed button caption / cancel button caption in them, and add those to the "Show confirmation" action. Since enums do have translations, you can still use the batch translation feature to translate everything and it's automatically set correctly based on the user's language.

None of these are ideal, but in the absence of a better way, this does work.

answered