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/Settings/MasterSettingsProvider.js')
-rw-r--r--src/js/Settings/MasterSettingsProvider.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/js/Settings/MasterSettingsProvider.js b/src/js/Settings/MasterSettingsProvider.js
index 56db00b..a423c45 100644
--- a/src/js/Settings/MasterSettingsProvider.js
+++ b/src/js/Settings/MasterSettingsProvider.js
@@ -60,6 +60,9 @@ class MasterSettingsProvider {
'theme.custom' : [
'sync.theme.custom',
'local.theme.custom'
+ ],
+ 'debug.localisation.enabled' : [
+ 'local.localisation.enabled'
]
};
this._defaults = {
@@ -71,7 +74,8 @@ class MasterSettingsProvider {
'password.autosubmit' : true,
'password.folder.private' : null,
'notification.password.new' : true,
- 'notification.password.update': true
+ 'notification.password.update': true,
+ 'debug.localisation.enabled' : true
};
}