I ran into this problem. When changing the language in my game to Spanish, some characters are displayed incorrectly.
I found a different font for Spanish.
And I wrote the following in the code:
This solved the character display problem. But a new problem appeared. The font size needs to be corrected to display correctly.
Can you suggest something?
I found a different font for Spanish.
And I wrote the following in the code:
Python:
translate Espanol python:
gui.text_font = "fonts/Onest-Regular.ttf"
gui.name_text_font = "fonts/Onest-Regular.ttf"
gui.interface_text_font = "fonts/Onest-Regular.ttf"
style.default.font = "fonts/Onest-Regular.ttf"
gui.font = "fonts/Onest-Regular.ttf"
gui.button_text_font = "fonts/Onest-Regular.ttf"
This solved the character display problem. But a new problem appeared. The font size needs to be corrected to display correctly.

Can you suggest something?