@_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.
- package/README.md +102 -0
- package/lib/cjs/data/translation.json +8 -0
- package/lib/esm/archive.d.ts +133 -0
- package/lib/esm/archive.js +567 -0
- package/lib/esm/archive.js.map +1 -0
- package/lib/esm/authorization.d.ts +12 -0
- package/lib/esm/authorization.js +10 -0
- package/lib/esm/authorization.js.map +1 -0
- package/lib/esm/backend.d.ts +1 -0
- package/lib/esm/backend.js +3 -0
- package/lib/esm/backend.js.map +1 -0
- package/lib/esm/cdn-loader.d.ts +40 -0
- package/lib/esm/cdn-loader.js +200 -0
- package/lib/esm/cdn-loader.js.map +1 -0
- package/lib/esm/checks.d.ts +56 -0
- package/lib/esm/checks.js +288 -0
- package/lib/esm/checks.js.map +1 -0
- package/lib/esm/compile.d.ts +64 -0
- package/lib/esm/compile.js +99 -0
- package/lib/esm/compile.js.map +1 -0
- package/lib/esm/core/messages.d.ts +25 -0
- package/lib/esm/core/messages.js +76 -0
- package/lib/esm/core/messages.js.map +1 -0
- package/lib/esm/data/translation.json +8 -0
- package/lib/esm/discovery.d.ts +97 -0
- package/lib/esm/discovery.js +365 -0
- package/lib/esm/discovery.js.map +1 -0
- package/lib/esm/exchange.d.ts +100 -0
- package/lib/esm/exchange.js +223 -0
- package/lib/esm/exchange.js.map +1 -0
- package/lib/esm/export.d.ts +28 -0
- package/lib/esm/export.js +92 -0
- package/lib/esm/export.js.map +1 -0
- package/lib/esm/formats/csv.d.ts +8 -0
- package/lib/esm/formats/csv.js +397 -0
- package/lib/esm/formats/csv.js.map +1 -0
- package/lib/esm/formats/json.d.ts +30 -0
- package/lib/esm/formats/json.js +459 -0
- package/lib/esm/formats/json.js.map +1 -0
- package/lib/esm/formats/xliff.d.ts +12 -0
- package/lib/esm/formats/xliff.js +577 -0
- package/lib/esm/formats/xliff.js.map +1 -0
- package/lib/esm/import.d.ts +197 -0
- package/lib/esm/import.js +391 -0
- package/lib/esm/import.js.map +1 -0
- package/lib/esm/index.d.ts +42 -0
- package/lib/esm/index.js +34 -0
- package/lib/esm/index.js.map +1 -0
- package/lib/esm/key-sync-node.d.ts +29 -0
- package/lib/esm/key-sync-node.js +174 -0
- package/lib/esm/key-sync-node.js.map +1 -0
- package/lib/esm/key-sync.d.ts +46 -0
- package/lib/esm/key-sync.js +114 -0
- package/lib/esm/key-sync.js.map +1 -0
- package/lib/esm/key-version.d.ts +50 -0
- package/lib/esm/key-version.js +134 -0
- package/lib/esm/key-version.js.map +1 -0
- package/lib/esm/languages.d.ts +18 -0
- package/lib/esm/languages.js +74 -0
- package/lib/esm/languages.js.map +1 -0
- package/lib/esm/linked-discovery.d.ts +44 -0
- package/lib/esm/linked-discovery.js +267 -0
- package/lib/esm/linked-discovery.js.map +1 -0
- package/lib/esm/message-format.d.ts +41 -0
- package/lib/esm/message-format.js +133 -0
- package/lib/esm/message-format.js.map +1 -0
- package/lib/esm/mt.d.ts +111 -0
- package/lib/esm/mt.js +142 -0
- package/lib/esm/mt.js.map +1 -0
- package/lib/esm/ontologies/translation.d.ts +203 -0
- package/lib/esm/ontologies/translation.js +219 -0
- package/lib/esm/ontologies/translation.js.map +1 -0
- package/lib/esm/package.d.ts +4 -0
- package/lib/esm/package.js +11 -0
- package/lib/esm/package.js.map +1 -0
- package/lib/esm/react.d.ts +55 -0
- package/lib/esm/react.js +127 -0
- package/lib/esm/react.js.map +1 -0
- package/lib/esm/records.d.ts +151 -0
- package/lib/esm/records.js +2 -0
- package/lib/esm/records.js.map +1 -0
- package/lib/esm/release.d.ts +198 -0
- package/lib/esm/release.js +435 -0
- package/lib/esm/release.js.map +1 -0
- package/lib/esm/shape-catalog.d.ts +79 -0
- package/lib/esm/shape-catalog.js +118 -0
- package/lib/esm/shape-catalog.js.map +1 -0
- package/lib/esm/shapes/GlossaryTerm.d.ts +28 -0
- package/lib/esm/shapes/GlossaryTerm.js +94 -0
- package/lib/esm/shapes/GlossaryTerm.js.map +1 -0
- package/lib/esm/shapes/TranslationInventoryOrigin.d.ts +33 -0
- package/lib/esm/shapes/TranslationInventoryOrigin.js +209 -0
- package/lib/esm/shapes/TranslationInventoryOrigin.js.map +1 -0
- package/lib/esm/shapes/TranslationKey.d.ts +92 -0
- package/lib/esm/shapes/TranslationKey.js +194 -0
- package/lib/esm/shapes/TranslationKey.js.map +1 -0
- package/lib/esm/shapes/TranslationKeyVersion.d.ts +19 -0
- package/lib/esm/shapes/TranslationKeyVersion.js +125 -0
- package/lib/esm/shapes/TranslationKeyVersion.js.map +1 -0
- package/lib/esm/shapes/TranslationLanguage.d.ts +15 -0
- package/lib/esm/shapes/TranslationLanguage.js +102 -0
- package/lib/esm/shapes/TranslationLanguage.js.map +1 -0
- package/lib/esm/shapes/TranslationProvider.d.ts +409 -0
- package/lib/esm/shapes/TranslationProvider.js +1376 -0
- package/lib/esm/shapes/TranslationProvider.js.map +1 -0
- package/lib/esm/shapes/TranslationRelease.d.ts +36 -0
- package/lib/esm/shapes/TranslationRelease.js +149 -0
- package/lib/esm/shapes/TranslationRelease.js.map +1 -0
- package/lib/esm/shapes/TranslationRevision.d.ts +39 -0
- package/lib/esm/shapes/TranslationRevision.js +159 -0
- package/lib/esm/shapes/TranslationRevision.js.map +1 -0
- package/lib/esm/shapes/TranslationUnit.d.ts +26 -0
- package/lib/esm/shapes/TranslationUnit.js +111 -0
- package/lib/esm/shapes/TranslationUnit.js.map +1 -0
- package/package.json +134 -0
- package/src/archive.ts +894 -0
- package/src/authorization.ts +33 -0
- package/src/backend.ts +2 -0
- package/src/cdn-loader.ts +264 -0
- package/src/checks.ts +413 -0
- package/src/compile.ts +168 -0
- package/src/core/messages.ts +106 -0
- package/src/data/translation.json +8 -0
- package/src/discovery.ts +594 -0
- package/src/exchange.ts +428 -0
- package/src/export.ts +135 -0
- package/src/formats/csv.ts +459 -0
- package/src/formats/json.ts +587 -0
- package/src/formats/xliff.ts +708 -0
- package/src/import.ts +648 -0
- package/src/index.ts +207 -0
- package/src/key-sync-node.ts +269 -0
- package/src/key-sync.ts +168 -0
- package/src/key-version.ts +206 -0
- package/src/languages.ts +102 -0
- package/src/linked-discovery.ts +385 -0
- package/src/message-format.ts +214 -0
- package/src/mt.ts +248 -0
- package/src/ontologies/translation.ts +234 -0
- package/src/package.ts +19 -0
- package/src/react.tsx +250 -0
- package/src/records.ts +180 -0
- package/src/release.ts +726 -0
- package/src/shape-catalog.ts +198 -0
- package/src/shapes/GlossaryTerm.ts +61 -0
- package/src/shapes/TranslationInventoryOrigin.ts +131 -0
- package/src/shapes/TranslationKey.ts +174 -0
- package/src/shapes/TranslationKeyVersion.ts +77 -0
- package/src/shapes/TranslationLanguage.ts +51 -0
- package/src/shapes/TranslationProvider.ts +1755 -0
- package/src/shapes/TranslationRelease.ts +114 -0
- package/src/shapes/TranslationRevision.ts +105 -0
- package/src/shapes/TranslationUnit.ts +72 -0
package/lib/esm/mt.d.ts
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import type { MessageFormat } from './core/messages.js';
|
|
2
|
+
export interface MtItem {
|
|
3
|
+
key: string;
|
|
4
|
+
sourceText: string;
|
|
5
|
+
/** Authoring context shown to the translator/model. */
|
|
6
|
+
description?: string;
|
|
7
|
+
format?: 'simple' | 'icu';
|
|
8
|
+
}
|
|
9
|
+
export interface MtGlossaryEntry {
|
|
10
|
+
term: string;
|
|
11
|
+
/** prefer (default) = translate as `translation`; keep = do-not-translate; forbid = never use. */
|
|
12
|
+
termType?: 'prefer' | 'require' | 'keep' | 'forbid';
|
|
13
|
+
/** Preferred translation (prefer entries); empty/undefined = keep the term as-is. */
|
|
14
|
+
translation?: string;
|
|
15
|
+
/** Replacement wording (forbid entries). */
|
|
16
|
+
useInstead?: string;
|
|
17
|
+
/** Target language this applies to; empty = all languages. */
|
|
18
|
+
language?: string;
|
|
19
|
+
/** Exact-casing matching (proper nouns / brand styling). */
|
|
20
|
+
caseSensitive?: boolean;
|
|
21
|
+
description?: string;
|
|
22
|
+
}
|
|
23
|
+
/** Register/tone controls (Plan 017 §7.4b) — NOT sampling temperature. */
|
|
24
|
+
export interface MtStyle {
|
|
25
|
+
formality?: 'formal' | 'informal';
|
|
26
|
+
/** Free-text tone guidance, e.g. "friendly, energetic, no bureaucratese". */
|
|
27
|
+
note?: string;
|
|
28
|
+
}
|
|
29
|
+
/** An established translation the provider should stay consistent with. */
|
|
30
|
+
export interface MtReference {
|
|
31
|
+
sourceText: string;
|
|
32
|
+
text: string;
|
|
33
|
+
}
|
|
34
|
+
export interface MtBatchRequest {
|
|
35
|
+
sourceLanguage: string;
|
|
36
|
+
targetLanguage: string;
|
|
37
|
+
items: MtItem[];
|
|
38
|
+
glossary: MtGlossaryEntry[];
|
|
39
|
+
style?: MtStyle;
|
|
40
|
+
/** Translation-memory context: reviewed units for consistency (Plan 017 §7.4c). */
|
|
41
|
+
references?: MtReference[];
|
|
42
|
+
}
|
|
43
|
+
export interface MtBatchResult {
|
|
44
|
+
key: string;
|
|
45
|
+
text: string;
|
|
46
|
+
}
|
|
47
|
+
export interface TranslationMtProvider {
|
|
48
|
+
readonly key: string;
|
|
49
|
+
/** Absent ⇒ the provider claims every language. */
|
|
50
|
+
supportsLanguage?(language: string): boolean;
|
|
51
|
+
translateBatch(request: MtBatchRequest): Promise<MtBatchResult[]>;
|
|
52
|
+
}
|
|
53
|
+
export declare function registerMtProvider(provider: TranslationMtProvider): void;
|
|
54
|
+
export declare function getMtProvider(key: string): TranslationMtProvider | undefined;
|
|
55
|
+
export declare function listMtProviders(): TranslationMtProvider[];
|
|
56
|
+
/** Test seam. */
|
|
57
|
+
export declare function clearMtProviders(): void;
|
|
58
|
+
/**
|
|
59
|
+
* Ordered provider chain for one target language: the preferred provider
|
|
60
|
+
* first when it exists AND supports the language, then every other provider
|
|
61
|
+
* that supports it, registration order.
|
|
62
|
+
*/
|
|
63
|
+
export declare function resolveMtProviders(targetLanguage: string, preferred?: string): TranslationMtProvider[];
|
|
64
|
+
/** Unique `{placeholder}` tokens in a message, sorted for set comparison. */
|
|
65
|
+
export declare function extractPlaceholders(text: string, format?: MessageFormat): string[];
|
|
66
|
+
/**
|
|
67
|
+
* A translation is only usable if it preserves the source's placeholder SET
|
|
68
|
+
* exactly — a dropped or renamed `{param}` breaks interpolation at runtime.
|
|
69
|
+
*/
|
|
70
|
+
export declare function placeholdersIntact(source: string, translated: string, format?: MessageFormat): boolean;
|
|
71
|
+
/** Glossary entries applying to one target language (global + language-specific). */
|
|
72
|
+
export declare function glossaryForLanguage(glossary: MtGlossaryEntry[], language: string): MtGlossaryEntry[];
|
|
73
|
+
export declare function chunkItems<T>(items: T[], size: number): T[][];
|
|
74
|
+
/**
|
|
75
|
+
* Resolve the formality for one language from the encoded config entries
|
|
76
|
+
* ("formal" = app default; "de:informal" = per-language override; override wins).
|
|
77
|
+
*/
|
|
78
|
+
export declare function formalityForLanguage(entries: string[], language: string): 'formal' | 'informal' | undefined;
|
|
79
|
+
/** Minimal entry view the consistency helpers need (client-safe). */
|
|
80
|
+
export interface ConsistencyEntry {
|
|
81
|
+
key: string;
|
|
82
|
+
namespace?: string;
|
|
83
|
+
sourceText: string;
|
|
84
|
+
format?: 'simple' | 'icu';
|
|
85
|
+
units: Record<string, {
|
|
86
|
+
text: string;
|
|
87
|
+
state: string;
|
|
88
|
+
} | undefined>;
|
|
89
|
+
}
|
|
90
|
+
/** Identical English source translated DIFFERENTLY within one language. */
|
|
91
|
+
export interface ConsistencyConflict {
|
|
92
|
+
sourceText: string;
|
|
93
|
+
language: string;
|
|
94
|
+
/** One entry per distinct translation: the text + the keys carrying it. */
|
|
95
|
+
variants: Array<{
|
|
96
|
+
text: string;
|
|
97
|
+
keys: string[];
|
|
98
|
+
}>;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Find keys whose IDENTICAL source text has diverging translations in a
|
|
102
|
+
* language — the core "same words, same translation" consistency check.
|
|
103
|
+
* Empty/untranslated units are ignored; whitespace-trimmed comparison.
|
|
104
|
+
*/
|
|
105
|
+
export declare function findInconsistentTranslations(entries: ConsistencyEntry[], language: string): ConsistencyConflict[];
|
|
106
|
+
/**
|
|
107
|
+
* Pick reviewed units as translation-memory REFERENCES for an MT batch:
|
|
108
|
+
* same-namespace reviewed translations first (shared vocabulary), then the
|
|
109
|
+
* shortest reviewed units overall (vocabulary-dense). Deterministic.
|
|
110
|
+
*/
|
|
111
|
+
export declare function pickReferenceUnits(entries: ConsistencyEntry[], language: string, batchNamespaces: string[], max?: number): MtReference[];
|
package/lib/esm/mt.js
ADDED
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Machine-translation provider registry (Plan 014 AD-L / Plan 017 Slice B).
|
|
3
|
+
* Providers implement one method — translate a batch of UI strings — and
|
|
4
|
+
* register by key ('claude', 'deepl', …). Resolution is PER TARGET LANGUAGE
|
|
5
|
+
* with a fallback chain: not every provider covers every language (DeepL has
|
|
6
|
+
* no Swahili or Urdu), so the preferred provider is used where it supports
|
|
7
|
+
* the target and the chain falls through otherwise. Pure module: no I/O, no
|
|
8
|
+
* SDK imports — concrete providers live with the host (Create Now) and are
|
|
9
|
+
* registered at boot.
|
|
10
|
+
*/
|
|
11
|
+
import { analyzeMessage, compareMessageArguments, } from './message-format.js';
|
|
12
|
+
const providers = new Map();
|
|
13
|
+
export function registerMtProvider(provider) {
|
|
14
|
+
providers.set(provider.key, provider);
|
|
15
|
+
}
|
|
16
|
+
export function getMtProvider(key) {
|
|
17
|
+
return providers.get(key);
|
|
18
|
+
}
|
|
19
|
+
export function listMtProviders() {
|
|
20
|
+
return [...providers.values()];
|
|
21
|
+
}
|
|
22
|
+
/** Test seam. */
|
|
23
|
+
export function clearMtProviders() {
|
|
24
|
+
providers.clear();
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Ordered provider chain for one target language: the preferred provider
|
|
28
|
+
* first when it exists AND supports the language, then every other provider
|
|
29
|
+
* that supports it, registration order.
|
|
30
|
+
*/
|
|
31
|
+
export function resolveMtProviders(targetLanguage, preferred) {
|
|
32
|
+
const supports = (p) => !p.supportsLanguage || p.supportsLanguage(targetLanguage);
|
|
33
|
+
const chain = listMtProviders().filter(supports);
|
|
34
|
+
if (!preferred)
|
|
35
|
+
return chain;
|
|
36
|
+
const first = chain.find((p) => p.key === preferred);
|
|
37
|
+
if (!first)
|
|
38
|
+
return chain;
|
|
39
|
+
return [first, ...chain.filter((p) => p !== first)];
|
|
40
|
+
}
|
|
41
|
+
/** Unique `{placeholder}` tokens in a message, sorted for set comparison. */
|
|
42
|
+
export function extractPlaceholders(text, format = 'simple') {
|
|
43
|
+
return analyzeMessage(text, format).arguments.map(({ name }) => name);
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* A translation is only usable if it preserves the source's placeholder SET
|
|
47
|
+
* exactly — a dropped or renamed `{param}` breaks interpolation at runtime.
|
|
48
|
+
*/
|
|
49
|
+
export function placeholdersIntact(source, translated, format = 'simple') {
|
|
50
|
+
return compareMessageArguments(source, translated, format).valid;
|
|
51
|
+
}
|
|
52
|
+
/** Glossary entries applying to one target language (global + language-specific). */
|
|
53
|
+
export function glossaryForLanguage(glossary, language) {
|
|
54
|
+
return glossary.filter((g) => !g.language || g.language === language);
|
|
55
|
+
}
|
|
56
|
+
export function chunkItems(items, size) {
|
|
57
|
+
if (size < 1)
|
|
58
|
+
throw new Error('chunk size must be >= 1');
|
|
59
|
+
const chunks = [];
|
|
60
|
+
for (let i = 0; i < items.length; i += size)
|
|
61
|
+
chunks.push(items.slice(i, i + size));
|
|
62
|
+
return chunks;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Resolve the formality for one language from the encoded config entries
|
|
66
|
+
* ("formal" = app default; "de:informal" = per-language override; override wins).
|
|
67
|
+
*/
|
|
68
|
+
export function formalityForLanguage(entries, language) {
|
|
69
|
+
let result;
|
|
70
|
+
for (const entry of entries !== null && entries !== void 0 ? entries : []) {
|
|
71
|
+
const i = entry.indexOf(':');
|
|
72
|
+
const value = i === -1 ? entry : entry.slice(i + 1);
|
|
73
|
+
if (value !== 'formal' && value !== 'informal')
|
|
74
|
+
continue;
|
|
75
|
+
if (i === -1) {
|
|
76
|
+
if (!result)
|
|
77
|
+
result = value;
|
|
78
|
+
}
|
|
79
|
+
else if (entry.slice(0, i) === language) {
|
|
80
|
+
return value;
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
return result;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Find keys whose IDENTICAL source text has diverging translations in a
|
|
87
|
+
* language — the core "same words, same translation" consistency check.
|
|
88
|
+
* Empty/untranslated units are ignored; whitespace-trimmed comparison.
|
|
89
|
+
*/
|
|
90
|
+
export function findInconsistentTranslations(entries, language) {
|
|
91
|
+
var _a, _b, _c, _d;
|
|
92
|
+
const bySource = new Map();
|
|
93
|
+
for (const entry of entries) {
|
|
94
|
+
const source = entry.sourceText.trim();
|
|
95
|
+
const text = (_b = (_a = entry.units[language]) === null || _a === void 0 ? void 0 : _a.text) === null || _b === void 0 ? void 0 : _b.trim();
|
|
96
|
+
if (!source || !text)
|
|
97
|
+
continue;
|
|
98
|
+
const variants = (_c = bySource.get(source)) !== null && _c !== void 0 ? _c : new Map();
|
|
99
|
+
variants.set(text, [...((_d = variants.get(text)) !== null && _d !== void 0 ? _d : []), entry.key]);
|
|
100
|
+
bySource.set(source, variants);
|
|
101
|
+
}
|
|
102
|
+
const conflicts = [];
|
|
103
|
+
for (const [sourceText, variants] of bySource) {
|
|
104
|
+
if (variants.size < 2)
|
|
105
|
+
continue;
|
|
106
|
+
conflicts.push({
|
|
107
|
+
sourceText,
|
|
108
|
+
language,
|
|
109
|
+
variants: [...variants].map(([text, keys]) => ({ text, keys: keys.sort() })),
|
|
110
|
+
});
|
|
111
|
+
}
|
|
112
|
+
return conflicts.sort((a, b) => a.sourceText.localeCompare(b.sourceText));
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* Pick reviewed units as translation-memory REFERENCES for an MT batch:
|
|
116
|
+
* same-namespace reviewed translations first (shared vocabulary), then the
|
|
117
|
+
* shortest reviewed units overall (vocabulary-dense). Deterministic.
|
|
118
|
+
*/
|
|
119
|
+
export function pickReferenceUnits(entries, language, batchNamespaces, max = 20) {
|
|
120
|
+
const namespaces = new Set(batchNamespaces);
|
|
121
|
+
const reviewed = entries
|
|
122
|
+
.map((entry) => {
|
|
123
|
+
var _a;
|
|
124
|
+
return ({
|
|
125
|
+
namespace: (_a = entry.namespace) !== null && _a !== void 0 ? _a : '',
|
|
126
|
+
sourceText: entry.sourceText.trim(),
|
|
127
|
+
unit: entry.units[language],
|
|
128
|
+
});
|
|
129
|
+
})
|
|
130
|
+
.filter((row) => {
|
|
131
|
+
var _a;
|
|
132
|
+
return row.sourceText &&
|
|
133
|
+
((_a = row.unit) === null || _a === void 0 ? void 0 : _a.state) === 'reviewed' &&
|
|
134
|
+
row.unit.text.trim();
|
|
135
|
+
});
|
|
136
|
+
const score = (row) => (namespaces.has(row.namespace) ? 0 : 100000) + row.sourceText.length;
|
|
137
|
+
return reviewed
|
|
138
|
+
.sort((a, b) => score(a) - score(b) || a.sourceText.localeCompare(b.sourceText))
|
|
139
|
+
.slice(0, max)
|
|
140
|
+
.map((row) => ({ sourceText: row.sourceText, text: row.unit.text.trim() }));
|
|
141
|
+
}
|
|
142
|
+
//# sourceMappingURL=mt.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mt.js","sourceRoot":"","sources":["../../src/mt.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
/** Lazy-load the (currently empty) serialized ontology graph. */
|
|
2
|
+
export declare var loadData: () => Promise<{
|
|
3
|
+
"@context": {
|
|
4
|
+
rdf: string;
|
|
5
|
+
rdfs: string;
|
|
6
|
+
tr: string;
|
|
7
|
+
};
|
|
8
|
+
"@graph": any[];
|
|
9
|
+
}>;
|
|
10
|
+
/** Vocabulary namespace for the translation package. */
|
|
11
|
+
export declare var ns: (term: string) => import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
12
|
+
export declare var _self: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
13
|
+
export declare var TranslationKey: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
14
|
+
export declare var TranslationKeyVersion: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
15
|
+
export declare var TranslationRelease: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
16
|
+
export declare var TranslationUnit: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
17
|
+
export declare var TranslationRevision: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
18
|
+
export declare var GlossaryTerm: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
19
|
+
export declare var TranslationInventoryOrigin: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
20
|
+
export declare var TranslationLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
21
|
+
export declare var languageIdentifier: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
22
|
+
export declare var languageCode: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
23
|
+
export declare var nativeName: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
24
|
+
export declare var englishName: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
25
|
+
export declare var textDirection: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
26
|
+
export declare var parentLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
27
|
+
export declare var fallbackLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
28
|
+
export declare var languageEnabled: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
29
|
+
export declare var languageSupported: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
30
|
+
export declare var namespace: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
31
|
+
export declare var key: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
32
|
+
export declare var sourceText: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
33
|
+
export declare var description: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
34
|
+
export declare var kind: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
35
|
+
export declare var ofApplication: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
36
|
+
export declare var ofNode: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
37
|
+
export declare var ofField: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
38
|
+
export declare var ofShape: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
39
|
+
export declare var ofProperty: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
40
|
+
export declare var fromPackage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
41
|
+
export declare var overridden: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
42
|
+
export declare var shapeSource: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
43
|
+
export declare var format: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
44
|
+
export declare var currentVersion: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
45
|
+
export declare var versionId: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
46
|
+
export declare var sourceLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
47
|
+
export declare var argumentSignature: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
48
|
+
export declare var contractHash: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
49
|
+
export declare var sourceHash: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
50
|
+
export declare var supersedes: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
51
|
+
export declare var createdBy: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
52
|
+
export declare var branch: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
53
|
+
export declare var releaseId: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
54
|
+
export declare var buildId: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
55
|
+
export declare var channel: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
56
|
+
export declare var contractSetHash: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
57
|
+
export declare var manifestHash: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
58
|
+
export declare var hotfixSequence: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
59
|
+
export declare var publishedAt: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
60
|
+
export declare var supportedUntil: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
61
|
+
export declare var qualitySummary: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
62
|
+
export declare var languages: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
63
|
+
export declare var defaultLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
64
|
+
export declare var cdnTarget: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
65
|
+
export declare var autoPublish: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
66
|
+
export declare var reviewedOnlyLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
67
|
+
export declare var mtDefault: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
68
|
+
export declare var mtFormality: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
69
|
+
export declare var mtStyleNote: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
70
|
+
export declare var ofKey: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
71
|
+
export declare var ofKeyVersion: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
72
|
+
export declare var language: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
73
|
+
export declare var text: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
74
|
+
export declare var state: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
75
|
+
export declare var updatedAt: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
76
|
+
export declare var updatedBy: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
77
|
+
export declare var origin: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
78
|
+
export declare var status: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
79
|
+
export declare var author: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
80
|
+
export declare var authorKind: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
81
|
+
export declare var mtProvider: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
82
|
+
export declare var basedOnText: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
83
|
+
export declare var note: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
84
|
+
export declare var createdAt: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
85
|
+
export declare var decidedAt: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
86
|
+
export declare var decidedBy: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
87
|
+
export declare var term: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
88
|
+
export declare var glossaryTranslation: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
89
|
+
export declare var glossaryLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
90
|
+
export declare var termType: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
91
|
+
export declare var useInstead: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
92
|
+
export declare var caseSensitive: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
93
|
+
export declare var inventoryBranch: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
94
|
+
export declare var inventoryIdentity: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
95
|
+
export declare var inventoryStatus: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
96
|
+
export declare var inventorySource: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
97
|
+
export declare var inventorySourceId: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
98
|
+
export declare var inventoryAuthoritative: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
99
|
+
export declare var inventoryFile: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
100
|
+
export declare var inventoryLine: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
101
|
+
export declare var inventoryOwner: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
102
|
+
export declare var inventoryShape: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
103
|
+
export declare var inventoryProperty: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
104
|
+
export declare var inventoryNode: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
105
|
+
export declare var inventoryTargetClass: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
106
|
+
export declare var inventoryObservedAt: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
107
|
+
/** Grouped export for prefix/name access. */
|
|
108
|
+
export declare const tr: {
|
|
109
|
+
TranslationLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
110
|
+
languageIdentifier: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
111
|
+
languageCode: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
112
|
+
nativeName: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
113
|
+
englishName: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
114
|
+
textDirection: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
115
|
+
parentLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
116
|
+
fallbackLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
117
|
+
languageEnabled: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
118
|
+
languageSupported: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
119
|
+
TranslationKey: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
120
|
+
TranslationKeyVersion: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
121
|
+
TranslationRelease: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
122
|
+
TranslationUnit: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
123
|
+
TranslationRevision: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
124
|
+
GlossaryTerm: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
125
|
+
TranslationInventoryOrigin: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
126
|
+
namespace: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
127
|
+
key: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
128
|
+
sourceText: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
129
|
+
description: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
130
|
+
kind: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
131
|
+
ofApplication: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
132
|
+
ofNode: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
133
|
+
ofField: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
134
|
+
ofShape: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
135
|
+
ofProperty: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
136
|
+
fromPackage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
137
|
+
overridden: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
138
|
+
shapeSource: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
139
|
+
format: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
140
|
+
currentVersion: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
141
|
+
versionId: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
142
|
+
sourceLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
143
|
+
argumentSignature: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
144
|
+
contractHash: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
145
|
+
sourceHash: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
146
|
+
supersedes: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
147
|
+
createdBy: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
148
|
+
branch: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
149
|
+
releaseId: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
150
|
+
buildId: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
151
|
+
channel: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
152
|
+
contractSetHash: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
153
|
+
manifestHash: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
154
|
+
hotfixSequence: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
155
|
+
publishedAt: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
156
|
+
supportedUntil: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
157
|
+
qualitySummary: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
158
|
+
languages: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
159
|
+
defaultLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
160
|
+
cdnTarget: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
161
|
+
autoPublish: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
162
|
+
reviewedOnlyLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
163
|
+
mtDefault: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
164
|
+
mtFormality: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
165
|
+
mtStyleNote: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
166
|
+
ofKey: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
167
|
+
ofKeyVersion: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
168
|
+
language: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
169
|
+
text: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
170
|
+
state: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
171
|
+
updatedAt: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
172
|
+
updatedBy: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
173
|
+
origin: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
174
|
+
status: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
175
|
+
author: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
176
|
+
authorKind: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
177
|
+
mtProvider: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
178
|
+
basedOnText: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
179
|
+
note: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
180
|
+
createdAt: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
181
|
+
decidedAt: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
182
|
+
decidedBy: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
183
|
+
term: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
184
|
+
glossaryTranslation: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
185
|
+
glossaryLanguage: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
186
|
+
termType: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
187
|
+
useInstead: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
188
|
+
caseSensitive: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
189
|
+
inventoryBranch: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
190
|
+
inventoryIdentity: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
191
|
+
inventoryStatus: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
192
|
+
inventorySource: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
193
|
+
inventorySourceId: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
194
|
+
inventoryAuthoritative: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
195
|
+
inventoryFile: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
196
|
+
inventoryLine: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
197
|
+
inventoryOwner: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
198
|
+
inventoryShape: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
199
|
+
inventoryProperty: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
200
|
+
inventoryNode: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
201
|
+
inventoryTargetClass: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
202
|
+
inventoryObservedAt: import("@_linked/core/utils/NodeReference").NodeReferenceValue;
|
|
203
|
+
};
|