From d21fe5d125e33a3910678ce10bb126519d4db06e Mon Sep 17 00:00:00 2001 From: Ryan Miller Date: Tue, 20 Aug 2024 09:59:49 +1000 Subject: [PATCH] chore: fix typo in README.md --- tools/README.md | 35 +++++++++++++++++++++++++---------- 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/tools/README.md b/tools/README.md index ff7aac361..bf96d424a 100644 --- a/tools/README.md +++ b/tools/README.md @@ -30,7 +30,8 @@ There are several script that handle localization at different stages. ### Find String -[findString.py](./findString.py) is a utility script that searches for a given token across the codebase. This script searches in the following directories: +[findString.py](./findString.py) is a utility script that searches for a given token across the codebase. This script +searches in the following directories: - `./ts/` @@ -44,7 +45,9 @@ The script can automatically open the files in VSCode by passing the `--open` fl python3 ./tools/findString.py --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. +**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. ```bash python3 ./tools/findString.py --open --limit 5 @@ -52,20 +55,28 @@ python3 ./tools/findString.py --open --limit 5 ### [CrowdIn Post-Import](./localization/crowdInPostImport.sh) -When a CrowdIn PR is made to update the localizations the [./localization/crowdInPostInstall.sh](./localization/crowdInPostImport.sh) - This script processes the imported files by running the following scripts: +When a CrowdIn PR is made to update the localizations +the [./localization/crowdInPostInstall.sh](./localization/crowdInPostImport.sh) - This script processes the imported +files by running the following scripts: -- [./util/sortJson.py](./util/sortJson.py) - This script sorts a json file and is run for all `messages.json` files locaed in `./_locales/`. -- [./localization/generateLocales.py](./localization/generateLocales.py) - This script generates the TypeScript type definitions [locales.ts](../ts/localization/locales.ts). This script also validates the dynamic variables in each locale file and flags any errors. +- [./util/sortJson.py](./util/sortJson.py) - This script sorts a json file and is run for all `messages.json` files + located in `./_locales/`. +- [./localization/generateLocales.py](./localization/generateLocales.py) - This script generates the TypeScript type + definitions [locales.ts](../ts/localization/locales.ts). This script also validates the dynamic variables in each + locale file and flags any errors. -The generated type file is not commited to the repository and is generated at build time. It is generated here to ensure that changes to any type definitions are not problematic. +The generated type file is not commited to the repository and is generated at build time. It is generated here to ensure +that changes to any type definitions are not problematic. ## [Generate Localized Strings Analysis](./localization/generateLocalizedStringsAnalysis.sh) -This script generates a report of the localized strings, identifying missing and unused strings, as well as strings that are used but not known about. Without any input files this script outputs: +This script generates a report of the localized strings, identifying missing and unused strings, as well as strings that +are used but not known about. Without any input files this script outputs: - [found_strings.csv] - A list of all strings found in the codebase. - [not_found_strings.csv] - A list of all strings not found in the codebase. -- [potental_matches.csv] - A list of all not found strings in the codebase that have a potential match using a fuzzy search. +- [potental_matches.csv] - A list of all not found strings in the codebase that have a potential match using a fuzzy + search. The script can be run with: @@ -76,5 +87,9 @@ The script can be run with: The script can also take the following arguments: - `--output-dir` - The directory to output the files to. Default is `./tools/localization/analysis/`. -- `--master-strings` - A file containging a master list of strings to compare against. This list specifies the list of known strings. When this is provided a `missing_strings.csv` file is generated. This file contains all strings in the codebase that are not in the master list. -- `--to-be-removed` - A file containging a list of strings that are to be removed from the codebase. This list specifies the list of strings that are to be removed and so won't be flagged as missing from the master lists. Any strings in this list will not appear in the `missing_strings.csv` file. +- `--master-strings` - A file containging a master list of strings to compare against. This list specifies the list of + known strings. When this is provided a `missing_strings.csv` file is generated. This file contains all strings in the + codebase that are not in the master list. +- `--to-be-removed` - A file containging a list of strings that are to be removed from the codebase. This list specifies + the list of strings that are to be removed and so won't be flagged as missing from the master lists. Any strings in + this list will not appear in the `missing_strings.csv` file.