Coding Help json giving error and I don't know what to do

Liriocie

Greenhorn
Hello, I apologize for my horrible English, but I need help with a json translation problem.
My friend wanted to play with the Magnus RRRR mod and I offered to do the translation for her, but for some reason, it's giving several errors and I'm new to all this!
I put it in the SMAPI IO validator and it is pointing out this error: (the link here for those who want to take a closer look at the various errors.)

If anyone can help me, I would greatly appreciate it! (You can also point out other errors that appear. I know it's full...:cry:)
 

VladM

Cowpoke
Inside the message "Married.Wizard.Summer_Base_6" you have double quotes inside double quotes - it breaks JSON rules. Either remove them or replace with ordinary quotes or escape every quote with a slash(type \" instead of just "). I am talking about the part minhas energias.${{e3}}","Às vezes eu in the message 'Married.Wizard.Summer_Base_6'.

After you fix it, you get another error due to double quotes inside a string at "1589 ['Married.Wizard.Indoor_Day_1_5'] ...". Again, replace double quotes inside string with ordinary quotes(or, probably you can also escape them with a slash). I am not sure if there are more stray double quotes. But keep replacing invalid double quotes. Maybe it will fix your file.
 
Top