mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-06 21:05:37 +00:00
026b20f505
MozReview-Commit-ID: 2MalHxkcFxn --HG-- extra : rebase_source : 2ca8f3ff9b2dc7b31d2564a3b5222776131dcb93
22 lines
524 B
Python
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:])
|