Bug 1891710: part 2) Enable <Element-outerHTML.html> WPT for Trusted Types. r=smaug
[gecko.git] / mobile / android / locales / filter.py
bloba972c583bcfb6a17e13973f0d5538d2c2489094e
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 """This routine controls which localizable files and entries are
6 reported and l10n-merged.
7 This needs to stay in sync with the copy in mobile/locales.
8 """
11 def test(mod, path, entity=None):
12 import re
14 # ignore anything but mobile, which is our local repo checkout name
15 if mod not in ("dom", "toolkit", "mobile", "mobile/android"):
16 return "ignore"
18 if mod == "toolkit":
19 # keep this file list in sync with jar.mn
20 if path in (
21 "chrome/global/commonDialogs.properties",
22 "chrome/global/intl.properties",
23 "chrome/global/intl.css",
25 return "error"
26 if re.match(r"crashreporter/[^/]*.ftl", path):
27 # error on crashreporter/*.ftl
28 return "error"
29 if re.match(r"toolkit/about/[^/]*About.ftl", path):
30 # error on toolkit/about/*About.ftl
31 return "error"
32 if re.match(r"toolkit/about/[^/]*Mozilla.ftl", path):
33 # error on toolkit/about/*Mozilla.ftl
34 return "error"
35 if re.match(r"toolkit/about/[^/]*Rights.ftl", path):
36 # error on toolkit/about/*Rights.ftl
37 return "error"
38 if re.match(r"toolkit/about/[^/]*Compat.ftl", path):
39 # error on toolkit/about/*Compat.ftl
40 return "error"
41 if re.match(r"toolkit/about/[^/]*Support.ftl", path):
42 # error on toolkit/about/*Support.ftl
43 return "error"
44 if re.match(r"toolkit/about/[^/]*Webrtc.ftl", path):
45 # error on toolkit/about/*Webrtc.ftl
46 return "error"
47 return "ignore"
49 if mod == "dom":
50 # keep this file list in sync with jar.mn
51 if path in (
52 "chrome/accessibility/AccessFu.properties",
53 "chrome/dom/dom.properties",
55 return "error"
56 return "ignore"
58 if mod not in ("mobile", "mobile/android"):
59 # we only have exceptions for mobile*
60 return "error"
61 if mod == "mobile/android":
62 if entity is None:
63 if re.match(r"mobile-l10n.js", path):
64 return "ignore"
65 return "error"
67 return "error"