Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/js/App/Background.js')
-rw-r--r--src/js/App/Background.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/js/App/Background.js b/src/js/App/Background.js
index e344f45..4818691 100644
--- a/src/js/App/Background.js
+++ b/src/js/App/Background.js
@@ -16,6 +16,8 @@ import ThemeService from '@js/Services/ThemeService';
import ThemeRepository from '@js/Repositories/ThemeRepository';
import SettingsService from '@js/Services/SettingsService';
import MasterSettingsProvider from '@js/Settings/MasterSettingsProvider';
+import LocalisationService from "@js/Services/LocalisationService";
+import ToastService from "@js/Services/ToastService";
class Background {
async init() {
@@ -37,6 +39,7 @@ class Background {
ContextMenuManager.init();
MiningManager.init();
await ServerManager.init();
+ await LocalisationService.init();
} catch(e) {
ErrorManager.logError(e);
}