@ifc-lite/ids 1.0.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/LICENSE +373 -0
- package/README.md +76 -0
- package/dist/constraints/index.d.ts +17 -0
- package/dist/constraints/index.d.ts.map +1 -0
- package/dist/constraints/index.js +226 -0
- package/dist/constraints/index.js.map +1 -0
- package/dist/facets/attribute-facet.d.ts +10 -0
- package/dist/facets/attribute-facet.d.ts.map +1 -0
- package/dist/facets/attribute-facet.js +107 -0
- package/dist/facets/attribute-facet.js.map +1 -0
- package/dist/facets/classification-facet.d.ts +10 -0
- package/dist/facets/classification-facet.d.ts.map +1 -0
- package/dist/facets/classification-facet.js +98 -0
- package/dist/facets/classification-facet.js.map +1 -0
- package/dist/facets/entity-facet.d.ts +18 -0
- package/dist/facets/entity-facet.d.ts.map +1 -0
- package/dist/facets/entity-facet.js +116 -0
- package/dist/facets/entity-facet.js.map +1 -0
- package/dist/facets/index.d.ts +31 -0
- package/dist/facets/index.d.ts.map +1 -0
- package/dist/facets/index.js +57 -0
- package/dist/facets/index.js.map +1 -0
- package/dist/facets/material-facet.d.ts +10 -0
- package/dist/facets/material-facet.d.ts.map +1 -0
- package/dist/facets/material-facet.js +67 -0
- package/dist/facets/material-facet.js.map +1 -0
- package/dist/facets/partof-facet.d.ts +10 -0
- package/dist/facets/partof-facet.d.ts.map +1 -0
- package/dist/facets/partof-facet.js +112 -0
- package/dist/facets/partof-facet.js.map +1 -0
- package/dist/facets/property-facet.d.ts +10 -0
- package/dist/facets/property-facet.d.ts.map +1 -0
- package/dist/facets/property-facet.js +156 -0
- package/dist/facets/property-facet.js.map +1 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +26 -0
- package/dist/index.js.map +1 -0
- package/dist/parser/xml-parser.d.ts +15 -0
- package/dist/parser/xml-parser.d.ts.map +1 -0
- package/dist/parser/xml-parser.js +486 -0
- package/dist/parser/xml-parser.js.map +1 -0
- package/dist/translation/index.d.ts +3 -0
- package/dist/translation/index.d.ts.map +1 -0
- package/dist/translation/index.js +6 -0
- package/dist/translation/index.js.map +1 -0
- package/dist/translation/locales/de.d.ts +189 -0
- package/dist/translation/locales/de.d.ts.map +1 -0
- package/dist/translation/locales/de.js +226 -0
- package/dist/translation/locales/de.js.map +1 -0
- package/dist/translation/locales/en.d.ts +190 -0
- package/dist/translation/locales/en.d.ts.map +1 -0
- package/dist/translation/locales/en.js +226 -0
- package/dist/translation/locales/en.js.map +1 -0
- package/dist/translation/locales/fr.d.ts +189 -0
- package/dist/translation/locales/fr.d.ts.map +1 -0
- package/dist/translation/locales/fr.js +226 -0
- package/dist/translation/locales/fr.js.map +1 -0
- package/dist/translation/locales/index.d.ts +4 -0
- package/dist/translation/locales/index.d.ts.map +1 -0
- package/dist/translation/locales/index.js +7 -0
- package/dist/translation/locales/index.js.map +1 -0
- package/dist/translation/service.d.ts +62 -0
- package/dist/translation/service.d.ts.map +1 -0
- package/dist/translation/service.js +569 -0
- package/dist/translation/service.js.map +1 -0
- package/dist/types.d.ts +407 -0
- package/dist/types.d.ts.map +1 -0
- package/dist/types.js +5 -0
- package/dist/types.js.map +1 -0
- package/dist/validation/validator.d.ts +9 -0
- package/dist/validation/validator.d.ts.map +1 -0
- package/dist/validation/validator.js +431 -0
- package/dist/validation/validator.js.map +1 -0
- package/package.json +51 -0
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* German translations for IDS validation
|
|
3
|
+
*/
|
|
4
|
+
export declare const de: {
|
|
5
|
+
status: {
|
|
6
|
+
pass: string;
|
|
7
|
+
fail: string;
|
|
8
|
+
not_applicable: string;
|
|
9
|
+
};
|
|
10
|
+
optionality: {
|
|
11
|
+
required: string;
|
|
12
|
+
optional: string;
|
|
13
|
+
prohibited: string;
|
|
14
|
+
};
|
|
15
|
+
cardinality: {
|
|
16
|
+
satisfied: string;
|
|
17
|
+
atLeast: string;
|
|
18
|
+
atMost: string;
|
|
19
|
+
between: string;
|
|
20
|
+
exactly: string;
|
|
21
|
+
};
|
|
22
|
+
relations: {
|
|
23
|
+
IfcRelAggregates: string;
|
|
24
|
+
IfcRelContainedInSpatialStructure: string;
|
|
25
|
+
IfcRelNests: string;
|
|
26
|
+
IfcRelVoidsElement: string;
|
|
27
|
+
IfcRelFillsElement: string;
|
|
28
|
+
};
|
|
29
|
+
constraints: {
|
|
30
|
+
simpleValue: string;
|
|
31
|
+
pattern: string;
|
|
32
|
+
enumeration: {
|
|
33
|
+
single: string;
|
|
34
|
+
multiple: string;
|
|
35
|
+
};
|
|
36
|
+
bounds: {
|
|
37
|
+
between: string;
|
|
38
|
+
atLeast: string;
|
|
39
|
+
atMost: string;
|
|
40
|
+
greaterThan: string;
|
|
41
|
+
lessThan: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
applicability: {
|
|
45
|
+
entity: {
|
|
46
|
+
simple: string;
|
|
47
|
+
withPredefined: string;
|
|
48
|
+
pattern: string;
|
|
49
|
+
};
|
|
50
|
+
attribute: {
|
|
51
|
+
exists: string;
|
|
52
|
+
equals: string;
|
|
53
|
+
pattern: string;
|
|
54
|
+
};
|
|
55
|
+
property: {
|
|
56
|
+
exists: string;
|
|
57
|
+
equals: string;
|
|
58
|
+
pattern: string;
|
|
59
|
+
bounded: string;
|
|
60
|
+
};
|
|
61
|
+
classification: {
|
|
62
|
+
any: string;
|
|
63
|
+
system: string;
|
|
64
|
+
value: string;
|
|
65
|
+
systemAndValue: string;
|
|
66
|
+
};
|
|
67
|
+
material: {
|
|
68
|
+
any: string;
|
|
69
|
+
value: string;
|
|
70
|
+
pattern: string;
|
|
71
|
+
};
|
|
72
|
+
partOf: {
|
|
73
|
+
simple: string;
|
|
74
|
+
withEntity: string;
|
|
75
|
+
withEntityAndType: string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
requirements: {
|
|
79
|
+
entity: {
|
|
80
|
+
mustBe: string;
|
|
81
|
+
mustHavePredefined: string;
|
|
82
|
+
mustBeWithPredefined: string;
|
|
83
|
+
};
|
|
84
|
+
attribute: {
|
|
85
|
+
mustExist: string;
|
|
86
|
+
mustEqual: string;
|
|
87
|
+
mustMatch: string;
|
|
88
|
+
mustNotExist: string;
|
|
89
|
+
mustNotEqual: string;
|
|
90
|
+
};
|
|
91
|
+
property: {
|
|
92
|
+
mustExist: string;
|
|
93
|
+
mustEqual: string;
|
|
94
|
+
mustMatch: string;
|
|
95
|
+
mustBeBounded: string;
|
|
96
|
+
mustHaveType: string;
|
|
97
|
+
mustNotExist: string;
|
|
98
|
+
};
|
|
99
|
+
classification: {
|
|
100
|
+
mustHave: string;
|
|
101
|
+
mustBeInSystem: string;
|
|
102
|
+
mustHaveValue: string;
|
|
103
|
+
mustBeInSystemWithValue: string;
|
|
104
|
+
mustNotHave: string;
|
|
105
|
+
mustNotBeInSystem: string;
|
|
106
|
+
};
|
|
107
|
+
material: {
|
|
108
|
+
mustHave: string;
|
|
109
|
+
mustBe: string;
|
|
110
|
+
mustMatch: string;
|
|
111
|
+
mustNotHave: string;
|
|
112
|
+
};
|
|
113
|
+
partOf: {
|
|
114
|
+
mustBe: string;
|
|
115
|
+
mustBeSimple: string;
|
|
116
|
+
mustNotBe: string;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
failures: {
|
|
120
|
+
entityTypeMismatch: string;
|
|
121
|
+
predefinedTypeMismatch: string;
|
|
122
|
+
predefinedTypeMissing: string;
|
|
123
|
+
attributeMissing: string;
|
|
124
|
+
attributeEmpty: string;
|
|
125
|
+
attributeValueMismatch: string;
|
|
126
|
+
attributePatternMismatch: string;
|
|
127
|
+
attributeProhibited: string;
|
|
128
|
+
psetMissing: string;
|
|
129
|
+
psetMissingAvailable: string;
|
|
130
|
+
propertyMissing: string;
|
|
131
|
+
propertyMissingAvailable: string;
|
|
132
|
+
propertyEmpty: string;
|
|
133
|
+
propertyValueMismatch: string;
|
|
134
|
+
propertyPatternMismatch: string;
|
|
135
|
+
propertyDatatypeMismatch: string;
|
|
136
|
+
propertyOutOfBounds: string;
|
|
137
|
+
propertyProhibited: string;
|
|
138
|
+
classificationMissing: string;
|
|
139
|
+
classificationSystemMismatch: string;
|
|
140
|
+
classificationSystemMissingAvailable: string;
|
|
141
|
+
classificationValueMismatch: string;
|
|
142
|
+
classificationValueMissingAvailable: string;
|
|
143
|
+
classificationProhibited: string;
|
|
144
|
+
materialMissing: string;
|
|
145
|
+
materialValueMismatch: string;
|
|
146
|
+
materialValueMissingAvailable: string;
|
|
147
|
+
materialProhibited: string;
|
|
148
|
+
partOfMissing: string;
|
|
149
|
+
partOfMissingSimple: string;
|
|
150
|
+
partOfEntityMismatch: string;
|
|
151
|
+
partOfPredefinedMismatch: string;
|
|
152
|
+
partOfProhibited: string;
|
|
153
|
+
prohibited: string;
|
|
154
|
+
unknown: string;
|
|
155
|
+
};
|
|
156
|
+
summary: {
|
|
157
|
+
title: string;
|
|
158
|
+
specifications: string;
|
|
159
|
+
entities: string;
|
|
160
|
+
overallPass: string;
|
|
161
|
+
overallFail: string;
|
|
162
|
+
noApplicable: string;
|
|
163
|
+
};
|
|
164
|
+
ui: {
|
|
165
|
+
specification: string;
|
|
166
|
+
specifications: string;
|
|
167
|
+
requirement: string;
|
|
168
|
+
requirements: string;
|
|
169
|
+
applicability: string;
|
|
170
|
+
entity: string;
|
|
171
|
+
entities: string;
|
|
172
|
+
passed: string;
|
|
173
|
+
failed: string;
|
|
174
|
+
passRate: string;
|
|
175
|
+
actualValue: string;
|
|
176
|
+
expectedValue: string;
|
|
177
|
+
failureReason: string;
|
|
178
|
+
showAll: string;
|
|
179
|
+
showFailed: string;
|
|
180
|
+
isolateFailed: string;
|
|
181
|
+
isolatePassed: string;
|
|
182
|
+
exportJson: string;
|
|
183
|
+
exportBcf: string;
|
|
184
|
+
loadIds: string;
|
|
185
|
+
runValidation: string;
|
|
186
|
+
clearResults: string;
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
//# sourceMappingURL=de.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"de.d.ts","sourceRoot":"","sources":["../../../src/translation/locales/de.ts"],"names":[],"mappings":"AAIA;;GAEG;AAEH,eAAO,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyOd,CAAC"}
|
|
@@ -0,0 +1,226 @@
|
|
|
1
|
+
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
2
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
3
|
+
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
4
|
+
/**
|
|
5
|
+
* German translations for IDS validation
|
|
6
|
+
*/
|
|
7
|
+
export const de = {
|
|
8
|
+
// ============================================================================
|
|
9
|
+
// Status
|
|
10
|
+
// ============================================================================
|
|
11
|
+
status: {
|
|
12
|
+
pass: 'BESTANDEN',
|
|
13
|
+
fail: 'FEHLGESCHLAGEN',
|
|
14
|
+
not_applicable: 'NICHT ANWENDBAR',
|
|
15
|
+
},
|
|
16
|
+
// ============================================================================
|
|
17
|
+
// Optionality / Cardinality
|
|
18
|
+
// ============================================================================
|
|
19
|
+
optionality: {
|
|
20
|
+
required: 'Erforderlich',
|
|
21
|
+
optional: 'Optional',
|
|
22
|
+
prohibited: 'Verboten',
|
|
23
|
+
},
|
|
24
|
+
cardinality: {
|
|
25
|
+
satisfied: 'Kardinalität erfüllt',
|
|
26
|
+
atLeast: 'Mindestens {min} erwartet, {count} gefunden',
|
|
27
|
+
atMost: 'Maximal {max} erwartet, {count} gefunden',
|
|
28
|
+
between: 'Zwischen {min} und {max} erwartet, {count} gefunden',
|
|
29
|
+
exactly: 'Genau {count} erwartet',
|
|
30
|
+
},
|
|
31
|
+
// ============================================================================
|
|
32
|
+
// Relationships
|
|
33
|
+
// ============================================================================
|
|
34
|
+
relations: {
|
|
35
|
+
IfcRelAggregates: 'Teil von',
|
|
36
|
+
IfcRelContainedInSpatialStructure: 'enthalten in',
|
|
37
|
+
IfcRelNests: 'verschachtelt in',
|
|
38
|
+
IfcRelVoidsElement: 'durchbrechend',
|
|
39
|
+
IfcRelFillsElement: 'ausfüllend',
|
|
40
|
+
},
|
|
41
|
+
// ============================================================================
|
|
42
|
+
// Constraint Descriptions
|
|
43
|
+
// ============================================================================
|
|
44
|
+
constraints: {
|
|
45
|
+
simpleValue: '"{value}"',
|
|
46
|
+
pattern: 'entsprechend Muster "{pattern}"',
|
|
47
|
+
enumeration: {
|
|
48
|
+
single: '"{value}"',
|
|
49
|
+
multiple: 'eines von [{values}]',
|
|
50
|
+
},
|
|
51
|
+
bounds: {
|
|
52
|
+
between: 'zwischen {min} und {max}',
|
|
53
|
+
atLeast: 'mindestens {min}',
|
|
54
|
+
atMost: 'höchstens {max}',
|
|
55
|
+
greaterThan: 'größer als {min}',
|
|
56
|
+
lessThan: 'kleiner als {max}',
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
// ============================================================================
|
|
60
|
+
// Applicability Descriptions
|
|
61
|
+
// ============================================================================
|
|
62
|
+
applicability: {
|
|
63
|
+
entity: {
|
|
64
|
+
simple: 'Elemente vom Typ {entityType}',
|
|
65
|
+
withPredefined: '{entityType}-Elemente mit vordefiniertem Typ {predefinedType}',
|
|
66
|
+
pattern: 'Elemente mit Typ entsprechend {pattern}',
|
|
67
|
+
},
|
|
68
|
+
attribute: {
|
|
69
|
+
exists: 'Elemente bei denen Attribut "{name}" existiert',
|
|
70
|
+
equals: 'Elemente bei denen "{name}" gleich {value} ist',
|
|
71
|
+
pattern: 'Elemente bei denen "{name}" dem Muster {pattern} entspricht',
|
|
72
|
+
},
|
|
73
|
+
property: {
|
|
74
|
+
exists: 'Elemente mit Eigenschaft "{property}" in "{pset}"',
|
|
75
|
+
equals: 'Elemente bei denen "{pset}.{property}" gleich {value} ist',
|
|
76
|
+
pattern: 'Elemente bei denen "{pset}.{property}" dem Muster {pattern} entspricht',
|
|
77
|
+
bounded: 'Elemente bei denen "{pset}.{property}" {bounds} ist',
|
|
78
|
+
},
|
|
79
|
+
classification: {
|
|
80
|
+
any: 'Elemente mit beliebiger Klassifizierung',
|
|
81
|
+
system: 'Elemente klassifiziert in "{system}"',
|
|
82
|
+
value: 'Elemente mit Klassifizierung "{value}"',
|
|
83
|
+
systemAndValue: 'Elemente klassifiziert als "{value}" in "{system}"',
|
|
84
|
+
},
|
|
85
|
+
material: {
|
|
86
|
+
any: 'Elemente mit zugewiesenem Material',
|
|
87
|
+
value: 'Elemente mit Material "{value}"',
|
|
88
|
+
pattern: 'Elemente mit Material entsprechend {pattern}',
|
|
89
|
+
},
|
|
90
|
+
partOf: {
|
|
91
|
+
simple: 'Elemente die {relation} einem anderen Element sind',
|
|
92
|
+
withEntity: 'Elemente die {relation} einem/einer {entity} sind',
|
|
93
|
+
withEntityAndType: 'Elemente die {relation} einem/einer {entity} mit Typ {predefinedType} sind',
|
|
94
|
+
},
|
|
95
|
+
},
|
|
96
|
+
// ============================================================================
|
|
97
|
+
// Requirement Descriptions
|
|
98
|
+
// ============================================================================
|
|
99
|
+
requirements: {
|
|
100
|
+
entity: {
|
|
101
|
+
mustBe: 'Muss vom Typ {entityType} sein',
|
|
102
|
+
mustHavePredefined: 'Muss vordefinierten Typ {predefinedType} haben',
|
|
103
|
+
mustBeWithPredefined: 'Muss {entityType} mit vordefiniertem Typ {predefinedType} sein',
|
|
104
|
+
},
|
|
105
|
+
attribute: {
|
|
106
|
+
mustExist: 'Attribut "{name}" muss existieren',
|
|
107
|
+
mustEqual: 'Attribut "{name}" muss {value} entsprechen',
|
|
108
|
+
mustMatch: 'Attribut "{name}" muss dem Muster {pattern} entsprechen',
|
|
109
|
+
mustNotExist: 'Attribut "{name}" darf nicht existieren',
|
|
110
|
+
mustNotEqual: 'Attribut "{name}" darf nicht {value} sein',
|
|
111
|
+
},
|
|
112
|
+
property: {
|
|
113
|
+
mustExist: 'Eigenschaft "{pset}.{property}" muss existieren',
|
|
114
|
+
mustEqual: 'Eigenschaft "{pset}.{property}" muss {value} sein',
|
|
115
|
+
mustMatch: 'Eigenschaft "{pset}.{property}" muss dem Muster {pattern} entsprechen',
|
|
116
|
+
mustBeBounded: 'Eigenschaft "{pset}.{property}" muss {bounds} sein',
|
|
117
|
+
mustHaveType: 'Eigenschaft "{pset}.{property}" muss vom Datentyp {dataType} sein',
|
|
118
|
+
mustNotExist: 'Eigenschaft "{pset}.{property}" darf nicht existieren',
|
|
119
|
+
},
|
|
120
|
+
classification: {
|
|
121
|
+
mustHave: 'Muss eine Klassifizierung haben',
|
|
122
|
+
mustBeInSystem: 'Muss in "{system}" klassifiziert sein',
|
|
123
|
+
mustHaveValue: 'Muss Klassifizierung "{value}" haben',
|
|
124
|
+
mustBeInSystemWithValue: 'Muss als "{value}" in "{system}" klassifiziert sein',
|
|
125
|
+
mustNotHave: 'Darf keine Klassifizierung haben',
|
|
126
|
+
mustNotBeInSystem: 'Darf nicht in "{system}" klassifiziert sein',
|
|
127
|
+
},
|
|
128
|
+
material: {
|
|
129
|
+
mustHave: 'Muss ein Material zugewiesen haben',
|
|
130
|
+
mustBe: 'Muss Material "{value}" haben',
|
|
131
|
+
mustMatch: 'Muss Material entsprechend {pattern} haben',
|
|
132
|
+
mustNotHave: 'Darf kein Material zugewiesen haben',
|
|
133
|
+
},
|
|
134
|
+
partOf: {
|
|
135
|
+
mustBe: 'Muss {relation} einem/einer {entity} sein',
|
|
136
|
+
mustBeSimple: 'Muss {relation} einem anderen Element sein',
|
|
137
|
+
mustNotBe: 'Darf nicht {relation} einem Element sein',
|
|
138
|
+
},
|
|
139
|
+
},
|
|
140
|
+
// ============================================================================
|
|
141
|
+
// Failure Reasons
|
|
142
|
+
// ============================================================================
|
|
143
|
+
failures: {
|
|
144
|
+
// Entity failures
|
|
145
|
+
entityTypeMismatch: 'Elementtyp ist "{actual}", erwartet {expected}',
|
|
146
|
+
predefinedTypeMismatch: 'Vordefinierter Typ ist "{actual}", erwartet {expected}',
|
|
147
|
+
predefinedTypeMissing: 'Vordefinierter Typ ist nicht gesetzt, erwartet {expected}',
|
|
148
|
+
// Attribute failures
|
|
149
|
+
attributeMissing: 'Attribut "{name}" existiert nicht',
|
|
150
|
+
attributeEmpty: 'Attribut "{name}" ist leer',
|
|
151
|
+
attributeValueMismatch: 'Attribut "{name}" ist "{actual}", erwartet {expected}',
|
|
152
|
+
attributePatternMismatch: 'Attribut "{name}" Wert "{actual}" entspricht nicht dem Muster {expected}',
|
|
153
|
+
attributeProhibited: 'Verbotenes Attribut "{name}" existiert mit Wert "{actual}"',
|
|
154
|
+
// Property failures
|
|
155
|
+
psetMissing: 'PropertySet "{pset}" nicht gefunden',
|
|
156
|
+
psetMissingAvailable: 'PropertySet "{pset}" nicht gefunden. Verfügbar: {available}',
|
|
157
|
+
propertyMissing: 'Eigenschaft "{property}" nicht in "{pset}" gefunden',
|
|
158
|
+
propertyMissingAvailable: 'Eigenschaft "{property}" nicht in "{pset}" gefunden. Verfügbar: {available}',
|
|
159
|
+
propertyEmpty: 'Eigenschaft "{pset}.{property}" hat keinen Wert',
|
|
160
|
+
propertyValueMismatch: 'Eigenschaft "{pset}.{property}" ist "{actual}", erwartet {expected}',
|
|
161
|
+
propertyPatternMismatch: 'Eigenschaft "{pset}.{property}" Wert "{actual}" entspricht nicht {expected}',
|
|
162
|
+
propertyDatatypeMismatch: 'Eigenschaft "{pset}.{property}" Datentyp ist "{actual}", erwartet {expected}',
|
|
163
|
+
propertyOutOfBounds: 'Eigenschaft "{pset}.{property}" Wert {actual} liegt außerhalb des Bereichs {expected}',
|
|
164
|
+
propertyProhibited: 'Verbotene Eigenschaft "{pset}.{property}" existiert mit Wert "{actual}"',
|
|
165
|
+
// Classification failures
|
|
166
|
+
classificationMissing: 'Keine Klassifizierung zugewiesen',
|
|
167
|
+
classificationSystemMismatch: 'Klassifizierungssystem "{actual}" entspricht nicht dem erwarteten "{expected}"',
|
|
168
|
+
classificationSystemMissingAvailable: 'Klassifizierungssystem "{expected}" nicht gefunden. Verfügbar: {available}',
|
|
169
|
+
classificationValueMismatch: 'Klassifizierungscode "{actual}" entspricht nicht dem erwarteten {expected}',
|
|
170
|
+
classificationValueMissingAvailable: 'Klassifizierungscode {expected} nicht gefunden. Verfügbar: {available}',
|
|
171
|
+
classificationProhibited: 'Verbotene Klassifizierung "{actual}" existiert im System "{system}"',
|
|
172
|
+
// Material failures
|
|
173
|
+
materialMissing: 'Kein Material zugewiesen',
|
|
174
|
+
materialValueMismatch: 'Material "{actual}" entspricht nicht dem erwarteten {expected}',
|
|
175
|
+
materialValueMissingAvailable: 'Material {expected} nicht gefunden. Verfügbar: {available}',
|
|
176
|
+
materialProhibited: 'Verbotenes Material "{actual}" ist zugewiesen',
|
|
177
|
+
// PartOf failures
|
|
178
|
+
partOfMissing: 'Element ist nicht {relation} einem/einer {entity}',
|
|
179
|
+
partOfMissingSimple: 'Element ist nicht {relation} einem anderen Element',
|
|
180
|
+
partOfEntityMismatch: 'Übergeordnetes Element ist {actual}, erwartet {expected}',
|
|
181
|
+
partOfPredefinedMismatch: 'Vordefinierter Typ des übergeordneten Elements ist "{actual}", erwartet {expected}',
|
|
182
|
+
partOfProhibited: 'Element ist {relation} {actual}, was verboten ist',
|
|
183
|
+
// Generic
|
|
184
|
+
prohibited: 'Verbotenes {field} gefunden: "{actual}"',
|
|
185
|
+
unknown: 'Validierung fehlgeschlagen: {reason}',
|
|
186
|
+
},
|
|
187
|
+
// ============================================================================
|
|
188
|
+
// Summary
|
|
189
|
+
// ============================================================================
|
|
190
|
+
summary: {
|
|
191
|
+
title: 'IDS-Validierungsbericht',
|
|
192
|
+
specifications: '{passed}/{total} Spezifikationen bestanden',
|
|
193
|
+
entities: '{passed}/{total} Elemente konform ({percent}%)',
|
|
194
|
+
overallPass: 'Modell erfüllt alle Anforderungen',
|
|
195
|
+
overallFail: 'Modell hat {count} fehlgeschlagene Spezifikationen',
|
|
196
|
+
noApplicable: 'Keine anwendbaren Elemente gefunden',
|
|
197
|
+
},
|
|
198
|
+
// ============================================================================
|
|
199
|
+
// UI Labels
|
|
200
|
+
// ============================================================================
|
|
201
|
+
ui: {
|
|
202
|
+
specification: 'Spezifikation',
|
|
203
|
+
specifications: 'Spezifikationen',
|
|
204
|
+
requirement: 'Anforderung',
|
|
205
|
+
requirements: 'Anforderungen',
|
|
206
|
+
applicability: 'Gilt für',
|
|
207
|
+
entity: 'Element',
|
|
208
|
+
entities: 'Elemente',
|
|
209
|
+
passed: 'Bestanden',
|
|
210
|
+
failed: 'Fehlgeschlagen',
|
|
211
|
+
passRate: 'Erfolgsquote',
|
|
212
|
+
actualValue: 'Tatsächlich',
|
|
213
|
+
expectedValue: 'Erwartet',
|
|
214
|
+
failureReason: 'Grund',
|
|
215
|
+
showAll: 'Alle anzeigen',
|
|
216
|
+
showFailed: 'Nur fehlgeschlagene',
|
|
217
|
+
isolateFailed: 'Fehlgeschlagene isolieren',
|
|
218
|
+
isolatePassed: 'Bestandene isolieren',
|
|
219
|
+
exportJson: 'JSON exportieren',
|
|
220
|
+
exportBcf: 'BCF exportieren',
|
|
221
|
+
loadIds: 'IDS-Datei laden',
|
|
222
|
+
runValidation: 'Validierung starten',
|
|
223
|
+
clearResults: 'Ergebnisse löschen',
|
|
224
|
+
},
|
|
225
|
+
};
|
|
226
|
+
//# sourceMappingURL=de.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"de.js","sourceRoot":"","sources":["../../../src/translation/locales/de.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* English translations for IDS validation
|
|
3
|
+
*/
|
|
4
|
+
export declare const en: {
|
|
5
|
+
status: {
|
|
6
|
+
pass: string;
|
|
7
|
+
fail: string;
|
|
8
|
+
not_applicable: string;
|
|
9
|
+
};
|
|
10
|
+
optionality: {
|
|
11
|
+
required: string;
|
|
12
|
+
optional: string;
|
|
13
|
+
prohibited: string;
|
|
14
|
+
};
|
|
15
|
+
cardinality: {
|
|
16
|
+
satisfied: string;
|
|
17
|
+
atLeast: string;
|
|
18
|
+
atMost: string;
|
|
19
|
+
between: string;
|
|
20
|
+
exactly: string;
|
|
21
|
+
};
|
|
22
|
+
relations: {
|
|
23
|
+
IfcRelAggregates: string;
|
|
24
|
+
IfcRelContainedInSpatialStructure: string;
|
|
25
|
+
IfcRelNests: string;
|
|
26
|
+
IfcRelVoidsElement: string;
|
|
27
|
+
IfcRelFillsElement: string;
|
|
28
|
+
};
|
|
29
|
+
constraints: {
|
|
30
|
+
simpleValue: string;
|
|
31
|
+
pattern: string;
|
|
32
|
+
enumeration: {
|
|
33
|
+
single: string;
|
|
34
|
+
multiple: string;
|
|
35
|
+
};
|
|
36
|
+
bounds: {
|
|
37
|
+
between: string;
|
|
38
|
+
atLeast: string;
|
|
39
|
+
atMost: string;
|
|
40
|
+
greaterThan: string;
|
|
41
|
+
lessThan: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
applicability: {
|
|
45
|
+
entity: {
|
|
46
|
+
simple: string;
|
|
47
|
+
withPredefined: string;
|
|
48
|
+
pattern: string;
|
|
49
|
+
};
|
|
50
|
+
attribute: {
|
|
51
|
+
exists: string;
|
|
52
|
+
equals: string;
|
|
53
|
+
pattern: string;
|
|
54
|
+
};
|
|
55
|
+
property: {
|
|
56
|
+
exists: string;
|
|
57
|
+
equals: string;
|
|
58
|
+
pattern: string;
|
|
59
|
+
bounded: string;
|
|
60
|
+
};
|
|
61
|
+
classification: {
|
|
62
|
+
any: string;
|
|
63
|
+
system: string;
|
|
64
|
+
value: string;
|
|
65
|
+
systemAndValue: string;
|
|
66
|
+
};
|
|
67
|
+
material: {
|
|
68
|
+
any: string;
|
|
69
|
+
value: string;
|
|
70
|
+
pattern: string;
|
|
71
|
+
};
|
|
72
|
+
partOf: {
|
|
73
|
+
simple: string;
|
|
74
|
+
withEntity: string;
|
|
75
|
+
withEntityAndType: string;
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
requirements: {
|
|
79
|
+
entity: {
|
|
80
|
+
mustBe: string;
|
|
81
|
+
mustHavePredefined: string;
|
|
82
|
+
mustBeWithPredefined: string;
|
|
83
|
+
};
|
|
84
|
+
attribute: {
|
|
85
|
+
mustExist: string;
|
|
86
|
+
mustEqual: string;
|
|
87
|
+
mustMatch: string;
|
|
88
|
+
mustNotExist: string;
|
|
89
|
+
mustNotEqual: string;
|
|
90
|
+
};
|
|
91
|
+
property: {
|
|
92
|
+
mustExist: string;
|
|
93
|
+
mustEqual: string;
|
|
94
|
+
mustMatch: string;
|
|
95
|
+
mustBeBounded: string;
|
|
96
|
+
mustHaveType: string;
|
|
97
|
+
mustNotExist: string;
|
|
98
|
+
};
|
|
99
|
+
classification: {
|
|
100
|
+
mustHave: string;
|
|
101
|
+
mustBeInSystem: string;
|
|
102
|
+
mustHaveValue: string;
|
|
103
|
+
mustBeInSystemWithValue: string;
|
|
104
|
+
mustNotHave: string;
|
|
105
|
+
mustNotBeInSystem: string;
|
|
106
|
+
};
|
|
107
|
+
material: {
|
|
108
|
+
mustHave: string;
|
|
109
|
+
mustBe: string;
|
|
110
|
+
mustMatch: string;
|
|
111
|
+
mustNotHave: string;
|
|
112
|
+
};
|
|
113
|
+
partOf: {
|
|
114
|
+
mustBe: string;
|
|
115
|
+
mustBeSimple: string;
|
|
116
|
+
mustNotBe: string;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
failures: {
|
|
120
|
+
entityTypeMismatch: string;
|
|
121
|
+
predefinedTypeMismatch: string;
|
|
122
|
+
predefinedTypeMissing: string;
|
|
123
|
+
attributeMissing: string;
|
|
124
|
+
attributeEmpty: string;
|
|
125
|
+
attributeValueMismatch: string;
|
|
126
|
+
attributePatternMismatch: string;
|
|
127
|
+
attributeProhibited: string;
|
|
128
|
+
psetMissing: string;
|
|
129
|
+
psetMissingAvailable: string;
|
|
130
|
+
propertyMissing: string;
|
|
131
|
+
propertyMissingAvailable: string;
|
|
132
|
+
propertyEmpty: string;
|
|
133
|
+
propertyValueMismatch: string;
|
|
134
|
+
propertyPatternMismatch: string;
|
|
135
|
+
propertyDatatypeMismatch: string;
|
|
136
|
+
propertyOutOfBounds: string;
|
|
137
|
+
propertyProhibited: string;
|
|
138
|
+
classificationMissing: string;
|
|
139
|
+
classificationSystemMismatch: string;
|
|
140
|
+
classificationSystemMissingAvailable: string;
|
|
141
|
+
classificationValueMismatch: string;
|
|
142
|
+
classificationValueMissingAvailable: string;
|
|
143
|
+
classificationProhibited: string;
|
|
144
|
+
materialMissing: string;
|
|
145
|
+
materialValueMismatch: string;
|
|
146
|
+
materialValueMissingAvailable: string;
|
|
147
|
+
materialProhibited: string;
|
|
148
|
+
partOfMissing: string;
|
|
149
|
+
partOfMissingSimple: string;
|
|
150
|
+
partOfEntityMismatch: string;
|
|
151
|
+
partOfPredefinedMismatch: string;
|
|
152
|
+
partOfProhibited: string;
|
|
153
|
+
prohibited: string;
|
|
154
|
+
unknown: string;
|
|
155
|
+
};
|
|
156
|
+
summary: {
|
|
157
|
+
title: string;
|
|
158
|
+
specifications: string;
|
|
159
|
+
entities: string;
|
|
160
|
+
overallPass: string;
|
|
161
|
+
overallFail: string;
|
|
162
|
+
noApplicable: string;
|
|
163
|
+
};
|
|
164
|
+
ui: {
|
|
165
|
+
specification: string;
|
|
166
|
+
specifications: string;
|
|
167
|
+
requirement: string;
|
|
168
|
+
requirements: string;
|
|
169
|
+
applicability: string;
|
|
170
|
+
entity: string;
|
|
171
|
+
entities: string;
|
|
172
|
+
passed: string;
|
|
173
|
+
failed: string;
|
|
174
|
+
passRate: string;
|
|
175
|
+
actualValue: string;
|
|
176
|
+
expectedValue: string;
|
|
177
|
+
failureReason: string;
|
|
178
|
+
showAll: string;
|
|
179
|
+
showFailed: string;
|
|
180
|
+
isolateFailed: string;
|
|
181
|
+
isolatePassed: string;
|
|
182
|
+
exportJson: string;
|
|
183
|
+
exportBcf: string;
|
|
184
|
+
loadIds: string;
|
|
185
|
+
runValidation: string;
|
|
186
|
+
clearResults: string;
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
export type TranslationKey = keyof typeof en;
|
|
190
|
+
//# sourceMappingURL=en.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"en.d.ts","sourceRoot":"","sources":["../../../src/translation/locales/en.ts"],"names":[],"mappings":"AAIA;;GAEG;AAEH,eAAO,MAAM,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyOd,CAAC;AAEF,MAAM,MAAM,cAAc,GAAG,MAAM,OAAO,EAAE,CAAC"}
|