bug 1301940, including devtools/client for SeaMonkey, r?IanN draft
authorAxel Hecht <axel@pike.org>
Sat, 24 Sep 2016 15:44:28 +0530
changeset 20517 ddc310d2870cefa103f93d8b0a3c6e8b24e7e955
parent 20508 f8b0b5f8d2ec7a8bcd4ebcf7c0e05054d4ef62f3
push id69
push useraxel@mozilla.com
push dateSat, 24 Sep 2016 10:14:22 +0000
reviewersIanN
bugs1301940, 1305206
bug 1301940, including devtools/client for SeaMonkey, r?IanN This depends on bug 1305206 creating the devtools/client/locales/l10n.ini. MozReview-Commit-ID: KDMmWSArGWi
suite/locales/filter.py
suite/locales/l10n.ini
--- a/suite/locales/filter.py
+++ b/suite/locales/filter.py
@@ -1,17 +1,17 @@
 # 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):
   import re
   # ignore anything but SeaMonkey
   if mod not in ("netwerk", "dom", "toolkit", "security/manager",
-                 "devtools/shared",
+                 "devtools/shared", "devtools/client",
                  "editor/ui", "suite", "services/sync"):
     return "ignore"
   # ignore temporary files, hiden files and files from rejects
   if (re.match(r".*?\/[.#].+", path) or
       re.match(r".*~$", path) or
       re.match(r".+\.(orig|rej)", path)):
     return "ignore"
   if mod not in ("suite"):
--- a/suite/locales/l10n.ini
+++ b/suite/locales/l10n.ini
@@ -11,8 +11,9 @@ dirs = suite
      editor/ui
 
 [includes]
 # include toolkit and services/sync from mozilla.
 # Don't specify which, use l10n-central.ini and friends if you're
 # not working on a local check-out
 toolkit = mozilla/toolkit/locales/l10n.ini
 services_sync = mozilla/services/sync/locales/l10n.ini
+devtools_client = mozilla/devtools/client/locales/l10n.ini