@gmb/bitmark-parser-generator 5.38.0 → 5.40.0
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.
- package/dist/TranslationsData-BZ_sE10e.d.cts +16 -0
- package/dist/TranslationsData-BZ_sE10e.d.ts +16 -0
- package/dist/browser/bitmark-parser-generator.min.js +1 -1
- package/dist/browser/bundle-report.html +2 -2
- package/dist/browser/cjs/TranslationsData-BZ_sE10e.d.cts +16 -0
- package/dist/browser/cjs/index.cjs +2278 -355
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +219 -2
- package/dist/browser/cjs/translations.cjs +2974 -0
- package/dist/browser/cjs/translations.cjs.map +1 -0
- package/dist/browser/cjs/translations.d.cts +17 -0
- package/dist/browser/esm/TranslationsData-BZ_sE10e.d.ts +16 -0
- package/dist/browser/esm/index.d.ts +219 -2
- package/dist/browser/esm/index.js +2174 -253
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/browser/esm/translations.d.ts +17 -0
- package/dist/browser/esm/translations.js +2947 -0
- package/dist/browser/esm/translations.js.map +1 -0
- package/dist/cli/main.js +2299 -314
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +2357 -362
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +219 -2
- package/dist/index.d.ts +219 -2
- package/dist/index.js +2250 -257
- package/dist/index.js.map +1 -1
- package/dist/translations.cjs +2974 -0
- package/dist/translations.cjs.map +1 -0
- package/dist/translations.d.cts +17 -0
- package/dist/translations.d.ts +17 -0
- package/dist/translations.js +2947 -0
- package/dist/translations.js.map +1 -0
- package/package.json +11 -1
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { T as TranslationsData } from './TranslationsData-BZ_sE10e.js';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* PLAN-020: Translated display names (non-English) for bit types, bit groups, and resource
|
|
5
|
+
* groups, keyed by technical key, then by BCP-47 language tag.
|
|
6
|
+
*
|
|
7
|
+
* GENERATED from docs/translations.json — edit that file and re-run the import
|
|
8
|
+
* (see plans/PLAN-020-bit-groups-and-bit-names.md), or edit here and keep both in sync.
|
|
9
|
+
*
|
|
10
|
+
* NOT part of the main bundle: exported only via the `./translations` subpath export and
|
|
11
|
+
* activated with `registerTranslations()`. English names live inline in the configs
|
|
12
|
+
* (`title`).
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
declare const TRANSLATIONS: TranslationsData;
|
|
16
|
+
|
|
17
|
+
export { TRANSLATIONS, TranslationsData };
|