Ren'Py Translation problem [solved]

Mysters90

Member
May 22, 2022
239
1,015
One line of text is not translated through the SDK. This is what the code looks like, where the untranslated line is crossed out.

scene e4i291
m "Man...\n(That was nerve-wracking.)"
m "(I better get out and stay quiet.)"
m "(Don't want Paul bearing down on me even harder.)"
scene e4i292
m "(If that's even possible.)"
$ hideAllScreens()
scene black with fade
pause(0.5)
$ freeRoamID = "ep4_3"
jump TerraceBack

scene e4i309
m "Man...\n(That was nerve-wracking.)"
m "(I better get out and stay quiet.)"
m "(Don't want Paul bearing down on me even harder.)"
scene e4i310 with dissolve
m "(If that's even possible.)"
$ hideAllScreens()
scene black with fade
pause(0.5)
$ freeRoamID = "ep4_3"
jump TerraceBack

scene e4i309
m "Man...\n(That was nerve-wracking.)"
m "(I better get out and stay quiet.)"
m "(Don't want Paul bearing down on me even harder.)"
scene e4i310 with dissolve
m "(If that's even possible.)"
$ hideAllScreens()
scene black with fade
pause(0.5)
$ freeRoamID = "ep4_3"
jump TerraceBack
 

79flavors

Well-Known Member
Respected User
Jun 14, 2018
1,576
2,204
Based on your post, I don't see how it would fail.

My only thought is perhaps a space character which isn't really a space character or a Carriage Return/Line Feed character that isn't correct.

I would try:-
  • Remove the line.
  • Run the translator.
  • Add the line back in (type it again from scratch... not copy/paste).
  • Re-run the translator.
There is something going on here that isn't included in your post. Not your fault - just the nature of some problems.
 
  • Like
Reactions: Mysters90

Mysters90

Member
May 22, 2022
239
1,015
Based on your post, I don't see how it would fail.

My only thought is perhaps a space character which isn't really a space character or a Carriage Return/Line Feed character that isn't correct.

I would try:-
  • Remove the line.
  • Run the translator.
  • Add the line back in (type it again from scratch... not copy/paste).
  • Re-run the translator.
There is something going on here that isn't included in your post. Not your fault - just the nature of some problems.
Thanks, mate!;)
It really worked!(y)