diff --git a/mobile/android/locales/filter.py b/mobile/android/locales/filter.py index 53bce573a8f4..70217cf87fbe 100644 --- a/mobile/android/locales/filter.py +++ b/mobile/android/locales/filter.py @@ -36,7 +36,8 @@ def test(mod, path, entity = None): if (re.match(r"browser\.search\.order\.[1-9]", entity) or re.match(r"browser\.contentHandlers\.types\.[0-5]", entity) or re.match(r"gecko\.handlerService\.schemes\.", entity) or - re.match(r"gecko\.handlerService\.defaultHandlersVersion", entity)): + re.match(r"gecko\.handlerService\.defaultHandlersVersion", entity) or + re.match(r"browser\.suggestedsites\.", entity)): return "ignore" return "error" diff --git a/mobile/locales/filter.py b/mobile/locales/filter.py index 68f78766f531..591b2d34026e 100644 --- a/mobile/locales/filter.py +++ b/mobile/locales/filter.py @@ -36,7 +36,8 @@ def test(mod, path, entity = None): if (re.match(r"browser\.search\.order\.[1-9]", entity) or re.match(r"browser\.contentHandlers\.types\.[0-5]", entity) or re.match(r"gecko\.handlerService\.schemes\.", entity) or - re.match(r"gecko\.handlerService\.defaultHandlersVersion", entity)): + re.match(r"gecko\.handlerService\.defaultHandlersVersion", entity) or + re.match(r"browser\.suggestedsites\.", entity)): return "ignore" return "error"