Oh dang, I'll have to mess with this at some point when I have the time. If I can get all the text out and run it through Translator ++ there will at least be a decent starting point for a translation
what sort of file types are the game data stored in?View attachment 1402590
Good News, it works. Bad News, I have no easy way to translate this. Translator ++ only really accepts spreadsheets (.xml, .xls, etc.) And unless you can some sort of programming magic to dump, just the japanese text in a way that I can just put it through DeepL or google in a batch.
man I do not remember, but I can have another look. I enjoyed this one enough to give it another trywhat sort of file types are the game data stored in?
Hmm... Yeah It might not be impossible to program a parser of some kind to extract the text from the file into a new fileman I do not remember, but I can have another look. I enjoyed this one enough to give it another try
EDIT:
After looking the extractor is right herr on this thread. The text is stored in txt files, but there are pieces of code in there as well that can't be disturbed. So there'd have to be something to take it out and replace it without disturbing that part. here's one of the files as an example
man I do not remember, but I can have another look. I enjoyed this one enough to give it another try
EDIT:
After looking the extractor is right herr on this thread. The text is stored in txt files, but there are pieces of code in there as well that can't be disturbed. So there'd have to be something to take it out and replace it without disturbing that part. here's one of the files as an example
You must be registered to see the links
this file is ran from cmd, just drop it in the location with the text file and type "module1.py [text file name]"
If it isn't what you are looking for lemme know, It puts every new "text" on its own line
EDIT: I changed it slightly cause id messed up some of the file checking stuff (right now it would have only worked right with the one you sent but now it should be fine now.
Output file of the one you sent:
So looking at these they appear to be slightly different than the version you originally gave me. If nothing else I could grab them all and output the text to a folder that you can then use. As for the garbled text you are looking at...I want to say that has something to do with encoding. Its possible that its on your end but I assume you have the japanese language packs already installed.to help you figure it out, here's a link to all the text files I think are relevantYou must be registered to see the links
Unfortunately that would need to be done manually. It would be possible to write a file parser that can do it but it would require a lot more work...how would I insert the text back into the original file?