This commit is contained in:
Renan LE CARO 2025-04-08 21:54:19 +02:00
parent f2bf1e3f9f
commit 83b9c0dec5
14 changed files with 322 additions and 499 deletions

4
checks.js Normal file
View file

@ -0,0 +1,4 @@
// npx nodemon checks.js
const fs= require('fs')
const english = JSON.parse(fs.readFileSync('./src/i18n/en.json'))
console.log(Object.entries(english).sort((a,b)=>a[1].length-b[1].length).slice(-10,-1).map(([k,v])=>k+'\n'+k.split('').map(c=>'=').join('')+'\n\n'+v).join('\n\n'))