diff options
author | Soispha <soispha@vhack.eu> | 2023-10-22 13:07:54 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-10-22 13:07:54 +0200 |
commit | 097646e66255edbf6111d514789479e3705f7600 (patch) | |
tree | 0779d10eeb8fa9d034407b78bea6c669887f8120 | |
parent | fix(hm/conf/firefox/conf/prefs): Set default toolbox location (diff) | |
download | nixos-config-097646e66255edbf6111d514789479e3705f7600.tar.gz nixos-config-097646e66255edbf6111d514789479e3705f7600.zip |
fix(hm/conf/firefox/conf/prefs): Disable translation for some languages
Diffstat (limited to '')
-rw-r--r-- | hm/soispha/conf/firefox/config/prefs/override.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/hm/soispha/conf/firefox/config/prefs/override.js b/hm/soispha/conf/firefox/config/prefs/override.js index 1cd99dcc..653230e2 100644 --- a/hm/soispha/conf/firefox/config/prefs/override.js +++ b/hm/soispha/conf/firefox/config/prefs/override.js @@ -182,6 +182,11 @@ user_pref("findbar.highlightAll", true); user_pref("devtools,toolbox.host", "right"); user_pref("devtools,toolsidebar-width.inspector", 700); +// Don't bother me with translations +user_pref("browser.translations.automaticallyPopup", true); +user_pref("browser.translations.neverTranslateLanguages", "de"); + + // TODO: //user_pref("extensions.webcompat.enable_picture_in_picture_overrides", true); //user_pref("extensions.webcompat.enable_shims", true); |