You should consider joining our Discord to ask for support.
We created a support channel using the new Discord Forum feature!
You can also visit our new website, it has a help section in English and French
The main reason you have this issue is that Pokémon uses apostrophe ’ and your keyboard can only enter single quote ' which are two different characters. Your font does not handle the apostrophe.
What you can do to solve this issue would be this:
module PFM module Text def get(file_id, text_id)get_dialog_message(CSV_BASE + file_id, text_id).tr("’ʼ","''")endendend
module PFM
module Text
def get(file_id, text_id)
get_dialog_message(CSV_BASE + file_id, text_id).tr("’ʼ","''")
end
Otherwise adding the missing glyph to the font can work and is safer (but harder)