File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
src/scripts/crowdin/reports Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,15 @@ import crowdinClient from "../api-client/crowdinClient"
8
8
9
9
type SummaryItem = [ code : string , bucket : string , needsReview : number ]
10
10
11
+ /**
12
+ * Generates a report of words needing review for each content bucket in all languages.
13
+ * Report in CSV format with columns: Language, Bucket Name, Words needing review.
14
+ * To run:
15
+ * - Ensure CROWDIN_API_KEY is set in the .env file (.env.local will not work)
16
+ * - Can be run with `yarn crowdin-needs-review`
17
+ * - Results are saved to src/data/crowdin/report.csv
18
+ * - Report is git ignored, and should not be committed
19
+ */
11
20
async function main ( ) {
12
21
const projectId = Number ( process . env . CROWDIN_PROJECT_ID ) || 363359
13
22
You can’t perform that action at this time.
0 commit comments