git ssb

2+

mixmix / ticktack



Tree: 74c2a9875f6869e3cc0b3448d52f059aff9a2bfb

Files: 74c2a9875f6869e3cc0b3448d52f059aff9a2bfb / 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
17
18merge(zh, en, customizer)
19// signature: obj, src, customizer
20// order matters because of customizer
21

Built with git-ssb-web