blob: 98363e4dd95201a6c37c1714abc9c3aaa7aa55d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Disable default browser checking
pref("browser.shell.checkDefaultBrowser", false);
// Don't disable extensions dropped in to a system
// location, or those owned by the application
pref("extensions.autoDisableScopes", 3);
// Don't display the one-off addon selection dialog when
// upgrading from a version of Waterfox older than 8.0
pref("extensions.shownSelectionUI", true);
// Use LANG environment variable to choose locale
pref("intl.locale.matchOS", true);
// Fall back to en-US search plugins if none exist for the current locale
pref("distribution.searchplugins.defaultLocale", "en-US");
// Use OS regional settings for date and time
pref("intl.regional_prefs.use_os_locales", true);
|