Bug 1927515 - [FxMS Docs] Updates Spotlight UI template documentation in source doc...
[gecko.git] / mobile / android / locales / filter.py
blobb5f17bb122451e9e78b5664638e7f8e462f2c818
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"toolkit/about/[^/]*About.ftl", path):
27 # error on toolkit/about/*About.ftl
28 return "error"
29 if re.match(r"toolkit/about/[^/]*Mozilla.ftl", path):
30 # error on toolkit/about/*Mozilla.ftl
31 return "error"
32 if re.match(r"toolkit/about/[^/]*Rights.ftl", path):
33 # error on toolkit/about/*Rights.ftl
34 return "error"
35 if re.match(r"toolkit/about/[^/]*Compat.ftl", path):
36 # error on toolkit/about/*Compat.ftl
37 return "error"
38 if re.match(r"toolkit/about/[^/]*Support.ftl", path):
39 # error on toolkit/about/*Support.ftl
40 return "error"
41 if re.match(r"toolkit/about/[^/]*Webrtc.ftl", path):
42 # error on toolkit/about/*Webrtc.ftl
43 return "error"
44 return "ignore"
46 if mod == "dom":
47 # keep this file list in sync with jar.mn
48 if path in (
49 "chrome/accessibility/AccessFu.properties",
50 "chrome/dom/dom.properties",
52 return "error"
53 return "ignore"
55 if mod not in ("mobile", "mobile/android"):
56 # we only have exceptions for mobile*
57 return "error"
58 if mod == "mobile/android":
59 if entity is None:
60 if re.match(r"mobile-l10n.js", path):
61 return "ignore"
62 return "error"
64 return "error"