-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck.cjs
53 lines (49 loc) · 1.58 KB
/
check.cjs
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
const {omit, arrKeyDiff} = require("./helpers.cjs")
/**
* @param {object} strings
* @param {string[]} installedLangs
* @param {string} file
* @return void
*/
const checkKeys = (strings, installedLangs, file) => {
const mk = arrKeyDiff(strings, installedLangs)
if (mk.length) {
const miss = mk.length > 1 ? mk.join(", ") : mk[0]
console.warn(
`WARNING: The strings file ${file} has following missing language(s): ${miss}. ` +
"Fix manually or use Fink to fix missing messages")
}
}
/**
* @param {object} strings
* @param {string} defaultLang
* @param {string[]} installedLangs
* @param {string} file
* @return boolean
*/
const checkLangFile = (strings, defaultLang, installedLangs, file) => {
const restLang = omit(strings, defaultLang)
checkKeys(strings, installedLangs, file)
if(!strings[defaultLang]){
console.warn(
`WARN: The strings file ${file} does not contain the default language ${defaultLang}. ` +
"Fix manually or use Fink to fix missing messages. Skipping")
return false
}
Object.keys(strings[defaultLang]).forEach(key => {
Object.keys(restLang).forEach(
lang => {
if (!restLang[lang][key]) {
console.warn(
`WARNING: The strings file ${file} has following missing key ${key} for language ${lang}. ` +
"Fix manually or use Fink to fix missing messages")
}
}
)
})
return true
}
module.exports = {
checkLangFile,
checkKeys
}