Resource Utilities component issue

I recently discovered a malfunction in the Resource Utilities component, I tried to translate quotation marks into a certain label in my application (the translation text should look like this: “translation”), I realized that you can’t just add quotation marks so I checked a bit and realized that in order to translate quotes, you should do the following: " \Translation\ " But after I put the translation file into the application I did not get the translation (nor the translations with no quotes) I prepared some examples of the problem:


tests.apk (4 .8 מ״ב) tests.aia (2 .0 ק״ב)

The JSON file is normally built in the style: “xxxxxx”: “xxxxxxxx”
By putting extra quotes, even though escaped with a backslash, the Resource Utility is not able to find the string you want anymore. You could circumvent it by putting instead of quotation marks a tilde (~) and change the tilde with a function in a quotation mark.

2 Likes

Thats a know thing with json strings.
Just use any other symbol for your quotation marks.
And then after you get the result replace the used symbol.
Thats it.

2 Likes

The same solution as I gave :+1:

2 Likes