- Python 3+ must be installed on your machine.
-
Within the terminal or command prompt, navigate into the JSON-RSEX-CONVERTER folder. Once inside, run the python command followed by the converter file name.
python3 converter.py
python converter.py
-
After running the above command, the app should walk you through all the steps. If you wish to change the path of export, or the file name prefix, see the instructions below.
Currently the export target path is set to the export folder that is within the JSON-RESX-CONVERTER
folder.
This can be changed by adjusting the originPath
variable.
( ! ) NOTE: The path starts from its current position. See below:
originPath = "./exports"
Adjust this---|________|
Example:
orginPath = "../resources/resx-files"
The defaault file name prefix is TheLanguage
followed by user inputted language code.
This can be changed by adjusting the fileNamePrefix
variable.
fileNamePrefix = "TheLanguage"
Adjust this------|___________|
Example:
fileNamePrefix = "LanguageResource"