Software for translating batch file names

I’ve got a ton of files and folders that need to be translated to English. Since there are so many, I’m looking for a way to automate it.

Are you talking about translating the content inside the files or just the file names? If it’s the file names, you can automate that with a script in PowerShell or AutoHotKey.

In PowerShell, you’d start by making a hash table with your translations—each key is a word you want to translate, and each value is the translation. Then, you’d loop through all your folders and files, find the words, and replace them.

Just make sure to back up your original files before running or testing the script!

I have no idea where to even begin. I’m not a programmer…