git ssb

2+

mixmix / ticktack



Tree: 73f2831d1e46d5f06a3a5a6472ceb0af6f88c50b

Files: 73f2831d1e46d5f06a3a5a6472ceb0af6f88c50b / 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