diff options
author | Herman Junge <herman.junge@consensys.net> | 2018-03-20 01:16:11 +0800 |
---|---|---|
committer | Herman Junge <herman.junge@consensys.net> | 2018-03-21 01:53:29 +0800 |
commit | 03587c96d86b439ef924bde12cf0ce5012983f38 (patch) | |
tree | 51bcb896f94e46102176c6ce3fbe244ee2e24c66 | |
parent | 72bfe74243d2ac986f4ae8ed8fd6b58c95aaad44 (diff) | |
download | tangerine-wallet-browser-03587c96d86b439ef924bde12cf0ce5012983f38.tar.gz tangerine-wallet-browser-03587c96d86b439ef924bde12cf0ce5012983f38.tar.zst tangerine-wallet-browser-03587c96d86b439ef924bde12cf0ce5012983f38.zip |
Move file to development, fix JS
-rw-r--r-- | development/verify-locale-strings.js (renamed from app/scripts/verify-locale-strings.js) | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/app/scripts/verify-locale-strings.js b/development/verify-locale-strings.js index b1234a43c..b8fe5a7dc 100644 --- a/app/scripts/verify-locale-strings.js +++ b/development/verify-locale-strings.js @@ -50,47 +50,47 @@ try { console.log('\tverifying whether all your locale strings are contained in the english one') var counter = 0 -var foundError = false +var foundErrorA = false var notFound = []; Object.keys(localeObj).forEach(function(key){ if (!englishObj[key]) { - foundError = true + foundErrorA = true notFound.push(key) } counter++ }) -if (foundError) { +if (foundErrorA) { console.log('\nThe following string(s) is(are) not found in the english locale:') notFound.forEach(function(key) { console.log(key) }) - process.exit(1) +} else { + console.log('\tall ' + counter +' strings declared in your locale were found in the english one') } -console.log('\tall ' + counter +' strings declared in your locale were found in the english one') - console.log('\n\tverifying whether your locale contains all english strings') var counter = 0 -var foundError = false +var foundErrorB = false var notFound = []; Object.keys(englishObj).forEach(function(key){ if (!localeObj[key]) { - foundError = true + foundErrorB = true notFound.push(key) } counter++ }) -if (foundError) { +if (foundErrorB) { console.log('\nThe following string(s) is(are) not found in the your locale:') notFound.forEach(function(key) { console.log(key) }) - process.exit(1) +} else { + console.log('\tall ' + counter +' english strings were found in your locale!') } -console.log('\tall ' + counter +' english strings were found in your locale!') - -console.log('You are good to go')
\ No newline at end of file +if (!foundErrorA && !foundErrorB) { + console.log('You are good to go') +}
\ No newline at end of file |