review
Summary-only locale audit versus source locale values and structured-leaf review metadata.
bash
i18nprune review
i18nprune --json reviewScope
Use --target to limit review to selected locale files.
Related
jq usage (--json)
review --json emits ReviewJsonData in data:
kind: "localeReview"sourceLocale,localesDirdynamicKeySiteslocalesobject keyed by locale code with review counters
bash
# Show locales with highest needsReview=true counts
i18nprune review --json \
| jq '.data.locales | to_entries | map({locale: .key, needsReviewTrue: .value.needsReviewTrue}) | sort_by(-.needsReviewTrue)'See also the jq cookbook.