mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
8293771f58
Migrate scripts/translation to esm GitOrigin-RevId: 475ec949f0ba238791df91de109169584e68c701
41 lines
975 B
JavaScript
41 lines
975 B
JavaScript
import fs from 'fs'
|
|
import Path from 'path'
|
|
import { fileURLToPath } from 'node:url'
|
|
import { loadLocale } from './utils.js'
|
|
|
|
const __dirname = fileURLToPath(new URL('.', import.meta.url))
|
|
const LOCALES = Path.join(__dirname, '../../locales')
|
|
const SORT_BY_PROGRESS = process.argv.includes('--sort-by-progress')
|
|
|
|
function count(language) {
|
|
const locale = loadLocale(language)
|
|
return Object.keys(locale).length
|
|
}
|
|
|
|
async function main() {
|
|
const EN = count('en')
|
|
const rows = []
|
|
|
|
for (const file of await fs.promises.readdir(LOCALES)) {
|
|
if (file === 'README.md') continue
|
|
const name = file.replace('.json', '')
|
|
const n = count(name)
|
|
rows.push({
|
|
name,
|
|
done: n,
|
|
missing: EN - n,
|
|
progress: ((100 * n) / EN).toFixed(2).padStart(5, ' ') + '%',
|
|
})
|
|
}
|
|
if (SORT_BY_PROGRESS) {
|
|
rows.sort((a, b) => b.done - a.done)
|
|
}
|
|
console.table(rows)
|
|
}
|
|
|
|
try {
|
|
await main()
|
|
} catch (error) {
|
|
console.error(error)
|
|
process.exit(1)
|
|
}
|