From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- browser/locales/filter.py | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 browser/locales/filter.py (limited to 'browser/locales/filter.py') diff --git a/browser/locales/filter.py b/browser/locales/filter.py new file mode 100644 index 0000000000..9155947e43 --- /dev/null +++ b/browser/locales/filter.py @@ -0,0 +1,36 @@ +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + + +def test(mod, path, entity=None): + # ignore anything but Firefox + if mod not in ( + "netwerk", + "dom", + "toolkit", + "security/manager", + "devtools/client", + "devtools/shared", + "devtools/startup", + "browser", + "browser/extensions/formautofill", + "browser/extensions/report-site-issue", + "extensions/spellcheck", + "other-licenses/branding/firefox", + "browser/branding/official", + "services/sync", + ): + return "ignore" + if mod not in ("browser", "extensions/spellcheck"): + # we only have exceptions for browser and extensions/spellcheck + return "error" + if entity is None: + # the only files to ignore are spell checkers + if mod == "extensions/spellcheck": + return "ignore" + return "error" + if mod == "extensions/spellcheck": + # l10n ships en-US dictionary or something, do compare + return "error" + return "error" -- cgit v1.2.3