gecko-dev/toolkit/locales/gen_multilocale.py
Zibi Braniecki 026b20f505 Bug 1412751 - Move the multilocale.json generation to python and add to moz.build. r=chmanchester
MozReview-Commit-ID: 2MalHxkcFxn

--HG--
extra : rebase_source : 2ca8f3ff9b2dc7b31d2564a3b5222776131dcb93
2017-10-30 09:50:16 -07:00

22 lines
524 B
Python

# 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/.
from __future__ import print_function, unicode_literals
import json
import sys
def main(output, *locales):
locales = list(locales)
if "en-US" not in locales:
locales.append("en-US")
json.dump({
"locales": locales
}, output)
if __name__ == '__main__':
main(sys.stdout, *sys.argv[1:])