Hi,
We want to use prompt with text containing some accents (typically "é" "à" "è", which are very often used in French language but we will have to translate the app in Polish and Turkish with some others exotic accents).
The issue is that the special characters doesn’t appear (see attached pictures)
We also tried with e2 studio to change the string in the prompt :
gx_widget_find(widget, WND_SIGNALETIQUE_BOUTON_F5_TXT_TITRE, 2, (GX_WIDGET ** ) &prompt);
sprintf(texte, "signalétique");
gx_prompt_text_set (prompt, texte);
gx_widget_find(widget, WND_SIGNALETIQUE_BOUTON_F5_TXT_TITRE, 2, (GX_WIDGET ** ) &prompt);
sprintf(texte, "signal%ctique", 0x82);
gx_prompt_text_set (prompt, texte);
We also tried to change the text file encoding in e2studio (UTF-8, US-ASCII, ISO 8859).
We think the issue may comes from GX_CHAR used in the prompt widget. GX_CHAR is defined as a signed char so we are limited to 127 characters but the accents in ASCII are for example 130 for "é".
Do you know how to use accents in guix prompts ?
Regards,