We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1ffed2 commit 89ecb96Copy full SHA for 89ecb96
main.ts
@@ -109,7 +109,7 @@ function parseCsvFormatLocalization(txt: string): { [key: string]: string } {
109
function countUntranslatedLines(lFile: LocalizatonObj) {
110
let count = 0
111
for (const key of Object.keys(lFile)) {
112
- if (key !== "" && lFile[key].chinese === "") {
+ if (key !== "" && lFile[key].chinese === "" && lFile[key].japanese !== "") {
113
count += 1
114
}
115
0 commit comments