summaryrefslogtreecommitdiffstats
path: root/python/mozbuild/mozbuild/action/l10n_merge.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /python/mozbuild/mozbuild/action/l10n_merge.py
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'python/mozbuild/mozbuild/action/l10n_merge.py')
-rw-r--r--python/mozbuild/mozbuild/action/l10n_merge.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/python/mozbuild/mozbuild/action/l10n_merge.py b/python/mozbuild/mozbuild/action/l10n_merge.py
new file mode 100644
index 0000000000..1a04d60107
--- /dev/null
+++ b/python/mozbuild/mozbuild/action/l10n_merge.py
@@ -0,0 +1,42 @@
+# 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/.
+
+import argparse
+import os
+import shutil
+import sys
+
+from mozbuild.util import ensureParentDir
+
+
+def main(argv):
+ parser = argparse.ArgumentParser(description="Merge l10n files.")
+ parser.add_argument("--output", help="Path to write merged output")
+ parser.add_argument("--ref-file", help="Path to reference file (en-US)")
+ parser.add_argument("--l10n-file", help="Path to locale file")
+
+ args = parser.parse_args(argv)
+
+ from compare_locales.compare import ContentComparer, Observer
+ from compare_locales.paths import File
+
+ cc = ContentComparer([Observer()])
+ cc.compare(
+ File(args.ref_file, args.ref_file, ""),
+ File(args.l10n_file, args.l10n_file, ""),
+ args.output,
+ )
+
+ ensureParentDir(args.output)
+ if not os.path.exists(args.output):
+ src = args.l10n_file
+ if not os.path.exists(args.l10n_file):
+ src = args.ref_file
+ shutil.copy(src, args.output)
+
+ return 0
+
+
+if __name__ == "__main__":
+ main(sys.argv[1:])