@angular/localize 14.0.0-next.9 → 14.0.0-rc.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/esm2020/init/index.mjs +3 -3
  2. package/esm2020/localize.mjs +1 -1
  3. package/esm2020/private.mjs +2 -1
  4. package/esm2020/src/localize/src/global.mjs +10 -10
  5. package/esm2020/src/localize/src/localize.mjs +2 -27
  6. package/esm2020/src/utils/src/messages.mjs +1 -5
  7. package/fesm2015/init.mjs +4 -189
  8. package/fesm2015/init.mjs.map +1 -1
  9. package/fesm2015/localize.mjs +166 -10
  10. package/fesm2015/localize.mjs.map +1 -1
  11. package/fesm2020/init.mjs +4 -189
  12. package/fesm2020/init.mjs.map +1 -1
  13. package/fesm2020/localize.mjs +166 -10
  14. package/fesm2020/localize.mjs.map +1 -1
  15. package/index.d.ts +484 -5
  16. package/init/index.d.ts +3 -2
  17. package/package.json +8 -7
  18. package/schematics/ng-add/index.js +1 -1
  19. package/tools/bundles/{chunk-LRGT6B5H.js → chunk-J3LMZVGT.js} +18 -18
  20. package/tools/bundles/chunk-J3LMZVGT.js.map +6 -0
  21. package/tools/bundles/{chunk-SJTMYW2P.js → chunk-ZD3ZFOL2.js} +6 -6
  22. package/tools/bundles/{chunk-SJTMYW2P.js.map → chunk-ZD3ZFOL2.js.map} +1 -1
  23. package/tools/bundles/{chunk-ACSZQPVL.js → chunk-ZKAQNLEF.js} +18 -18
  24. package/tools/bundles/{chunk-ACSZQPVL.js.map → chunk-ZKAQNLEF.js.map} +1 -1
  25. package/tools/bundles/index.js +4 -4
  26. package/tools/bundles/src/extract/cli.js +5 -5
  27. package/tools/bundles/src/migrate/cli.js +5 -5
  28. package/tools/bundles/src/translate/cli.js +11 -11
  29. package/tools/bundles/src/translate/cli.js.map +1 -1
  30. package/tools/bundles_metadata.json +1 -1
  31. package/tools/src/translate/translation_files/translation_parsers/arb_translation_parser.d.ts +2 -2
  32. package/tools/src/translate/translation_files/translation_parsers/translation_parser.d.ts +2 -2
  33. package/tools/src/translate/translator.d.ts +2 -2
  34. package/init/package.json +0 -9
  35. package/localize.d.ts +0 -9
  36. package/private.d.ts +0 -8
  37. package/src/localize/index.d.ts +0 -9
  38. package/src/localize/src/global.d.ts +0 -16
  39. package/src/localize/src/localize.d.ts +0 -138
  40. package/src/translate.d.ts +0 -61
  41. package/src/utils/index.d.ts +0 -10
  42. package/src/utils/src/constants.d.ts +0 -57
  43. package/src/utils/src/messages.d.ts +0 -239
  44. package/src/utils/src/translations.d.ts +0 -58
  45. package/tools/bundles/chunk-LRGT6B5H.js.map +0 -6
@@ -12,32 +12,32 @@ import {
12
12
  makeEs2015TranslatePlugin,
13
13
  makeEs5TranslatePlugin,
14
14
  makeLocalePlugin
15
- } from "../../chunk-ACSZQPVL.js";
15
+ } from "../../chunk-ZKAQNLEF.js";
16
16
  import {
17
17
  Diagnostics,
18
18
  parseSync,
19
19
  transformFromAstSync
20
- } from "../../chunk-SJTMYW2P.js";
20
+ } from "../../chunk-ZD3ZFOL2.js";
21
21
  import {
22
22
  __spreadProps,
23
23
  __spreadValues
24
24
  } from "../../chunk-LVTJYDSU.js";
25
25
 
26
- // bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/cli.mjs
26
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/cli.mjs
27
27
  import { NodeJSFileSystem, setFileSystem } from "@angular/compiler-cli/private/localize";
28
28
  import glob from "glob";
29
29
  import yargs from "yargs";
30
30
 
31
- // bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/output_path.mjs
31
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/output_path.mjs
32
32
  function getOutputPathFn(fs2, outputFolder) {
33
33
  const [pre, post] = outputFolder.split("{{LOCALE}}");
34
34
  return post === void 0 ? (_locale, relativePath) => fs2.join(pre, relativePath) : (locale, relativePath) => fs2.join(pre + locale + post, relativePath);
35
35
  }
36
36
 
37
- // bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/index.mjs
37
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/index.mjs
38
38
  import { getFileSystem, relativeFrom } from "@angular/compiler-cli/private/localize";
39
39
 
40
- // bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/asset_files/asset_translation_handler.mjs
40
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/asset_files/asset_translation_handler.mjs
41
41
  import { absoluteFrom } from "@angular/compiler-cli/private/localize";
42
42
  var AssetTranslationHandler = class {
43
43
  constructor(fs2) {
@@ -65,7 +65,7 @@ var AssetTranslationHandler = class {
65
65
  }
66
66
  };
67
67
 
68
- // bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/source_file_translation_handler.mjs
68
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/source_file_translation_handler.mjs
69
69
  import { absoluteFrom as absoluteFrom2 } from "@angular/compiler-cli/private/localize";
70
70
  var SourceFileTranslationHandler = class {
71
71
  constructor(fs2, translationOptions = {}) {
@@ -132,7 +132,7 @@ var SourceFileTranslationHandler = class {
132
132
  }
133
133
  };
134
134
 
135
- // bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_loader.mjs
135
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_loader.mjs
136
136
  var TranslationLoader = class {
137
137
  constructor(fs2, translationParsers, duplicateTranslation2, diagnostics2) {
138
138
  this.fs = fs2;
@@ -202,7 +202,7 @@ ${parser.constructor.name} cannot parse translation file.`));
202
202
  }
203
203
  };
204
204
 
205
- // bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translator.mjs
205
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translator.mjs
206
206
  var Translator = class {
207
207
  constructor(fs2, resourceHandlers, diagnostics2) {
208
208
  this.fs = fs2;
@@ -224,7 +224,7 @@ var Translator = class {
224
224
  }
225
225
  };
226
226
 
227
- // bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/index.mjs
227
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/index.mjs
228
228
  function translateFiles({ sourceRootPath: sourceRootPath2, sourceFilePaths: sourceFilePaths2, translationFilePaths: translationFilePaths2, translationFileLocales: translationFileLocales2, outputPathFn: outputPathFn2, diagnostics: diagnostics2, missingTranslation: missingTranslation2, duplicateTranslation: duplicateTranslation2, sourceLocale: sourceLocale2 }) {
229
229
  const fs2 = getFileSystem();
230
230
  const translationLoader = new TranslationLoader(fs2, [
@@ -244,7 +244,7 @@ function translateFiles({ sourceRootPath: sourceRootPath2, sourceFilePaths: sour
244
244
  resourceProcessor.translateFiles(sourceFilePaths2.map(relativeFrom), fs2.resolve(sourceRootPath2), outputPathFn2, translations, sourceLocale2);
245
245
  }
246
246
 
247
- // bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/cli.mjs
247
+ // bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/cli.mjs
248
248
  process.title = "Angular Localization Message Translator (localize-translate)";
249
249
  var args = process.argv.slice(2);
250
250
  var options = yargs(args).option("r", {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../../../../../packages/localize/tools/src/translate/cli.ts", "../../../../../../../../../packages/localize/tools/src/translate/output_path.ts", "../../../../../../../../../packages/localize/tools/src/translate/index.ts", "../../../../../../../../../packages/localize/tools/src/translate/asset_files/asset_translation_handler.ts", "../../../../../../../../../packages/localize/tools/src/translate/source_files/source_file_translation_handler.ts", "../../../../../../../../../packages/localize/tools/src/translate/translation_files/translation_loader.ts", "../../../../../../../../../packages/localize/tools/src/translate/translator.ts"],
4
- "mappings": "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",
4
+ "mappings": "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",
5
5
  "names": []
6
6
  }
@@ -1 +1 @@
1
- {"inputs":{"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs":{"bytes":5389,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/babel_core.mjs":{"bytes":7508,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs":{"bytes":54935,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/babel_core.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/duplicates.mjs":{"bytes":7010,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/source_files/es2015_extract_plugin.mjs":{"bytes":4652,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/source_files/es5_extract_plugin.mjs":{"bytes":6418,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/extraction.mjs":{"bytes":16615,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/babel_core.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/source_files/es2015_extract_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/source_files/es5_extract_plugin.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs":{"bytes":8408,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/arb_translation_serializer.mjs":{"bytes":10933,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/json_translation_serializer.mjs":{"bytes":3368,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/legacy_message_id_migration_serializer.mjs":{"bytes":5351,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/format_options.mjs":{"bytes":5222,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/icu_parsing.mjs":{"bytes":20328,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xml_file.mjs":{"bytes":9339,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff1_translation_serializer.mjs":{"bytes":28295,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/format_options.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/icu_parsing.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xml_file.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff2_translation_serializer.mjs":{"bytes":28477,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/format_options.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/icu_parsing.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xml_file.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xmb_translation_serializer.mjs":{"bytes":15548,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/icu_parsing.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xml_file.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/es2015_translate_plugin.mjs":{"bytes":6575,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/es5_translate_plugin.mjs":{"bytes":6134,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/locale_plugin.mjs":{"bytes":12061,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/babel_core.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/arb_translation_parser.mjs":{"bytes":9078,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/simple_json_translation_parser.mjs":{"bytes":10194,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs":{"bytes":2396,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_parse_error.mjs":{"bytes":3507,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs":{"bytes":18490,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_parse_error.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/message_serializer.mjs":{"bytes":12319,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_parse_error.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/target_message_renderer.mjs":{"bytes":6780,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/serialize_translation_message.mjs":{"bytes":3680,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/message_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/target_message_renderer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff1_translation_parser.mjs":{"bytes":20945,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/serialize_translation_message.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff2_translation_parser.mjs":{"bytes":20464,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/serialize_translation_message.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xtb_translation_parser.mjs":{"bytes":16229,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/serialize_translation_message.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/index.mjs":{"bytes":7332,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/duplicates.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/extraction.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/arb_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/json_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/legacy_message_id_migration_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff1_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff2_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xmb_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/es2015_translate_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/es5_translate_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/locale_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/arb_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/simple_json_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff1_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff2_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xtb_translation_parser.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/index.mjs":{"bytes":12788,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/duplicates.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/extraction.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/arb_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/json_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/legacy_message_id_migration_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff1_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff2_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xmb_translation_serializer.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/cli.mjs":{"bytes":13116,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/format_options.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/index.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/migrate/migrate.mjs":{"bytes":2970,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/migrate/index.mjs":{"bytes":4899,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/migrate/migrate.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/migrate/cli.mjs":{"bytes":5580,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/migrate/index.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/output_path.mjs":{"bytes":2977,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/asset_files/asset_translation_handler.mjs":{"bytes":5487,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/source_file_translation_handler.mjs":{"bytes":15256,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/babel_core.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/es2015_translate_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/es5_translate_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/locale_plugin.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_loader.mjs":{"bytes":17983,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translator.mjs":{"bytes":7651,"imports":[]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/index.mjs":{"bytes":11639,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/asset_files/asset_translation_handler.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/source_file_translation_handler.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_loader.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/arb_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/simple_json_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff1_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff2_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xtb_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translator.mjs","kind":"import-statement"}]},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/cli.mjs":{"bytes":15353,"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/output_path.mjs","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/index.mjs","kind":"import-statement"}]}},"outputs":{"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/index.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":198},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/index.js":{"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-LRGT6B5H.js","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-ACSZQPVL.js","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-SJTMYW2P.js","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js","kind":"import-statement"}],"exports":["ArbTranslationParser","ArbTranslationSerializer","Diagnostics","LegacyMessageIdMigrationSerializer","MessageExtractor","SimpleJsonTranslationParser","SimpleJsonTranslationSerializer","Xliff1TranslationParser","Xliff1TranslationSerializer","Xliff2TranslationParser","Xliff2TranslationSerializer","XmbTranslationSerializer","XtbTranslationParser","buildLocalizeReplacement","checkDuplicateMessages","isGlobalIdentifier","makeEs2015TranslatePlugin","makeEs5TranslatePlugin","makeLocalePlugin","translate","unwrapExpressionsFromTemplateLiteral","unwrapMessagePartsFromLocalizeCall","unwrapMessagePartsFromTemplateLiteral","unwrapSubstitutionsFromLocalizeCall"],"entryPoint":"bazel-out/k8-fastbuild/bin/packages/localize/tools/index.mjs","inputs":{"bazel-out/k8-fastbuild/bin/packages/localize/tools/index.mjs":{"bytesInOutput":129}},"bytes":2078},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/src/extract/cli.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":2522},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/src/extract/cli.js":{"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-LRGT6B5H.js","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-SJTMYW2P.js","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js","kind":"import-statement"}],"exports":[],"entryPoint":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/cli.mjs","inputs":{"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/cli.mjs":{"bytesInOutput":3053},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/index.mjs":{"bytesInOutput":2103}},"bytes":6137},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-LRGT6B5H.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":18640},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-LRGT6B5H.js":{"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-SJTMYW2P.js","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js","kind":"import-statement"}],"exports":["ArbTranslationSerializer","LegacyMessageIdMigrationSerializer","MessageExtractor","SimpleJsonTranslationSerializer","Xliff1TranslationSerializer","Xliff2TranslationSerializer","XmbTranslationSerializer","checkDuplicateMessages","parseFormatOptions"],"inputs":{"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/duplicates.mjs":{"bytesInOutput":1244},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/extraction.mjs":{"bytesInOutput":3071},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/source_files/es2015_extract_plugin.mjs":{"bytesInOutput":836},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/source_files/es5_extract_plugin.mjs":{"bytesInOutput":1123},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs":{"bytesInOutput":1180},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/arb_translation_serializer.mjs":{"bytesInOutput":1945},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/json_translation_serializer.mjs":{"bytesInOutput":412},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/legacy_message_id_migration_serializer.mjs":{"bytesInOutput":925},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/format_options.mjs":{"bytesInOutput":760},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff1_translation_serializer.mjs":{"bytesInOutput":5344},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/icu_parsing.mjs":{"bytesInOutput":2268},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xml_file.mjs":{"bytesInOutput":1984},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff2_translation_serializer.mjs":{"bytesInOutput":5565},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xmb_translation_serializer.mjs":{"bytesInOutput":2772}},"bytes":32178},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/src/migrate/cli.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":1484},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/src/migrate/cli.js":{"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js","kind":"import-statement"}],"exports":[],"entryPoint":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/migrate/cli.mjs","inputs":{"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/migrate/cli.mjs":{"bytesInOutput":1154},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/migrate/index.mjs":{"bytesInOutput":829},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/migrate/migrate.mjs":{"bytesInOutput":407}},"bytes":3192},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/src/translate/cli.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":7139},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/src/translate/cli.js":{"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-ACSZQPVL.js","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-SJTMYW2P.js","kind":"import-statement"},{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js","kind":"import-statement"}],"exports":[],"entryPoint":"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/cli.mjs","inputs":{"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/cli.mjs":{"bytesInOutput":3502},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/output_path.mjs":{"bytesInOutput":259},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/index.mjs":{"bytesInOutput":1423},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/asset_files/asset_translation_handler.mjs":{"bytesInOutput":978},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/source_file_translation_handler.mjs":{"bytesInOutput":3051},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_loader.mjs":{"bytesInOutput":3415},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translator.mjs":{"bytesInOutput":884}},"bytes":15138},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-ACSZQPVL.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":16693},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-ACSZQPVL.js":{"imports":[{"path":"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-SJTMYW2P.js","kind":"import-statement"}],"exports":["ArbTranslationParser","SimpleJsonTranslationParser","Xliff1TranslationParser","Xliff2TranslationParser","XtbTranslationParser","makeEs2015TranslatePlugin","makeEs5TranslatePlugin","makeLocalePlugin"],"inputs":{"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/es2015_translate_plugin.mjs":{"bytesInOutput":926},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/es5_translate_plugin.mjs":{"bytesInOutput":1021},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/source_files/locale_plugin.mjs":{"bytesInOutput":1679},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/arb_translation_parser.mjs":{"bytesInOutput":1276},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/simple_json_translation_parser.mjs":{"bytesInOutput":1952},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff1_translation_parser.mjs":{"bytesInOutput":4196},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs":{"bytesInOutput":289},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/message_serializer.mjs":{"bytesInOutput":2396},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_parse_error.mjs":{"bytesInOutput":558},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs":{"bytesInOutput":3101},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/target_message_renderer.mjs":{"bytesInOutput":1284},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/serialize_translation_message.mjs":{"bytesInOutput":428},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff2_translation_parser.mjs":{"bytesInOutput":4243},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xtb_translation_parser.mjs":{"bytesInOutput":3169}},"bytes":29441},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-SJTMYW2P.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":7175},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-SJTMYW2P.js":{"imports":[],"exports":["Diagnostics","buildCodeFrameError","buildLocalizeReplacement","getLocation","isBabelParseError","isGlobalIdentifier","isLocalize","isNamedIdentifier","parseSync","serializeLocationPosition","transformFromAstSync","transformSync","translate","types","unwrapExpressionsFromTemplateLiteral","unwrapMessagePartsFromLocalizeCall","unwrapMessagePartsFromTemplateLiteral","unwrapSubstitutionsFromLocalizeCall"],"inputs":{"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs":{"bytesInOutput":906},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs":{"bytesInOutput":10402},"bazel-out/k8-fastbuild/bin/packages/localize/tools/src/babel_core.mjs":{"bytesInOutput":472}},"bytes":12910},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":69},"bazel-out/k8-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js":{"imports":[],"exports":["__spreadProps","__spreadValues"],"inputs":{},"bytes":1074}}}
1
+ {"inputs":{"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs":{"bytes":5389,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/babel_core.mjs":{"bytes":7508,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs":{"bytes":54929,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/babel_core.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/duplicates.mjs":{"bytes":7026,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/source_files/es2015_extract_plugin.mjs":{"bytes":4652,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/source_files/es5_extract_plugin.mjs":{"bytes":6418,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/extraction.mjs":{"bytes":16615,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/babel_core.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/source_files/es2015_extract_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/source_files/es5_extract_plugin.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs":{"bytes":8404,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/arb_translation_serializer.mjs":{"bytes":10933,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/json_translation_serializer.mjs":{"bytes":3374,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/legacy_message_id_migration_serializer.mjs":{"bytes":5351,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/format_options.mjs":{"bytes":5222,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/icu_parsing.mjs":{"bytes":20328,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xml_file.mjs":{"bytes":9339,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff1_translation_serializer.mjs":{"bytes":28295,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/format_options.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/icu_parsing.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xml_file.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff2_translation_serializer.mjs":{"bytes":28477,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/format_options.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/icu_parsing.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xml_file.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xmb_translation_serializer.mjs":{"bytes":15548,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/icu_parsing.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xml_file.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/es2015_translate_plugin.mjs":{"bytes":6575,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/es5_translate_plugin.mjs":{"bytes":6134,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/locale_plugin.mjs":{"bytes":12061,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/babel_core.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/arb_translation_parser.mjs":{"bytes":9055,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/simple_json_translation_parser.mjs":{"bytes":10194,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs":{"bytes":2396,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_parse_error.mjs":{"bytes":3507,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs":{"bytes":18490,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_parse_error.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/message_serializer.mjs":{"bytes":12319,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_parse_error.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/target_message_renderer.mjs":{"bytes":6780,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/serialize_translation_message.mjs":{"bytes":3680,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/message_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/target_message_renderer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff1_translation_parser.mjs":{"bytes":20945,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/serialize_translation_message.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff2_translation_parser.mjs":{"bytes":20464,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/serialize_translation_message.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xtb_translation_parser.mjs":{"bytes":16229,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/serialize_translation_message.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/index.mjs":{"bytes":7332,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/duplicates.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/extraction.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/arb_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/json_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/legacy_message_id_migration_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff1_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff2_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xmb_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/es2015_translate_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/es5_translate_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/locale_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/arb_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/simple_json_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff1_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff2_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xtb_translation_parser.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/index.mjs":{"bytes":12788,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/duplicates.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/extraction.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/arb_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/json_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/legacy_message_id_migration_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff1_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff2_translation_serializer.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xmb_translation_serializer.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/cli.mjs":{"bytes":13116,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/format_options.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/index.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/migrate/migrate.mjs":{"bytes":2970,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/migrate/index.mjs":{"bytes":4899,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/migrate/migrate.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/migrate/cli.mjs":{"bytes":5580,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/migrate/index.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/output_path.mjs":{"bytes":2977,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/asset_files/asset_translation_handler.mjs":{"bytes":5487,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/source_file_translation_handler.mjs":{"bytes":15256,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/babel_core.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/es2015_translate_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/es5_translate_plugin.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/locale_plugin.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_loader.mjs":{"bytes":17983,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translator.mjs":{"bytes":7657,"imports":[]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/index.mjs":{"bytes":11639,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/asset_files/asset_translation_handler.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/source_file_translation_handler.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_loader.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/arb_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/simple_json_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff1_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff2_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xtb_translation_parser.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translator.mjs","kind":"import-statement"}]},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/cli.mjs":{"bytes":15353,"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/output_path.mjs","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/index.mjs","kind":"import-statement"}]}},"outputs":{"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/index.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":198},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/index.js":{"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-J3LMZVGT.js","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-ZKAQNLEF.js","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-ZD3ZFOL2.js","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js","kind":"import-statement"}],"exports":["ArbTranslationParser","ArbTranslationSerializer","Diagnostics","LegacyMessageIdMigrationSerializer","MessageExtractor","SimpleJsonTranslationParser","SimpleJsonTranslationSerializer","Xliff1TranslationParser","Xliff1TranslationSerializer","Xliff2TranslationParser","Xliff2TranslationSerializer","XmbTranslationSerializer","XtbTranslationParser","buildLocalizeReplacement","checkDuplicateMessages","isGlobalIdentifier","makeEs2015TranslatePlugin","makeEs5TranslatePlugin","makeLocalePlugin","translate","unwrapExpressionsFromTemplateLiteral","unwrapMessagePartsFromLocalizeCall","unwrapMessagePartsFromTemplateLiteral","unwrapSubstitutionsFromLocalizeCall"],"entryPoint":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/index.mjs","inputs":{"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/index.mjs":{"bytesInOutput":129}},"bytes":2088},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/src/extract/cli.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":2522},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/src/extract/cli.js":{"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-J3LMZVGT.js","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-ZD3ZFOL2.js","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js","kind":"import-statement"}],"exports":[],"entryPoint":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/cli.mjs","inputs":{"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/cli.mjs":{"bytesInOutput":3053},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/index.mjs":{"bytesInOutput":2103}},"bytes":6167},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-J3LMZVGT.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":18655},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-J3LMZVGT.js":{"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-ZD3ZFOL2.js","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js","kind":"import-statement"}],"exports":["ArbTranslationSerializer","LegacyMessageIdMigrationSerializer","MessageExtractor","SimpleJsonTranslationSerializer","Xliff1TranslationSerializer","Xliff2TranslationSerializer","XmbTranslationSerializer","checkDuplicateMessages","parseFormatOptions"],"inputs":{"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/duplicates.mjs":{"bytesInOutput":1244},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/extraction.mjs":{"bytesInOutput":3071},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/source_files/es2015_extract_plugin.mjs":{"bytesInOutput":836},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/source_files/es5_extract_plugin.mjs":{"bytesInOutput":1123},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/utils.mjs":{"bytesInOutput":1180},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/arb_translation_serializer.mjs":{"bytesInOutput":1945},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/json_translation_serializer.mjs":{"bytesInOutput":412},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/legacy_message_id_migration_serializer.mjs":{"bytesInOutput":925},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/format_options.mjs":{"bytesInOutput":760},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff1_translation_serializer.mjs":{"bytesInOutput":5344},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/icu_parsing.mjs":{"bytesInOutput":2268},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xml_file.mjs":{"bytesInOutput":1984},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xliff2_translation_serializer.mjs":{"bytesInOutput":5565},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/extract/translation_files/xmb_translation_serializer.mjs":{"bytesInOutput":2772}},"bytes":32338},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/src/migrate/cli.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":1484},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/src/migrate/cli.js":{"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js","kind":"import-statement"}],"exports":[],"entryPoint":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/migrate/cli.mjs","inputs":{"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/migrate/cli.mjs":{"bytesInOutput":1154},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/migrate/index.mjs":{"bytesInOutput":829},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/migrate/migrate.mjs":{"bytesInOutput":407}},"bytes":3242},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/src/translate/cli.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":7144},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/src/translate/cli.js":{"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-ZKAQNLEF.js","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-ZD3ZFOL2.js","kind":"import-statement"},{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js","kind":"import-statement"}],"exports":[],"entryPoint":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/cli.mjs","inputs":{"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/cli.mjs":{"bytesInOutput":3502},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/output_path.mjs":{"bytesInOutput":259},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/index.mjs":{"bytesInOutput":1423},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/asset_files/asset_translation_handler.mjs":{"bytesInOutput":978},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/source_file_translation_handler.mjs":{"bytesInOutput":3051},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_loader.mjs":{"bytesInOutput":3415},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translator.mjs":{"bytesInOutput":884}},"bytes":15228},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-ZKAQNLEF.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":16693},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-ZKAQNLEF.js":{"imports":[{"path":"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-ZD3ZFOL2.js","kind":"import-statement"}],"exports":["ArbTranslationParser","SimpleJsonTranslationParser","Xliff1TranslationParser","Xliff2TranslationParser","XtbTranslationParser","makeEs2015TranslatePlugin","makeEs5TranslatePlugin","makeLocalePlugin"],"inputs":{"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/es2015_translate_plugin.mjs":{"bytesInOutput":926},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/es5_translate_plugin.mjs":{"bytesInOutput":1021},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/source_files/locale_plugin.mjs":{"bytesInOutput":1679},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/arb_translation_parser.mjs":{"bytesInOutput":1276},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/simple_json_translation_parser.mjs":{"bytesInOutput":1952},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff1_translation_parser.mjs":{"bytesInOutput":4196},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/base_visitor.mjs":{"bytesInOutput":289},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/message_serializer.mjs":{"bytesInOutput":2396},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_parse_error.mjs":{"bytesInOutput":558},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/translation_utils.mjs":{"bytesInOutput":3101},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/message_serialization/target_message_renderer.mjs":{"bytesInOutput":1284},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/serialize_translation_message.mjs":{"bytesInOutput":428},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xliff2_translation_parser.mjs":{"bytesInOutput":4243},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/translate/translation_files/translation_parsers/xtb_translation_parser.mjs":{"bytesInOutput":3169}},"bytes":29601},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-ZD3ZFOL2.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":7175},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-ZD3ZFOL2.js":{"imports":[],"exports":["Diagnostics","buildCodeFrameError","buildLocalizeReplacement","getLocation","isBabelParseError","isGlobalIdentifier","isLocalize","isNamedIdentifier","parseSync","serializeLocationPosition","transformFromAstSync","transformSync","translate","types","unwrapExpressionsFromTemplateLiteral","unwrapMessagePartsFromLocalizeCall","unwrapMessagePartsFromTemplateLiteral","unwrapSubstitutionsFromLocalizeCall"],"inputs":{"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/diagnostics.mjs":{"bytesInOutput":906},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/source_file_utils.mjs":{"bytesInOutput":10400},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/src/babel_core.mjs":{"bytesInOutput":472}},"bytes":12948},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js.map":{"imports":[],"exports":[],"inputs":{},"bytes":69},"bazel-out/darwin_arm64-fastbuild/bin/packages/localize/tools/bundles/chunk-LVTJYDSU.js":{"imports":[],"exports":["__spreadProps","__spreadValues"],"inputs":{},"bytes":1074}}}
@@ -6,9 +6,9 @@
6
6
  * Use of this source code is governed by an MIT-style license that can be
7
7
  * found in the LICENSE file at https://angular.io/license
8
8
  */
9
- import { ɵMessageId, ɵSourceMessage } from '@angular/localize';
9
+ import { MessageId, ɵSourceMessage } from '@angular/localize';
10
10
  import { ParseAnalysis, ParsedTranslationBundle, TranslationParser } from './translation_parser';
11
- export interface ArbJsonObject extends RecordMessageId, ɵSourceMessage | ArbMetadata> {
11
+ export interface ArbJsonObject extends Record<MessageId, ɵSourceMessage | ArbMetadata> {
12
12
  '@@locale': string;
13
13
  }
14
14
  export interface ArbMetadata {
@@ -6,7 +6,7 @@
6
6
  * Use of this source code is governed by an MIT-style license that can be
7
7
  * found in the LICENSE file at https://angular.io/license
8
8
  */
9
- import { ɵMessageId, ɵParsedTranslation } from '@angular/localize';
9
+ import { MessageId, ɵParsedTranslation } from '@angular/localize';
10
10
  import { Diagnostics } from '../../../diagnostics';
11
11
  /**
12
12
  * Indicates that a parser can parse a given file, with a hint that can be used to speed up actual
@@ -33,7 +33,7 @@ export declare type ParseAnalysis<Hint> = CanParseAnalysis<Hint> | CannotParseAn
33
33
  */
34
34
  export interface ParsedTranslationBundle {
35
35
  locale: string | undefined;
36
- translations: RecordMessageId, ɵParsedTranslation>;
36
+ translations: Record<MessageId, ɵParsedTranslation>;
37
37
  diagnostics: Diagnostics;
38
38
  }
39
39
  /**
@@ -7,7 +7,7 @@
7
7
  * found in the LICENSE file at https://angular.io/license
8
8
  */
9
9
  import { AbsoluteFsPath, PathSegment, ReadonlyFileSystem } from '@angular/compiler-cli/private/localize';
10
- import { ɵMessageId, ɵParsedTranslation } from '@angular/localize';
10
+ import { MessageId, ɵParsedTranslation } from '@angular/localize';
11
11
  import { Diagnostics } from '../diagnostics';
12
12
  import { OutputPathFn } from './output_path';
13
13
  /**
@@ -15,7 +15,7 @@ import { OutputPathFn } from './output_path';
15
15
  */
16
16
  export interface TranslationBundle {
17
17
  locale: string;
18
- translations: RecordMessageId, ɵParsedTranslation>;
18
+ translations: Record<MessageId, ɵParsedTranslation>;
19
19
  diagnostics?: Diagnostics;
20
20
  }
21
21
  /**
package/init/package.json DELETED
@@ -1,9 +0,0 @@
1
- {
2
- "name": "@angular/localize/init",
3
- "fesm2020": "../fesm2020/init.mjs",
4
- "fesm2015": "../fesm2015/init.mjs",
5
- "esm2020": "../esm2020/init/index.mjs",
6
- "typings": "./index.d.ts",
7
- "module": "../fesm2015/init.mjs",
8
- "es2020": "../fesm2020/init.mjs"
9
- }
package/localize.d.ts DELETED
@@ -1,9 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- export { clearTranslations, loadTranslations } from './src/translate';
9
- export * from './private';
package/private.d.ts DELETED
@@ -1,8 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- export { computeMsgId as ɵcomputeMsgId, findEndOfBlock as ɵfindEndOfBlock, isMissingTranslationError as ɵisMissingTranslationError, makeParsedTranslation as ɵmakeParsedTranslation, makeTemplateObject as ɵmakeTemplateObject, MessageId as ɵMessageId, MissingTranslationError as ɵMissingTranslationError, ParsedMessage as ɵParsedMessage, ParsedTranslation as ɵParsedTranslation, ParsedTranslations as ɵParsedTranslations, parseMessage as ɵparseMessage, parseMetadata as ɵparseMetadata, parseTranslation as ɵparseTranslation, SourceLocation as ɵSourceLocation, SourceMessage as ɵSourceMessage, splitBlock as ɵsplitBlock, TargetMessage as ɵTargetMessage, translate as ɵtranslate } from './src/utils';
@@ -1,9 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- export { _global } from './src/global';
9
- export { $localize, LocalizeFn, TranslateFn } from './src/localize';
@@ -1,16 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- declare global {
9
- interface WorkerGlobalScope extends EventTarget, WindowOrWorkerGlobalScope {
10
- }
11
- var WorkerGlobalScope: {
12
- prototype: WorkerGlobalScope;
13
- new (): WorkerGlobalScope;
14
- };
15
- }
16
- export declare const _global: any;
@@ -1,138 +0,0 @@
1
- /**
2
- * @license
3
- * Copyright Google LLC All Rights Reserved.
4
- *
5
- * Use of this source code is governed by an MIT-style license that can be
6
- * found in the LICENSE file at https://angular.io/license
7
- */
8
- /** @nodoc */
9
- export interface LocalizeFn {
10
- (messageParts: TemplateStringsArray, ...expressions: readonly any[]): string;
11
- /**
12
- * A function that converts an input "message with expressions" into a translated "message with
13
- * expressions".
14
- *
15
- * The conversion may be done in place, modifying the array passed to the function, so
16
- * don't assume that this has no side-effects.
17
- *
18
- * The expressions must be passed in since it might be they need to be reordered for
19
- * different translations.
20
- */
21
- translate?: TranslateFn;
22
- /**
23
- * The current locale of the translated messages.
24
- *
25
- * The compile-time translation inliner is able to replace the following code:
26
- *
27
- * ```
28
- * typeof $localize !== "undefined" && $localize.locale
29
- * ```
30
- *
31
- * with a string literal of the current locale. E.g.
32
- *
33
- * ```
34
- * "fr"
35
- * ```
36
- */
37
- locale?: string;
38
- }
39
- /** @nodoc */
40
- export interface TranslateFn {
41
- (messageParts: TemplateStringsArray, expressions: readonly any[]): [TemplateStringsArray, readonly any[]];
42
- }
43
- /**
44
- * Tag a template literal string for localization.
45
- *
46
- * For example:
47
- *
48
- * ```ts
49
- * $localize `some string to localize`
50
- * ```
51
- *
52
- * **Providing meaning, description and id**
53
- *
54
- * You can optionally specify one or more of `meaning`, `description` and `id` for a localized
55
- * string by pre-pending it with a colon delimited block of the form:
56
- *
57
- * ```ts
58
- * $localize`:meaning|description@@id:source message text`;
59
- *
60
- * $localize`:meaning|:source message text`;
61
- * $localize`:description:source message text`;
62
- * $localize`:@@id:source message text`;
63
- * ```
64
- *
65
- * This format is the same as that used for `i18n` markers in Angular templates. See the
66
- * [Angular i18n guide](guide/i18n-common-prepare#mark-text-in-component-template).
67
- *
68
- * **Naming placeholders**
69
- *
70
- * If the template literal string contains expressions, then the expressions will be automatically
71
- * associated with placeholder names for you.
72
- *
73
- * For example:
74
- *
75
- * ```ts
76
- * $localize `Hi ${name}! There are ${items.length} items.`;
77
- * ```
78
- *
79
- * will generate a message-source of `Hi {$PH}! There are {$PH_1} items`.
80
- *
81
- * The recommended practice is to name the placeholder associated with each expression though.
82
- *
83
- * Do this by providing the placeholder name wrapped in `:` characters directly after the
84
- * expression. These placeholder names are stripped out of the rendered localized string.
85
- *
86
- * For example, to name the `items.length` expression placeholder `itemCount` you write:
87
- *
88
- * ```ts
89
- * $localize `There are ${items.length}:itemCount: items`;
90
- * ```
91
- *
92
- * **Escaping colon markers**
93
- *
94
- * If you need to use a `:` character directly at the start of a tagged string that has no
95
- * metadata block, or directly after a substitution expression that has no name you must escape
96
- * the `:` by preceding it with a backslash:
97
- *
98
- * For example:
99
- *
100
- * ```ts
101
- * // message has a metadata block so no need to escape colon
102
- * $localize `:some description::this message starts with a colon (:)`;
103
- * // no metadata block so the colon must be escaped
104
- * $localize `\:this message starts with a colon (:)`;
105
- * ```
106
- *
107
- * ```ts
108
- * // named substitution so no need to escape colon
109
- * $localize `${label}:label:: ${}`
110
- * // anonymous substitution so colon must be escaped
111
- * $localize `${label}\: ${}`
112
- * ```
113
- *
114
- * **Processing localized strings:**
115
- *
116
- * There are three scenarios:
117
- *
118
- * * **compile-time inlining**: the `$localize` tag is transformed at compile time by a
119
- * transpiler, removing the tag and replacing the template literal string with a translated
120
- * literal string from a collection of translations provided to the transpilation tool.
121
- *
122
- * * **run-time evaluation**: the `$localize` tag is a run-time function that replaces and
123
- * reorders the parts (static strings and expressions) of the template literal string with strings
124
- * from a collection of translations loaded at run-time.
125
- *
126
- * * **pass-through evaluation**: the `$localize` tag is a run-time function that simply evaluates
127
- * the original template literal string without applying any translations to the parts. This
128
- * version is used during development or where there is no need to translate the localized
129
- * template literals.
130
- *
131
- * @param messageParts a collection of the static parts of the template string.
132
- * @param expressions a collection of the values of each placeholder in the template string.
133
- * @returns the translated string, with the `messageParts` and `expressions` interleaved together.
134
- *
135
- * @globalApi
136
- * @publicApi
137
- */
138
- export declare const $localize: LocalizeFn;