Hello
I use Godot 3.5.1 stable and I have a problem with my csv translation files.
Some days ago, I load some csv files in my project and they work properly. Now I want to add a new one, but for some reason the translations in it are not properly used, while the file is correctly imported.
So I have Divers.csv, working correctly. I create Ennemis.csv with this content :
keys;fr;en
NOMGOBELIN;Gobelin;Goblin
NOMORQUE;Orque;Orc
NOM_SUCCUBE;Succube;Succubus
I load it in godot, the engine create Ennemis.en.translation and Ennemis.fr.translation files, but when I run the game, the tags NOMGOBELIN, NOMORQUE and NOM_SUCCUBE are not replaced. If I switch the content of Divers.csv and Ennemis.csv and load them in godot, what was previously in Divers.csv and now in Ennemis.csv does not work anymore while the previous content of Ennemis.csv (now in Divers.csv) now works properly.
I don't have any error when I load the files. I don't understand why this new file is not working.