LauraNicolas / al-language-tools

AL Language Tools
3 stars 0 forks source link

Equal sign in translation not supported #16

Open AlexCeg opened 4 years ago

AlexCeg commented 4 years ago

It is not possible to create translations including the "=" sign. We fixed it this way. Can you adopt it?

index = translation.indexOf('='); var splittedTranslation = [translation.slice(0, index), translation.slice(index + 1)];

Arthurvdv commented 3 years ago

Today I've experienced the same issue. Is there any news on this?

felix-deutschland commented 2 years ago

We can confirm this issue still in June 2022. Any news on this or a way to 'escape' the sign?

//Edit: Solution mentioned by AlexCeg worked for me. Thx :)