Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.
Level 1
Level 2
Melden Sie sich an, um alle Badges zu sehen
Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.
I am trying to combine two strings and apply i18n on combined string.
${['i18nPrefix','Register'] @join='-', i18n}
Above piece of code not working and I tried combination of format, i18n etc.
I need to prepend a prefix based on site user visiting to the authored dialog property and get i18n translation.
There are scenarios where a default key need to be appended to prefix. The following has been tried and not working.
<sly data-sly-test.altKey="${'{0}-{1}' @ format=['i18nPrefix', properties.alt ? properties.alt : 'default' ]}" />
Use case : <img alt="prefixedtranslation">, <div aria-label="prefixedtranslation">text</div>, <label>prefixedtranslation</label>
Any help appreciated.
Thanks.
Gelöst! Gehe zu Lösung.
Zugriffe
Antworten
Likes gesamt
you can try like below, works for me:
<sly data-sly-test.altKey1="${'i18nPrefix' @ i18n}" />
<sly data-sly-test.altKey2="${properties.alt ? properties.alt : 'default' }" />
${altKey1}-${altKey2}
Zugriffe
Antworten
Likes gesamt
Zugriffe
Antworten
Likes gesamt
Thanks Arun.
1. format works, but not in combination with @ format, i18n
2. <img alt="prefixedtranslation">, <div aria-label="prefixedtranslation">text</div> , I can not put / use sly tags inside quotes, If I wanted to achieve combination of format, i18n on two strings how do I do that.
Zugriffe
Antworten
Likes gesamt
Zugriffe
Antworten
Likes gesamt
Zugriffe
Likes
Antworten
Zugriffe
Likes
Antworten
Zugriffe
Likes
Antworten