Remove scripts

It has done its job, let it rest in peace
This commit is contained in:
Manav Rathi 2024-04-06 12:12:05 +05:30
parent 6bff42ad9b
commit 568f4540e3
No known key found for this signature in database

View file

@ -1,14 +0,0 @@
#!/bin/sh
# Find localization keys that are possibly not being used.
#
# Caveat emptor. Uses a heuristic grep, not perfect.
jq -r 'keys[]' packages/next/locales/en-US/translation.json | while read key
do
if ! git grep --quiet --fixed '"'$key'"' -- :^'**/translation.json'
then
echo "possibly unused key ${key}"
fi
done