forked from github/docs
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackfill-missing-localizations.js
More file actions
Latest commit
executable file
·38 lines (33 loc) · 1.19 KB
/
Copy pathbackfill-missing-localizations.js
File metadata and controls
executable file
·38 lines (33 loc) · 1.19 KB
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
constfs=require('fs')
constpath=require('path')
constwalk=require('walk-sync')
constmkdirp=require('mkdirp').sync
constlanguages=require('../lib/languages')
constdirs=['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=>{
constenglishPath=path.join(__dirname,`../${dir}`)
constfilenames=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
constfullPath=path.join(__dirname,'..',language.dir,dir,filename)
if(!fs.existsSync(fullPath)){
console.log('missing',fullPath)
constenglishFullPath=path.join(__dirname,'..',dir,filename)
mkdirp(path.dirname(fullPath))
fs.writeFileSync(fullPath,fs.readFileSync(englishFullPath))
}
})
})
})