diff --git a/.gitignore b/.gitignore index 7d0a2cbf..47d85b35 100644 --- a/.gitignore +++ b/.gitignore @@ -31,4 +31,5 @@ installer/win/Symphony-x86-cache installer/win/Symphony-x86-SetupFiles package-lock.json library -*.log \ No newline at end of file +*.log +js/translation/*_missing.json \ No newline at end of file diff --git a/js/aboutApp/index.js b/js/aboutApp/index.js index 43980d3e..c06c06fc 100644 --- a/js/aboutApp/index.js +++ b/js/aboutApp/index.js @@ -8,6 +8,7 @@ const log = require('../log.js'); const logLevels = require('../enums/logLevels.js'); const buildNumber = require('../../package.json').buildNumber; const { initCrashReporterMain, initCrashReporterRenderer } = require('../crashReporter.js'); +const i18n = require('../translation/i18n'); let aboutWindow; @@ -90,8 +91,8 @@ function openAboutWindow(windowName) { aboutWindow.webContents.on('crashed', function () { const options = { type: 'error', - title: 'Renderer Process Crashed', - message: 'Oops! Looks like we have had a crash.', + title: i18n.getMessageFor('Renderer Process Crashed'), + message: i18n.getMessageFor('Oops! Looks like we have had a crash.'), buttons: ['Close'] }; diff --git a/js/basicAuth/basic-auth.html b/js/basicAuth/basic-auth.html index fd5ea733..5291ef37 100644 --- a/js/basicAuth/basic-auth.html +++ b/js/basicAuth/basic-auth.html @@ -2,12 +2,13 @@
-