Translation of the finished game written in Python. How manually input unicode non-eng characters in .ini files?
In the Knytt Underground game written in Python, ini files are used with English dialogue text (key = value - value is some dialogue phrase), when I entering the Polish character eg. ęąćź displays '?' I tried to type escape character
Code:
sometext\x119sometext
sometext\u119sometext
But it s not working. Game single backslash \ reads as a line break- (go to next line - only \ without the letter 'n')
I checked...