git ssb

2+

mixmix / ticktack



Tree: e421e6f554c1320df904394b27f186dbdac65de5

Files: e421e6f554c1320df904394b27f186dbdac65de5 / translations / checker.js

543 bytesRaw
1// this is a script to help spot missing translations!
2
3const merge = require('lodash/mergeWith')
4const flat = require('flat')
5
6const en = flat(require('./en'))
7const zh = flat(require('./zh'))
8
9function customizer (objVal, srcVal, key, obj, src, stack) {
10 // See docs https://lodash.com/docs/4.17.4#mergeWith
11
12 if (objVal == undefined) { // implies zh is missing key
13 if (typeof srcVal === 'string') console.log(key, '=', srcVal)
14 }
15}
16
17merge(zh, en, customizer)
18// signature: obj, src, customizer
19// order matters because of customizer
20

Built with git-ssb-web