I use https://github.com/mikawa/G-TADS to create a german TADS project.
I installed the 'de_de' files from there.
I created an example project with
- an utf8 charset and
- a starting room containing mutated vowel (ÄÖÜäöüß)
beispiel.t
#charset "utf8"
//...
#include <adv3.h>
#include <de_de.h>
//...
startRoom: Room 'Startraum'
"Das ist der Startraum. Umlaute sind ÄÖÜ äöü ß etc... Gib 'über' ein..."
;
Then i compile my project and I run the t3-file:
The output is ok (I see the mutated vowel rendered correctly with the curses interface).
However, if I enter a mutated vowel I get "??" instead of the vowel (e.g. '??ber' instead of 'über'). The text is interpreted correctly, only the rendered input text is wrong.
Note: with the plain interface works as expected.
I use https://github.com/mikawa/G-TADS to create a german TADS project.
I installed the 'de_de' files from there.
I created an example project with
beispiel.t
Then i compile my project and I run the t3-file:
The output is ok (I see the mutated vowel rendered correctly with the curses interface).
However, if I enter a mutated vowel I get "??" instead of the vowel (e.g. '??ber' instead of 'über'). The text is interpreted correctly, only the rendered input text is wrong.
Note: with the plain interface works as expected.