added fix to process.env.LANG = "C"

This commit is contained in:
reddn 2022-06-03 17:13:42 -04:00 committed by GitHub
parent 7b335661d7
commit f8cb33d5bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,11 @@ var msh = {};
var translation = JSON.parse(msh.translation);
var lang = require('util-language').current;
if (lang == null) { lang = 'en_us'; }
if (lang == null) { lang = 'en'; }
if (lang == "C"){
lang = 'en';
console.log("Langauge envronment variable was not set (process.env.LANG). Defaulting to English ('en').\nSee the agent-translations.json file for a list of current languages that are implemented\nUsage: meshcentral -lang=en\n");
}
if (process.argv.getParameter('lang', lang) == null)
{
console.log('\nCurrent Language: ' + lang + '\n');
@ -60,7 +64,8 @@ else
if (translation[lang.split('-')[0]] == null)
{
console.log('Language: ' + lang + ' is not translated.');
console.log("try: './meshcentral -lang=en_us'"
console.log("try: './meshcentral -lang=en' for English");
console.log("See the agent-translations.json file for a list of current languages that are implemented.")
process.exit();
}
else