Hi people,
I have a curious problem when I have reviewed the English translation of my game.
I have a character named Charlene, and it's defined as "ch."
In the original code, whose text is in Spanish, I can use it without problems, both "ch" and "chch" which is the variable I use when the character thinks something.
On the other hand, when running the game in English, I have the problem that does not show me the name of the character on screen, but the dialog shows.
It doesn't appear if I use "ch" or "chch", but if I try to change the translated line so that another character says it, for example the protagonist that would be "t", the name is shown.
It's very strange... I thought that maybe the letters "ch" could be used as a diminutive of "character" in renpy and that could cause the problem, but if so I suppose I would also have the same problem with the Spanish text, and that's not so.
Do you know why?
I have a curious problem when I have reviewed the English translation of my game.
I have a character named Charlene, and it's defined as "ch."
Code:
define ch = Character("Charlene",color="#D5F5E3",image="charlenespeak")
On the other hand, when running the game in English, I have the problem that does not show me the name of the character on screen, but the dialog shows.
It doesn't appear if I use "ch" or "chch", but if I try to change the translated line so that another character says it, for example the protagonist that would be "t", the name is shown.
It's very strange... I thought that maybe the letters "ch" could be used as a diminutive of "character" in renpy and that could cause the problem, but if so I suppose I would also have the same problem with the Spanish text, and that's not so.
Do you know why?