@_linked/translation 0.2.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 (153) hide show
  1. package/README.md +102 -0
  2. package/lib/cjs/data/translation.json +8 -0
  3. package/lib/esm/archive.d.ts +133 -0
  4. package/lib/esm/archive.js +567 -0
  5. package/lib/esm/archive.js.map +1 -0
  6. package/lib/esm/authorization.d.ts +12 -0
  7. package/lib/esm/authorization.js +10 -0
  8. package/lib/esm/authorization.js.map +1 -0
  9. package/lib/esm/backend.d.ts +1 -0
  10. package/lib/esm/backend.js +3 -0
  11. package/lib/esm/backend.js.map +1 -0
  12. package/lib/esm/cdn-loader.d.ts +40 -0
  13. package/lib/esm/cdn-loader.js +200 -0
  14. package/lib/esm/cdn-loader.js.map +1 -0
  15. package/lib/esm/checks.d.ts +56 -0
  16. package/lib/esm/checks.js +288 -0
  17. package/lib/esm/checks.js.map +1 -0
  18. package/lib/esm/compile.d.ts +64 -0
  19. package/lib/esm/compile.js +99 -0
  20. package/lib/esm/compile.js.map +1 -0
  21. package/lib/esm/core/messages.d.ts +25 -0
  22. package/lib/esm/core/messages.js +76 -0
  23. package/lib/esm/core/messages.js.map +1 -0
  24. package/lib/esm/data/translation.json +8 -0
  25. package/lib/esm/discovery.d.ts +97 -0
  26. package/lib/esm/discovery.js +365 -0
  27. package/lib/esm/discovery.js.map +1 -0
  28. package/lib/esm/exchange.d.ts +100 -0
  29. package/lib/esm/exchange.js +223 -0
  30. package/lib/esm/exchange.js.map +1 -0
  31. package/lib/esm/export.d.ts +28 -0
  32. package/lib/esm/export.js +92 -0
  33. package/lib/esm/export.js.map +1 -0
  34. package/lib/esm/formats/csv.d.ts +8 -0
  35. package/lib/esm/formats/csv.js +397 -0
  36. package/lib/esm/formats/csv.js.map +1 -0
  37. package/lib/esm/formats/json.d.ts +30 -0
  38. package/lib/esm/formats/json.js +459 -0
  39. package/lib/esm/formats/json.js.map +1 -0
  40. package/lib/esm/formats/xliff.d.ts +12 -0
  41. package/lib/esm/formats/xliff.js +577 -0
  42. package/lib/esm/formats/xliff.js.map +1 -0
  43. package/lib/esm/import.d.ts +197 -0
  44. package/lib/esm/import.js +391 -0
  45. package/lib/esm/import.js.map +1 -0
  46. package/lib/esm/index.d.ts +42 -0
  47. package/lib/esm/index.js +34 -0
  48. package/lib/esm/index.js.map +1 -0
  49. package/lib/esm/key-sync-node.d.ts +29 -0
  50. package/lib/esm/key-sync-node.js +174 -0
  51. package/lib/esm/key-sync-node.js.map +1 -0
  52. package/lib/esm/key-sync.d.ts +46 -0
  53. package/lib/esm/key-sync.js +114 -0
  54. package/lib/esm/key-sync.js.map +1 -0
  55. package/lib/esm/key-version.d.ts +50 -0
  56. package/lib/esm/key-version.js +134 -0
  57. package/lib/esm/key-version.js.map +1 -0
  58. package/lib/esm/languages.d.ts +18 -0
  59. package/lib/esm/languages.js +74 -0
  60. package/lib/esm/languages.js.map +1 -0
  61. package/lib/esm/linked-discovery.d.ts +44 -0
  62. package/lib/esm/linked-discovery.js +267 -0
  63. package/lib/esm/linked-discovery.js.map +1 -0
  64. package/lib/esm/message-format.d.ts +41 -0
  65. package/lib/esm/message-format.js +133 -0
  66. package/lib/esm/message-format.js.map +1 -0
  67. package/lib/esm/mt.d.ts +111 -0
  68. package/lib/esm/mt.js +142 -0
  69. package/lib/esm/mt.js.map +1 -0
  70. package/lib/esm/ontologies/translation.d.ts +203 -0
  71. package/lib/esm/ontologies/translation.js +219 -0
  72. package/lib/esm/ontologies/translation.js.map +1 -0
  73. package/lib/esm/package.d.ts +4 -0
  74. package/lib/esm/package.js +11 -0
  75. package/lib/esm/package.js.map +1 -0
  76. package/lib/esm/react.d.ts +55 -0
  77. package/lib/esm/react.js +127 -0
  78. package/lib/esm/react.js.map +1 -0
  79. package/lib/esm/records.d.ts +151 -0
  80. package/lib/esm/records.js +2 -0
  81. package/lib/esm/records.js.map +1 -0
  82. package/lib/esm/release.d.ts +198 -0
  83. package/lib/esm/release.js +435 -0
  84. package/lib/esm/release.js.map +1 -0
  85. package/lib/esm/shape-catalog.d.ts +79 -0
  86. package/lib/esm/shape-catalog.js +118 -0
  87. package/lib/esm/shape-catalog.js.map +1 -0
  88. package/lib/esm/shapes/GlossaryTerm.d.ts +28 -0
  89. package/lib/esm/shapes/GlossaryTerm.js +94 -0
  90. package/lib/esm/shapes/GlossaryTerm.js.map +1 -0
  91. package/lib/esm/shapes/TranslationInventoryOrigin.d.ts +33 -0
  92. package/lib/esm/shapes/TranslationInventoryOrigin.js +209 -0
  93. package/lib/esm/shapes/TranslationInventoryOrigin.js.map +1 -0
  94. package/lib/esm/shapes/TranslationKey.d.ts +92 -0
  95. package/lib/esm/shapes/TranslationKey.js +194 -0
  96. package/lib/esm/shapes/TranslationKey.js.map +1 -0
  97. package/lib/esm/shapes/TranslationKeyVersion.d.ts +19 -0
  98. package/lib/esm/shapes/TranslationKeyVersion.js +125 -0
  99. package/lib/esm/shapes/TranslationKeyVersion.js.map +1 -0
  100. package/lib/esm/shapes/TranslationLanguage.d.ts +15 -0
  101. package/lib/esm/shapes/TranslationLanguage.js +102 -0
  102. package/lib/esm/shapes/TranslationLanguage.js.map +1 -0
  103. package/lib/esm/shapes/TranslationProvider.d.ts +409 -0
  104. package/lib/esm/shapes/TranslationProvider.js +1376 -0
  105. package/lib/esm/shapes/TranslationProvider.js.map +1 -0
  106. package/lib/esm/shapes/TranslationRelease.d.ts +36 -0
  107. package/lib/esm/shapes/TranslationRelease.js +149 -0
  108. package/lib/esm/shapes/TranslationRelease.js.map +1 -0
  109. package/lib/esm/shapes/TranslationRevision.d.ts +39 -0
  110. package/lib/esm/shapes/TranslationRevision.js +159 -0
  111. package/lib/esm/shapes/TranslationRevision.js.map +1 -0
  112. package/lib/esm/shapes/TranslationUnit.d.ts +26 -0
  113. package/lib/esm/shapes/TranslationUnit.js +111 -0
  114. package/lib/esm/shapes/TranslationUnit.js.map +1 -0
  115. package/package.json +134 -0
  116. package/src/archive.ts +894 -0
  117. package/src/authorization.ts +33 -0
  118. package/src/backend.ts +2 -0
  119. package/src/cdn-loader.ts +264 -0
  120. package/src/checks.ts +413 -0
  121. package/src/compile.ts +168 -0
  122. package/src/core/messages.ts +106 -0
  123. package/src/data/translation.json +8 -0
  124. package/src/discovery.ts +594 -0
  125. package/src/exchange.ts +428 -0
  126. package/src/export.ts +135 -0
  127. package/src/formats/csv.ts +459 -0
  128. package/src/formats/json.ts +587 -0
  129. package/src/formats/xliff.ts +708 -0
  130. package/src/import.ts +648 -0
  131. package/src/index.ts +207 -0
  132. package/src/key-sync-node.ts +269 -0
  133. package/src/key-sync.ts +168 -0
  134. package/src/key-version.ts +206 -0
  135. package/src/languages.ts +102 -0
  136. package/src/linked-discovery.ts +385 -0
  137. package/src/message-format.ts +214 -0
  138. package/src/mt.ts +248 -0
  139. package/src/ontologies/translation.ts +234 -0
  140. package/src/package.ts +19 -0
  141. package/src/react.tsx +250 -0
  142. package/src/records.ts +180 -0
  143. package/src/release.ts +726 -0
  144. package/src/shape-catalog.ts +198 -0
  145. package/src/shapes/GlossaryTerm.ts +61 -0
  146. package/src/shapes/TranslationInventoryOrigin.ts +131 -0
  147. package/src/shapes/TranslationKey.ts +174 -0
  148. package/src/shapes/TranslationKeyVersion.ts +77 -0
  149. package/src/shapes/TranslationLanguage.ts +51 -0
  150. package/src/shapes/TranslationProvider.ts +1755 -0
  151. package/src/shapes/TranslationRelease.ts +114 -0
  152. package/src/shapes/TranslationRevision.ts +105 -0
  153. package/src/shapes/TranslationUnit.ts +72 -0
@@ -0,0 +1,92 @@
1
+ import { Shape } from '@_linked/core/shapes/Shape';
2
+ import type { TranslationEntryRecord, TranslationKeyVersionRecord, TranslationState } from '../records.js';
3
+ import type { TranslationMessages } from '../core/messages.js';
4
+ import type { TranslationKeyVersion } from './TranslationKeyVersion.js';
5
+ /**
6
+ * A translatable key (Plan 014 AD-H). Covers both UI-string keys (`kind:'ui'`)
7
+ * and graph-content translations (`kind:'content'` + `ofNode`/`ofField`), unified
8
+ * in one scheme. `sourceText` is the canonical English (R7); `format` pins the
9
+ * message syntax so imported FormatSimple strings aren't reinterpreted as ICU
10
+ * (R8). Named `TranslationKey` (its per-language values are {@link TranslationUnit}s,
11
+ * not `Translation` — avoids collision with serve's legacy shape, R13).
12
+ */
13
+ export declare class TranslationKey extends Shape {
14
+ static targetClass: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
15
+ /** Dotted namespace grouping, e.g. "account". */
16
+ get namespace(): string;
17
+ /** The key path, e.g. "account.title". */
18
+ get key(): string;
19
+ /** Canonical English source string. */
20
+ get sourceText(): string;
21
+ get description(): string;
22
+ /** 'ui' (chrome string) | 'content' (graph field). */
23
+ get kind(): string;
24
+ /** IRI of the owning Application (translation content is app-scoped, AD-I). */
25
+ get ofApplication(): string;
26
+ /** For kind:'content' — the IRI of the translated subject node. */
27
+ get ofNode(): string;
28
+ /** For kind:'content' — the field/predicate being translated. */
29
+ get ofField(): string;
30
+ /** SHACL node-shape IRI this packaged key accompanies. */
31
+ get ofShape(): string;
32
+ /** Stable predicate IRI when this key describes one shape property. */
33
+ get ofProperty(): string;
34
+ /** Reusable package that supplied the seed value. */
35
+ get fromPackage(): string;
36
+ /**
37
+ * True when this app copy of a shape-owned key has been edited locally and
38
+ * should NOT be overwritten by shape-route propagation (AD-N: "never
39
+ * overwrites an app's own override"). Set when the per-app editor changes the
40
+ * source of a key that carries `ofShape`.
41
+ */
42
+ get overridden(): boolean;
43
+ /**
44
+ * The shape's canonical source captured the moment this app first overrode the
45
+ * key — what "clear override" reverts to when no non-overridden sibling copy is
46
+ * available to read the current canonical from (AD-N).
47
+ */
48
+ get shapeSource(): string;
49
+ /** Message syntax: 'simple' (FormatSimple) | 'icu'. */
50
+ get format(): string;
51
+ /** Current immutable source/argument contract. Populated by Plan 018 migration. */
52
+ get currentVersion(): TranslationKeyVersion;
53
+ static list(data: {
54
+ appId: string;
55
+ }): Promise<any>;
56
+ /** Plain app-scoped records for authoring UIs; no live Shape crosses RPC. */
57
+ static listEntries(data: {
58
+ appId: string;
59
+ }): Promise<TranslationEntryRecord[]>;
60
+ static listVersions(data: {
61
+ appId: string;
62
+ key?: string;
63
+ }): Promise<TranslationKeyVersionRecord[]>;
64
+ static upsertKey(data: {
65
+ appId: string;
66
+ key: string;
67
+ sourceText: string;
68
+ namespace?: string;
69
+ description?: string;
70
+ kind?: 'ui' | 'content';
71
+ ofNode?: string;
72
+ ofField?: string;
73
+ ofShape?: string;
74
+ ofProperty?: string;
75
+ fromPackage?: string;
76
+ format?: 'simple' | 'icu';
77
+ }): Promise<{
78
+ id: string;
79
+ }>;
80
+ static upsertUnit(data: {
81
+ appId: string;
82
+ key: string;
83
+ language: string;
84
+ text: string;
85
+ state?: TranslationState;
86
+ updatedBy?: string;
87
+ }): Promise<any>;
88
+ static getMessages(data: {
89
+ appId: string;
90
+ language: string;
91
+ }): Promise<TranslationMessages>;
92
+ }
@@ -0,0 +1,194 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Shape } from '@_linked/core/shapes/Shape';
11
+ import { literalProperty, objectProperty } from '@_linked/core/shapes/SHACL';
12
+ import { Server } from '@_linked/server-utils/utils/Server';
13
+ import { tr } from '../ontologies/translation.js';
14
+ import { linkedShape } from '../package.js';
15
+ /**
16
+ * A translatable key (Plan 014 AD-H). Covers both UI-string keys (`kind:'ui'`)
17
+ * and graph-content translations (`kind:'content'` + `ofNode`/`ofField`), unified
18
+ * in one scheme. `sourceText` is the canonical English (R7); `format` pins the
19
+ * message syntax so imported FormatSimple strings aren't reinterpreted as ICU
20
+ * (R8). Named `TranslationKey` (its per-language values are {@link TranslationUnit}s,
21
+ * not `Translation` — avoids collision with serve's legacy shape, R13).
22
+ */
23
+ let TranslationKey = class TranslationKey extends Shape {
24
+ /** Dotted namespace grouping, e.g. "account". */
25
+ get namespace() {
26
+ return '';
27
+ }
28
+ /** The key path, e.g. "account.title". */
29
+ get key() {
30
+ return '';
31
+ }
32
+ /** Canonical English source string. */
33
+ get sourceText() {
34
+ return '';
35
+ }
36
+ get description() {
37
+ return '';
38
+ }
39
+ /** 'ui' (chrome string) | 'content' (graph field). */
40
+ get kind() {
41
+ return 'ui';
42
+ }
43
+ /** IRI of the owning Application (translation content is app-scoped, AD-I). */
44
+ get ofApplication() {
45
+ return '';
46
+ }
47
+ /** For kind:'content' — the IRI of the translated subject node. */
48
+ get ofNode() {
49
+ return '';
50
+ }
51
+ /** For kind:'content' — the field/predicate being translated. */
52
+ get ofField() {
53
+ return '';
54
+ }
55
+ /** SHACL node-shape IRI this packaged key accompanies. */
56
+ get ofShape() {
57
+ return '';
58
+ }
59
+ /** Stable predicate IRI when this key describes one shape property. */
60
+ get ofProperty() {
61
+ return '';
62
+ }
63
+ /** Reusable package that supplied the seed value. */
64
+ get fromPackage() {
65
+ return '';
66
+ }
67
+ /**
68
+ * True when this app copy of a shape-owned key has been edited locally and
69
+ * should NOT be overwritten by shape-route propagation (AD-N: "never
70
+ * overwrites an app's own override"). Set when the per-app editor changes the
71
+ * source of a key that carries `ofShape`.
72
+ */
73
+ get overridden() {
74
+ return false;
75
+ }
76
+ /**
77
+ * The shape's canonical source captured the moment this app first overrode the
78
+ * key — what "clear override" reverts to when no non-overridden sibling copy is
79
+ * available to read the current canonical from (AD-N).
80
+ */
81
+ get shapeSource() {
82
+ return '';
83
+ }
84
+ /** Message syntax: 'simple' (FormatSimple) | 'icu'. */
85
+ get format() {
86
+ return 'simple';
87
+ }
88
+ /** Current immutable source/argument contract. Populated by Plan 018 migration. */
89
+ get currentVersion() {
90
+ return undefined;
91
+ }
92
+ static list(data) {
93
+ return Server.call(this, 'listKeys', data);
94
+ }
95
+ /** Plain app-scoped records for authoring UIs; no live Shape crosses RPC. */
96
+ static listEntries(data) {
97
+ return Server.call(this, 'listEntries', data);
98
+ }
99
+ static listVersions(data) {
100
+ return Server.call(this, 'listKeyVersions', data);
101
+ }
102
+ // Shape.upsert is the framework's typed graph-update builder. Keep the
103
+ // app-scoped translation RPC separate from that inherited API.
104
+ static upsertKey(data) {
105
+ return Server.call(this, 'upsertKey', data);
106
+ }
107
+ static upsertUnit(data) {
108
+ return Server.call(this, 'upsertUnit', data);
109
+ }
110
+ static getMessages(data) {
111
+ return Server.call(this, 'getMessages', data);
112
+ }
113
+ };
114
+ TranslationKey.targetClass = tr.TranslationKey;
115
+ __decorate([
116
+ literalProperty({ path: tr.namespace, maxCount: 1 }),
117
+ __metadata("design:type", String),
118
+ __metadata("design:paramtypes", [])
119
+ ], TranslationKey.prototype, "namespace", null);
120
+ __decorate([
121
+ literalProperty({ path: tr.key, maxCount: 1 }),
122
+ __metadata("design:type", String),
123
+ __metadata("design:paramtypes", [])
124
+ ], TranslationKey.prototype, "key", null);
125
+ __decorate([
126
+ literalProperty({ path: tr.sourceText, maxCount: 1 }),
127
+ __metadata("design:type", String),
128
+ __metadata("design:paramtypes", [])
129
+ ], TranslationKey.prototype, "sourceText", null);
130
+ __decorate([
131
+ literalProperty({ path: tr.description, maxCount: 1 }),
132
+ __metadata("design:type", String),
133
+ __metadata("design:paramtypes", [])
134
+ ], TranslationKey.prototype, "description", null);
135
+ __decorate([
136
+ literalProperty({ path: tr.kind, maxCount: 1 }),
137
+ __metadata("design:type", String),
138
+ __metadata("design:paramtypes", [])
139
+ ], TranslationKey.prototype, "kind", null);
140
+ __decorate([
141
+ objectProperty({ path: tr.ofApplication, maxCount: 1 }),
142
+ __metadata("design:type", String),
143
+ __metadata("design:paramtypes", [])
144
+ ], TranslationKey.prototype, "ofApplication", null);
145
+ __decorate([
146
+ objectProperty({ path: tr.ofNode, maxCount: 1 }),
147
+ __metadata("design:type", String),
148
+ __metadata("design:paramtypes", [])
149
+ ], TranslationKey.prototype, "ofNode", null);
150
+ __decorate([
151
+ literalProperty({ path: tr.ofField, maxCount: 1 }),
152
+ __metadata("design:type", String),
153
+ __metadata("design:paramtypes", [])
154
+ ], TranslationKey.prototype, "ofField", null);
155
+ __decorate([
156
+ objectProperty({ path: tr.ofShape, maxCount: 1 }),
157
+ __metadata("design:type", String),
158
+ __metadata("design:paramtypes", [])
159
+ ], TranslationKey.prototype, "ofShape", null);
160
+ __decorate([
161
+ objectProperty({ path: tr.ofProperty, maxCount: 1 }),
162
+ __metadata("design:type", String),
163
+ __metadata("design:paramtypes", [])
164
+ ], TranslationKey.prototype, "ofProperty", null);
165
+ __decorate([
166
+ literalProperty({ path: tr.fromPackage, maxCount: 1 }),
167
+ __metadata("design:type", String),
168
+ __metadata("design:paramtypes", [])
169
+ ], TranslationKey.prototype, "fromPackage", null);
170
+ __decorate([
171
+ literalProperty({ path: tr.overridden, maxCount: 1 }),
172
+ __metadata("design:type", Boolean),
173
+ __metadata("design:paramtypes", [])
174
+ ], TranslationKey.prototype, "overridden", null);
175
+ __decorate([
176
+ literalProperty({ path: tr.shapeSource, maxCount: 1 }),
177
+ __metadata("design:type", String),
178
+ __metadata("design:paramtypes", [])
179
+ ], TranslationKey.prototype, "shapeSource", null);
180
+ __decorate([
181
+ literalProperty({ path: tr.format, maxCount: 1 }),
182
+ __metadata("design:type", String),
183
+ __metadata("design:paramtypes", [])
184
+ ], TranslationKey.prototype, "format", null);
185
+ __decorate([
186
+ objectProperty({ path: tr.currentVersion, maxCount: 1 }),
187
+ __metadata("design:type", Function),
188
+ __metadata("design:paramtypes", [])
189
+ ], TranslationKey.prototype, "currentVersion", null);
190
+ TranslationKey = __decorate([
191
+ linkedShape
192
+ ], TranslationKey);
193
+ export { TranslationKey };
194
+ //# sourceMappingURL=TranslationKey.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslationKey.js","sourceRoot":"","sources":["../../../src/shapes/TranslationKey.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,4BAA4B,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC7E,OAAO,EAAE,MAAM,EAAE,MAAM,oCAAoC,CAAC;AAC5D,OAAO,EAAE,EAAE,EAAE,MAAM,8BAA8B,CAAC;AAClD,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAS5C;;;;;;;GAOG;AAEI,IAAM,cAAc,GAApB,MAAM,cAAe,SAAQ,KAAK;IAGvC,iDAAiD;IACjD,IACI,SAAS;QACX,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,0CAA0C;IAC1C,IACI,GAAG;QACL,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,uCAAuC;IACvC,IACI,UAAU;QACZ,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,IACI,WAAW;QACb,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,sDAAsD;IACtD,IACI,IAAI;QACN,OAAO,IAAI,CAAC;IACd,CAAC;IAED,+EAA+E;IAC/E,IACI,aAAa;QACf,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,mEAAmE;IACnE,IACI,MAAM;QACR,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,iEAAiE;IACjE,IACI,OAAO;QACT,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,0DAA0D;IAC1D,IACI,OAAO;QACT,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,uEAAuE;IACvE,IACI,UAAU;QACZ,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,qDAAqD;IACrD,IACI,WAAW;QACb,OAAO,EAAE,CAAC;IACZ,CAAC;IAED;;;;;OAKG;IACH,IACI,UAAU;QACZ,OAAO,KAAK,CAAC;IACf,CAAC;IAED;;;;OAIG;IACH,IACI,WAAW;QACb,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,uDAAuD;IACvD,IACI,MAAM;QACR,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED,mFAAmF;IACnF,IACI,cAAc;QAChB,OAAO,SAAgB,CAAC;IAC1B,CAAC;IAED,MAAM,CAAC,IAAI,CAAC,IAAuB;QACjC,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,UAAU,EAAE,IAAI,CAAC,CAAC;IAC7C,CAAC;IAED,6EAA6E;IAC7E,MAAM,CAAC,WAAW,CAAC,IAAuB;QACxC,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,aAAa,EAAE,IAAI,CAE3C,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,YAAY,CAAC,IAAqC;QACvD,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,iBAAiB,EAAE,IAAI,CAE/C,CAAC;IACJ,CAAC;IAED,uEAAuE;IACvE,+DAA+D;IAC/D,MAAM,CAAC,SAAS,CAAC,IAahB;QACC,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,WAAW,EAAE,IAAI,CAAC,CAAC;IAC9C,CAAC;IAED,MAAM,CAAC,UAAU,CAAC,IAOjB;QACC,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,YAAY,EAAE,IAAI,CAAC,CAAC;IAC/C,CAAC;IAED,MAAM,CAAC,WAAW,CAAC,IAAyC;QAC1D,OAAO,MAAM,CAAC,IAAI,CAAC,IAAI,EAAE,aAAa,EAAE,IAAI,CAAiC,CAAC;IAChF,CAAC;;AArJM,0BAAW,GAAG,EAAE,CAAC,cAAc,AAApB,CAAqB;AAGvC;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,SAAS,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;+CAGpD;AAGD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,GAAG,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;yCAG9C;AAGD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;gDAGrD;AAED;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,WAAW,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;iDAGtD;AAGD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,IAAI,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;0CAG/C;AAGD;IAAC,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,aAAa,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;mDAGvD;AAGD;IAAC,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,MAAM,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;4CAGhD;AAGD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;6CAGlD;AAGD;IAAC,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,OAAO,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;6CAGjD;AAGD;IAAC,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;gDAGpD;AAGD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,WAAW,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;iDAGtD;AAQD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;gDAGrD;AAOD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,WAAW,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;iDAGtD;AAGD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,MAAM,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;4CAGjD;AAGD;IAAC,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,cAAc,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;oDAGxD;AAnGU,cAAc;IAD1B,WAAW;GACC,cAAc,CAuJ1B"}
@@ -0,0 +1,19 @@
1
+ import { Shape } from '@_linked/core/shapes/Shape';
2
+ import { TranslationKey } from './TranslationKey.js';
3
+ /** Immutable source text + runtime argument contract for one logical key. */
4
+ export declare class TranslationKeyVersion extends Shape {
5
+ static targetClass: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
6
+ get ofApplication(): string;
7
+ get ofKey(): TranslationKey;
8
+ /** Monotonic ULID for new versions; deterministic `backfill-*` for migration. */
9
+ get versionId(): string;
10
+ get sourceLanguage(): string;
11
+ get sourceText(): string;
12
+ get format(): string;
13
+ get argumentSignature(): string;
14
+ get contractHash(): string;
15
+ get sourceHash(): string;
16
+ get supersedes(): TranslationKeyVersion;
17
+ get createdAt(): Date;
18
+ get createdBy(): string;
19
+ }
@@ -0,0 +1,125 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Shape } from '@_linked/core/shapes/Shape';
11
+ import { literalProperty, objectProperty } from '@_linked/core/shapes/SHACL';
12
+ import { xsd } from '@_linked/core/ontologies/xsd';
13
+ import { tr } from '../ontologies/translation.js';
14
+ import { linkedShape } from '../package.js';
15
+ import { TranslationKey } from './TranslationKey.js';
16
+ /** Immutable source text + runtime argument contract for one logical key. */
17
+ let TranslationKeyVersion = class TranslationKeyVersion extends Shape {
18
+ get ofApplication() {
19
+ return '';
20
+ }
21
+ get ofKey() {
22
+ return undefined;
23
+ }
24
+ /** Monotonic ULID for new versions; deterministic `backfill-*` for migration. */
25
+ get versionId() {
26
+ return '';
27
+ }
28
+ get sourceLanguage() {
29
+ return '';
30
+ }
31
+ get sourceText() {
32
+ return '';
33
+ }
34
+ get format() {
35
+ return 'simple';
36
+ }
37
+ get argumentSignature() {
38
+ return '[]';
39
+ }
40
+ get contractHash() {
41
+ return '';
42
+ }
43
+ get sourceHash() {
44
+ return '';
45
+ }
46
+ get supersedes() {
47
+ return undefined;
48
+ }
49
+ get createdAt() {
50
+ return new Date(0);
51
+ }
52
+ get createdBy() {
53
+ return '';
54
+ }
55
+ };
56
+ TranslationKeyVersion.targetClass = tr.TranslationKeyVersion;
57
+ __decorate([
58
+ objectProperty({ path: tr.ofApplication, maxCount: 1 }),
59
+ __metadata("design:type", String),
60
+ __metadata("design:paramtypes", [])
61
+ ], TranslationKeyVersion.prototype, "ofApplication", null);
62
+ __decorate([
63
+ objectProperty({ path: tr.ofKey, shape: TranslationKey, maxCount: 1 }),
64
+ __metadata("design:type", TranslationKey),
65
+ __metadata("design:paramtypes", [])
66
+ ], TranslationKeyVersion.prototype, "ofKey", null);
67
+ __decorate([
68
+ literalProperty({ path: tr.versionId, maxCount: 1 }),
69
+ __metadata("design:type", String),
70
+ __metadata("design:paramtypes", [])
71
+ ], TranslationKeyVersion.prototype, "versionId", null);
72
+ __decorate([
73
+ literalProperty({ path: tr.sourceLanguage, maxCount: 1 }),
74
+ __metadata("design:type", String),
75
+ __metadata("design:paramtypes", [])
76
+ ], TranslationKeyVersion.prototype, "sourceLanguage", null);
77
+ __decorate([
78
+ literalProperty({ path: tr.sourceText, maxCount: 1 }),
79
+ __metadata("design:type", String),
80
+ __metadata("design:paramtypes", [])
81
+ ], TranslationKeyVersion.prototype, "sourceText", null);
82
+ __decorate([
83
+ literalProperty({ path: tr.format, maxCount: 1 }),
84
+ __metadata("design:type", String),
85
+ __metadata("design:paramtypes", [])
86
+ ], TranslationKeyVersion.prototype, "format", null);
87
+ __decorate([
88
+ literalProperty({ path: tr.argumentSignature, maxCount: 1 }),
89
+ __metadata("design:type", String),
90
+ __metadata("design:paramtypes", [])
91
+ ], TranslationKeyVersion.prototype, "argumentSignature", null);
92
+ __decorate([
93
+ literalProperty({ path: tr.contractHash, maxCount: 1 }),
94
+ __metadata("design:type", String),
95
+ __metadata("design:paramtypes", [])
96
+ ], TranslationKeyVersion.prototype, "contractHash", null);
97
+ __decorate([
98
+ literalProperty({ path: tr.sourceHash, maxCount: 1 }),
99
+ __metadata("design:type", String),
100
+ __metadata("design:paramtypes", [])
101
+ ], TranslationKeyVersion.prototype, "sourceHash", null);
102
+ __decorate([
103
+ objectProperty({
104
+ path: tr.supersedes,
105
+ shape: TranslationKeyVersion,
106
+ maxCount: 1,
107
+ }),
108
+ __metadata("design:type", TranslationKeyVersion),
109
+ __metadata("design:paramtypes", [])
110
+ ], TranslationKeyVersion.prototype, "supersedes", null);
111
+ __decorate([
112
+ literalProperty({ path: tr.createdAt, datatype: xsd.dateTime, maxCount: 1 }),
113
+ __metadata("design:type", Date),
114
+ __metadata("design:paramtypes", [])
115
+ ], TranslationKeyVersion.prototype, "createdAt", null);
116
+ __decorate([
117
+ objectProperty({ path: tr.createdBy, maxCount: 1 }),
118
+ __metadata("design:type", String),
119
+ __metadata("design:paramtypes", [])
120
+ ], TranslationKeyVersion.prototype, "createdBy", null);
121
+ TranslationKeyVersion = __decorate([
122
+ linkedShape
123
+ ], TranslationKeyVersion);
124
+ export { TranslationKeyVersion };
125
+ //# sourceMappingURL=TranslationKeyVersion.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslationKeyVersion.js","sourceRoot":"","sources":["../../../src/shapes/TranslationKeyVersion.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,15 @@
1
+ import { Shape } from '@_linked/core/shapes/Shape';
2
+ /** App language configuration. Hosts choose the explicit control-plane store. */
3
+ export declare class TranslationLanguage extends Shape {
4
+ static targetClass: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
5
+ get ofApplication(): string;
6
+ get identifier(): string;
7
+ get code(): string;
8
+ get nativeName(): string;
9
+ get englishName(): string;
10
+ get direction(): string;
11
+ get parent(): string;
12
+ get fallback(): string;
13
+ get enabled(): boolean;
14
+ get supported(): boolean;
15
+ }
@@ -0,0 +1,102 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ var __metadata = (this && this.__metadata) || function (k, v) {
8
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
9
+ };
10
+ import { Shape } from '@_linked/core/shapes/Shape';
11
+ import { literalProperty, objectProperty } from '@_linked/core/shapes/SHACL';
12
+ import { linkedShape } from '../package.js';
13
+ import { tr } from '../ontologies/translation.js';
14
+ /** App language configuration. Hosts choose the explicit control-plane store. */
15
+ let TranslationLanguage = class TranslationLanguage extends Shape {
16
+ get ofApplication() {
17
+ return '';
18
+ }
19
+ get identifier() {
20
+ return '';
21
+ }
22
+ get code() {
23
+ return '';
24
+ }
25
+ get nativeName() {
26
+ return '';
27
+ }
28
+ get englishName() {
29
+ return '';
30
+ }
31
+ get direction() {
32
+ return 'ltr';
33
+ }
34
+ get parent() {
35
+ return '';
36
+ }
37
+ get fallback() {
38
+ return '';
39
+ }
40
+ get enabled() {
41
+ return false;
42
+ }
43
+ get supported() {
44
+ return false;
45
+ }
46
+ };
47
+ TranslationLanguage.targetClass = tr.TranslationLanguage;
48
+ __decorate([
49
+ objectProperty({ path: tr.ofApplication, maxCount: 1 }),
50
+ __metadata("design:type", String),
51
+ __metadata("design:paramtypes", [])
52
+ ], TranslationLanguage.prototype, "ofApplication", null);
53
+ __decorate([
54
+ objectProperty({ path: tr.languageIdentifier, maxCount: 1 }),
55
+ __metadata("design:type", String),
56
+ __metadata("design:paramtypes", [])
57
+ ], TranslationLanguage.prototype, "identifier", null);
58
+ __decorate([
59
+ literalProperty({ path: tr.languageCode, maxCount: 1 }),
60
+ __metadata("design:type", String),
61
+ __metadata("design:paramtypes", [])
62
+ ], TranslationLanguage.prototype, "code", null);
63
+ __decorate([
64
+ literalProperty({ path: tr.nativeName, maxCount: 1 }),
65
+ __metadata("design:type", String),
66
+ __metadata("design:paramtypes", [])
67
+ ], TranslationLanguage.prototype, "nativeName", null);
68
+ __decorate([
69
+ literalProperty({ path: tr.englishName, maxCount: 1 }),
70
+ __metadata("design:type", String),
71
+ __metadata("design:paramtypes", [])
72
+ ], TranslationLanguage.prototype, "englishName", null);
73
+ __decorate([
74
+ literalProperty({ path: tr.textDirection, maxCount: 1 }),
75
+ __metadata("design:type", String),
76
+ __metadata("design:paramtypes", [])
77
+ ], TranslationLanguage.prototype, "direction", null);
78
+ __decorate([
79
+ objectProperty({ path: tr.parentLanguage, maxCount: 1 }),
80
+ __metadata("design:type", String),
81
+ __metadata("design:paramtypes", [])
82
+ ], TranslationLanguage.prototype, "parent", null);
83
+ __decorate([
84
+ objectProperty({ path: tr.fallbackLanguage, maxCount: 1 }),
85
+ __metadata("design:type", String),
86
+ __metadata("design:paramtypes", [])
87
+ ], TranslationLanguage.prototype, "fallback", null);
88
+ __decorate([
89
+ literalProperty({ path: tr.languageEnabled, maxCount: 1 }),
90
+ __metadata("design:type", Boolean),
91
+ __metadata("design:paramtypes", [])
92
+ ], TranslationLanguage.prototype, "enabled", null);
93
+ __decorate([
94
+ literalProperty({ path: tr.languageSupported, maxCount: 1 }),
95
+ __metadata("design:type", Boolean),
96
+ __metadata("design:paramtypes", [])
97
+ ], TranslationLanguage.prototype, "supported", null);
98
+ TranslationLanguage = __decorate([
99
+ linkedShape
100
+ ], TranslationLanguage);
101
+ export { TranslationLanguage };
102
+ //# sourceMappingURL=TranslationLanguage.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TranslationLanguage.js","sourceRoot":"","sources":["../../../src/shapes/TranslationLanguage.ts"],"names":[],"mappings":";;;;;;;;;AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,4BAA4B,CAAC;AACnD,OAAO,EAAE,eAAe,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAC7E,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAC5C,OAAO,EAAE,EAAE,EAAE,MAAM,8BAA8B,CAAC;AAElD,iFAAiF;AAE1E,IAAM,mBAAmB,GAAzB,MAAM,mBAAoB,SAAQ,KAAK;IAG5C,IACI,aAAa;QACf,OAAO,EAAE,CAAC;IACZ,CAAC;IACD,IACI,UAAU;QACZ,OAAO,EAAE,CAAC;IACZ,CAAC;IACD,IACI,IAAI;QACN,OAAO,EAAE,CAAC;IACZ,CAAC;IACD,IACI,UAAU;QACZ,OAAO,EAAE,CAAC;IACZ,CAAC;IACD,IACI,WAAW;QACb,OAAO,EAAE,CAAC;IACZ,CAAC;IACD,IACI,SAAS;QACX,OAAO,KAAK,CAAC;IACf,CAAC;IACD,IACI,MAAM;QACR,OAAO,EAAE,CAAC;IACZ,CAAC;IACD,IACI,QAAQ;QACV,OAAO,EAAE,CAAC;IACZ,CAAC;IACD,IACI,OAAO;QACT,OAAO,KAAK,CAAC;IACf,CAAC;IACD,IACI,SAAS;QACX,OAAO,KAAK,CAAC;IACf,CAAC;;AAzCM,+BAAW,GAAG,EAAE,CAAC,mBAAmB,AAAzB,CAA0B;AAE5C;IAAC,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,aAAa,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;wDAGvD;AACD;IAAC,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,kBAAkB,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;qDAG5D;AACD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,YAAY,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;+CAGvD;AACD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;qDAGrD;AACD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,WAAW,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;sDAGtD;AACD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,aAAa,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;oDAGxD;AACD;IAAC,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,cAAc,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;iDAGxD;AACD;IAAC,cAAc,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,gBAAgB,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;mDAG1D;AACD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,eAAe,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;kDAG1D;AACD;IAAC,eAAe,CAAC,EAAE,IAAI,EAAE,EAAE,CAAC,iBAAiB,EAAE,QAAQ,EAAE,CAAC,EAAE,CAAC;;;oDAG5D;AA1CU,mBAAmB;IAD/B,WAAW;GACC,mBAAmB,CA2C/B"}