[./util/sortJson.py](./util/sortJson.py) sorts a given JSON file.
```bash
python3 ./tools/util/sortJson.py <file>
python ./tools/util/sortJson.py <file>
```
## Localization
@ -36,20 +40,20 @@ searches in the following directories:
- `./ts/`
```bash
python3 ./tools/findString.py <token>
python ./tools/findString.py <token>
```
The script can automatically open the files in VSCode by passing the `--open` flag.
```bash
python3 ./tools/findString.py <token> --open
python ./tools/findString.py <token> --open
```
> [!WARNING]
> The --open flag will open only the first result for the token in VSCode. If you wish to open more files, you can pass the `--limit` flag with the maximum number of files you wish to open. You can also pass the `--limit 0` flag to open all files containing the token.