Multilanguage using tr function display few characters

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By mmicoe

I am implementing a game with dialogues. I’m using multilanguage and it works fine even if the text doesn’t exceed a certain size.
Example:
I have a text with more than 100 letters
When I assign with the multilanguage index
$ RichTextLabel.bbcode_text = tr (“ask”)

only up to about 100 characters are displayed.
I think the problem comes from the tr function. If I directly assign all the text to the variable it shows everything. I guess there is a limit of letters with multilanguage and tr.
Is there any way to do it? I need translation in 2 languages.

It does not work: (Not all characters are displayed)
$ RichTextLabel.bbcode_text = tr (“ask”)

It works well:
$ RichTextLabel.bbcode_text = “How are you? I haven’t seen you in these places for a long time. I hope you’re very well and we can see each other more times. I’m looking for a red key.”
How can I solve it?

All the best!