forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backfill-missing-localizations.js
executable file
·38 lines (33 loc) · 1.19 KB
/
backfill-missing-localizations.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env node
const fs = require('fs')
const path = require('path')
const walk = require('walk-sync')
const mkdirp = require('mkdirp').sync
const languages = require('../lib/languages')
const dirs = ['content', 'data']
// [start-readme]
//
// This script copies any English files that are missing from the translations directory into the translations directory.
// We only need to run this if problems occur with Crowdin's automatic sync.
//
// [end-readme]
dirs.forEach(dir => {
const englishPath = path.join(__dirname, `../${dir}`)
const filenames = walk(englishPath)
.filter(filename => {
return (filename.endsWith('.yml') || filename.endsWith('.md')) &&
!filename.endsWith('README.md')
})
filenames.forEach(filename => {
Object.values(languages).forEach(language => {
if (language.code === 'en') return
const fullPath = path.join(__dirname, '..', language.dir, dir, filename)
if (!fs.existsSync(fullPath)) {
console.log('missing', fullPath)
const englishFullPath = path.join(__dirname, '..', dir, filename)
mkdirp(path.dirname(fullPath))
fs.writeFileSync(fullPath, fs.readFileSync(englishFullPath))
}
})
})
})