Updated French translation.

This commit is contained in:
Ylian Saint-Hilaire
2021-02-08 13:52:22 -08:00
parent b6e66a0bc0
commit f495416d4b
72 changed files with 91 additions and 2 deletions

View File

@@ -1293,7 +1293,11 @@ function getSystemInformation(func) {
} catch (e) { }
}
results.hardware.agentvers = process.versions;
results.hash = require('SHA384Stream').create().syncHash(JSON.stringify(results)).toString('hex');
func(results);
/*
// On Windows platforms, get volume information - Needs more testing.
if (process.platform == 'win32')
{
results.pendingReboot = require('win-info').pendingReboot(); // Pending reboot
@@ -1325,6 +1329,7 @@ function getSystemInformation(func) {
results.hash = require('SHA384Stream').create().syncHash(JSON.stringify(results)).toString('hex');
func(results);
}
*/
} catch (e) { func(null, e); }
}