dev-dict 0.6.4 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/dev-dict.min.js +1 -1
- package/dist/dev-dict.min.js.map +1 -1
- package/dist/index.d.ts +706 -24
- package/dist/index.js +866 -482
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -128,6 +128,22 @@ declare const TAG: {
|
|
|
128
128
|
readonly "de-DE": "Backend";
|
|
129
129
|
};
|
|
130
130
|
};
|
|
131
|
+
readonly cryptography: {
|
|
132
|
+
readonly id: "cryptography";
|
|
133
|
+
readonly name: {
|
|
134
|
+
readonly "en-US": "Cryptography";
|
|
135
|
+
readonly "en-GB": "en-US";
|
|
136
|
+
readonly "de-DE": "Kryptografie";
|
|
137
|
+
};
|
|
138
|
+
};
|
|
139
|
+
readonly e2e: {
|
|
140
|
+
readonly id: "e2e";
|
|
141
|
+
readonly name: {
|
|
142
|
+
readonly "en-US": "E2E";
|
|
143
|
+
readonly "en-GB": "en-US";
|
|
144
|
+
readonly "de-DE": "en-US";
|
|
145
|
+
};
|
|
146
|
+
};
|
|
131
147
|
readonly frontend: {
|
|
132
148
|
readonly id: "frontend";
|
|
133
149
|
readonly name: {
|
|
@@ -160,6 +176,14 @@ declare const TAG: {
|
|
|
160
176
|
readonly "de-DE": "QA";
|
|
161
177
|
};
|
|
162
178
|
};
|
|
179
|
+
readonly security: {
|
|
180
|
+
readonly id: "security";
|
|
181
|
+
readonly name: {
|
|
182
|
+
readonly "en-US": "Security";
|
|
183
|
+
readonly "en-GB": "en-US";
|
|
184
|
+
readonly "de-DE": "Sicherheit";
|
|
185
|
+
};
|
|
186
|
+
};
|
|
163
187
|
readonly testing: {
|
|
164
188
|
readonly id: "testing";
|
|
165
189
|
readonly name: {
|
|
@@ -187,15 +211,47 @@ declare const TERM: {
|
|
|
187
211
|
readonly id: "aes";
|
|
188
212
|
readonly name: {
|
|
189
213
|
readonly "en-US": "AES";
|
|
214
|
+
readonly "en-GB": "en-US";
|
|
215
|
+
readonly "de-DE": "en-US";
|
|
216
|
+
};
|
|
217
|
+
readonly altName: {
|
|
218
|
+
readonly "en-US": "Advanced Encryption Standard";
|
|
219
|
+
readonly "en-GB": "en-US";
|
|
220
|
+
readonly "de-DE": "en-US";
|
|
190
221
|
};
|
|
191
222
|
readonly label: {
|
|
192
|
-
readonly "en-US": "";
|
|
223
|
+
readonly "en-US": "Encryption Standard";
|
|
224
|
+
readonly "en-GB": "en-US";
|
|
225
|
+
readonly "de-DE": "Verschlüsselungsstandard";
|
|
193
226
|
};
|
|
194
227
|
readonly definition: {
|
|
195
|
-
readonly "en-US": "";
|
|
228
|
+
readonly "en-US": "Advanced Encryption Standard (AES) is a symmetric encryption algorithm established as a standard by the US National Institute of Standards and Technology (NIST) in 2001. It uses block cipher with key sizes of 128, 192, or 256 bits and is widely adopted for securing sensitive data in software applications, communications, and storage systems.";
|
|
229
|
+
readonly "en-GB": "en-US";
|
|
230
|
+
readonly "de-DE": "Advanced Encryption Standard (AES) ist ein symmetrischer Verschlüsselungsalgorithmus, der im Jahr 2001 vom US-amerikanischen National Institute of Standards and Technology (NIST) als Standard festgelegt wurde. Er verwendet eine Blockchiffre mit Schlüssellängen von 128, 192 oder 256 Bit und wird weltweit zur Absicherung sensibler Daten in Softwareanwendungen, Kommunikationssystemen und Speichersystemen eingesetzt.";
|
|
196
231
|
};
|
|
197
|
-
readonly type: [
|
|
198
|
-
|
|
232
|
+
readonly type: [{
|
|
233
|
+
readonly id: "standard";
|
|
234
|
+
readonly name: {
|
|
235
|
+
readonly "en-US": "Standard";
|
|
236
|
+
readonly "en-GB": "en-US";
|
|
237
|
+
readonly "de-DE": "Standard";
|
|
238
|
+
};
|
|
239
|
+
}];
|
|
240
|
+
readonly tags: [{
|
|
241
|
+
readonly id: "security";
|
|
242
|
+
readonly name: {
|
|
243
|
+
readonly "en-US": "Security";
|
|
244
|
+
readonly "en-GB": "en-US";
|
|
245
|
+
readonly "de-DE": "Sicherheit";
|
|
246
|
+
};
|
|
247
|
+
}, {
|
|
248
|
+
readonly id: "cryptography";
|
|
249
|
+
readonly name: {
|
|
250
|
+
readonly "en-US": "Cryptography";
|
|
251
|
+
readonly "en-GB": "en-US";
|
|
252
|
+
readonly "de-DE": "Kryptografie";
|
|
253
|
+
};
|
|
254
|
+
}];
|
|
199
255
|
};
|
|
200
256
|
readonly agile: {
|
|
201
257
|
readonly id: "agile";
|
|
@@ -215,6 +271,13 @@ declare const TERM: {
|
|
|
215
271
|
readonly id: "ai";
|
|
216
272
|
readonly name: {
|
|
217
273
|
readonly "en-US": "AI";
|
|
274
|
+
readonly "en-GB": "en-US";
|
|
275
|
+
readonly "de-DE": "KI";
|
|
276
|
+
};
|
|
277
|
+
readonly altName: {
|
|
278
|
+
readonly "en-US": "Artificial Intelligence";
|
|
279
|
+
readonly "en-GB": "en-US";
|
|
280
|
+
readonly "de-DE": "Künstliche Intelligenz";
|
|
218
281
|
};
|
|
219
282
|
readonly label: {
|
|
220
283
|
readonly "en-US": "";
|
|
@@ -267,6 +330,27 @@ declare const TERM: {
|
|
|
267
330
|
readonly type: [];
|
|
268
331
|
readonly tags: [];
|
|
269
332
|
};
|
|
333
|
+
readonly assembly: {
|
|
334
|
+
readonly id: "assembly";
|
|
335
|
+
readonly name: {
|
|
336
|
+
readonly "en-US": "Assembly";
|
|
337
|
+
};
|
|
338
|
+
readonly label: {
|
|
339
|
+
readonly "en-US": "";
|
|
340
|
+
};
|
|
341
|
+
readonly definition: {
|
|
342
|
+
readonly "en-US": "";
|
|
343
|
+
};
|
|
344
|
+
readonly type: [{
|
|
345
|
+
readonly id: "language";
|
|
346
|
+
readonly name: {
|
|
347
|
+
readonly "en-US": "Language";
|
|
348
|
+
readonly "en-GB": "en-US";
|
|
349
|
+
readonly "de-DE": "Sprache";
|
|
350
|
+
};
|
|
351
|
+
}];
|
|
352
|
+
readonly tags: [];
|
|
353
|
+
};
|
|
270
354
|
readonly angularjs: {
|
|
271
355
|
readonly id: "angularjs";
|
|
272
356
|
readonly name: {
|
|
@@ -384,7 +468,14 @@ declare const TERM: {
|
|
|
384
468
|
readonly definition: {
|
|
385
469
|
readonly "en-US": "";
|
|
386
470
|
};
|
|
387
|
-
readonly type: [
|
|
471
|
+
readonly type: [{
|
|
472
|
+
readonly id: "language";
|
|
473
|
+
readonly name: {
|
|
474
|
+
readonly "en-US": "Language";
|
|
475
|
+
readonly "en-GB": "en-US";
|
|
476
|
+
readonly "de-DE": "Sprache";
|
|
477
|
+
};
|
|
478
|
+
}];
|
|
388
479
|
readonly tags: [];
|
|
389
480
|
};
|
|
390
481
|
readonly bdd: {
|
|
@@ -552,7 +643,14 @@ declare const TERM: {
|
|
|
552
643
|
readonly definition: {
|
|
553
644
|
readonly "en-US": "";
|
|
554
645
|
};
|
|
555
|
-
readonly type: [
|
|
646
|
+
readonly type: [{
|
|
647
|
+
readonly id: "language";
|
|
648
|
+
readonly name: {
|
|
649
|
+
readonly "en-US": "Language";
|
|
650
|
+
readonly "en-GB": "en-US";
|
|
651
|
+
readonly "de-DE": "Sprache";
|
|
652
|
+
};
|
|
653
|
+
}];
|
|
556
654
|
readonly tags: [];
|
|
557
655
|
};
|
|
558
656
|
readonly cakephp: {
|
|
@@ -639,6 +737,27 @@ declare const TERM: {
|
|
|
639
737
|
readonly type: [];
|
|
640
738
|
readonly tags: [];
|
|
641
739
|
};
|
|
740
|
+
readonly clojure: {
|
|
741
|
+
readonly id: "clojure";
|
|
742
|
+
readonly name: {
|
|
743
|
+
readonly "en-US": "Clojure";
|
|
744
|
+
};
|
|
745
|
+
readonly label: {
|
|
746
|
+
readonly "en-US": "";
|
|
747
|
+
};
|
|
748
|
+
readonly definition: {
|
|
749
|
+
readonly "en-US": "";
|
|
750
|
+
};
|
|
751
|
+
readonly type: [{
|
|
752
|
+
readonly id: "language";
|
|
753
|
+
readonly name: {
|
|
754
|
+
readonly "en-US": "Language";
|
|
755
|
+
readonly "en-GB": "en-US";
|
|
756
|
+
readonly "de-DE": "Sprache";
|
|
757
|
+
};
|
|
758
|
+
}];
|
|
759
|
+
readonly tags: [];
|
|
760
|
+
};
|
|
642
761
|
readonly cloudflare: {
|
|
643
762
|
readonly id: "cloudflare";
|
|
644
763
|
readonly name: {
|
|
@@ -699,6 +818,8 @@ declare const TERM: {
|
|
|
699
818
|
readonly id: "contentful";
|
|
700
819
|
readonly name: {
|
|
701
820
|
readonly "en-US": "Contentful";
|
|
821
|
+
readonly "en-GB": "en-US";
|
|
822
|
+
readonly "de-DE": "en-US";
|
|
702
823
|
};
|
|
703
824
|
readonly label: {
|
|
704
825
|
readonly "en-US": "";
|
|
@@ -706,7 +827,14 @@ declare const TERM: {
|
|
|
706
827
|
readonly definition: {
|
|
707
828
|
readonly "en-US": "";
|
|
708
829
|
};
|
|
709
|
-
readonly type: [
|
|
830
|
+
readonly type: [{
|
|
831
|
+
readonly id: "cms";
|
|
832
|
+
readonly name: {
|
|
833
|
+
readonly "en-US": "Content Management System";
|
|
834
|
+
readonly "en-GB": "en-US";
|
|
835
|
+
readonly "de-DE": "Content-Management-System";
|
|
836
|
+
};
|
|
837
|
+
}];
|
|
710
838
|
readonly tags: [];
|
|
711
839
|
};
|
|
712
840
|
readonly cplusplus: {
|
|
@@ -720,13 +848,22 @@ declare const TERM: {
|
|
|
720
848
|
readonly definition: {
|
|
721
849
|
readonly "en-US": "";
|
|
722
850
|
};
|
|
723
|
-
readonly type: [
|
|
851
|
+
readonly type: [{
|
|
852
|
+
readonly id: "language";
|
|
853
|
+
readonly name: {
|
|
854
|
+
readonly "en-US": "Language";
|
|
855
|
+
readonly "en-GB": "en-US";
|
|
856
|
+
readonly "de-DE": "Sprache";
|
|
857
|
+
};
|
|
858
|
+
}];
|
|
724
859
|
readonly tags: [];
|
|
725
860
|
};
|
|
726
861
|
readonly craft_cms: {
|
|
727
862
|
readonly id: "craft_cms";
|
|
728
863
|
readonly name: {
|
|
729
864
|
readonly "en-US": "Craft CMS";
|
|
865
|
+
readonly "en-GB": "en-US";
|
|
866
|
+
readonly "de-DE": "en-US";
|
|
730
867
|
};
|
|
731
868
|
readonly label: {
|
|
732
869
|
readonly "en-US": "";
|
|
@@ -734,7 +871,14 @@ declare const TERM: {
|
|
|
734
871
|
readonly definition: {
|
|
735
872
|
readonly "en-US": "";
|
|
736
873
|
};
|
|
737
|
-
readonly type: [
|
|
874
|
+
readonly type: [{
|
|
875
|
+
readonly id: "cms";
|
|
876
|
+
readonly name: {
|
|
877
|
+
readonly "en-US": "Content Management System";
|
|
878
|
+
readonly "en-GB": "en-US";
|
|
879
|
+
readonly "de-DE": "Content-Management-System";
|
|
880
|
+
};
|
|
881
|
+
}];
|
|
738
882
|
readonly tags: [];
|
|
739
883
|
};
|
|
740
884
|
readonly cs_cart: {
|
|
@@ -762,7 +906,14 @@ declare const TERM: {
|
|
|
762
906
|
readonly definition: {
|
|
763
907
|
readonly "en-US": "";
|
|
764
908
|
};
|
|
765
|
-
readonly type: [
|
|
909
|
+
readonly type: [{
|
|
910
|
+
readonly id: "language";
|
|
911
|
+
readonly name: {
|
|
912
|
+
readonly "en-US": "Language";
|
|
913
|
+
readonly "en-GB": "en-US";
|
|
914
|
+
readonly "de-DE": "Sprache";
|
|
915
|
+
};
|
|
916
|
+
}];
|
|
766
917
|
readonly tags: [];
|
|
767
918
|
};
|
|
768
919
|
readonly css_in_js: {
|
|
@@ -835,6 +986,27 @@ declare const TERM: {
|
|
|
835
986
|
readonly type: [];
|
|
836
987
|
readonly tags: [];
|
|
837
988
|
};
|
|
989
|
+
readonly dart: {
|
|
990
|
+
readonly id: "dart";
|
|
991
|
+
readonly name: {
|
|
992
|
+
readonly "en-US": "Dart";
|
|
993
|
+
};
|
|
994
|
+
readonly label: {
|
|
995
|
+
readonly "en-US": "";
|
|
996
|
+
};
|
|
997
|
+
readonly definition: {
|
|
998
|
+
readonly "en-US": "";
|
|
999
|
+
};
|
|
1000
|
+
readonly type: [{
|
|
1001
|
+
readonly id: "language";
|
|
1002
|
+
readonly name: {
|
|
1003
|
+
readonly "en-US": "Language";
|
|
1004
|
+
readonly "en-GB": "en-US";
|
|
1005
|
+
readonly "de-DE": "Sprache";
|
|
1006
|
+
};
|
|
1007
|
+
}];
|
|
1008
|
+
readonly tags: [];
|
|
1009
|
+
};
|
|
838
1010
|
readonly ddd: {
|
|
839
1011
|
readonly id: "ddd";
|
|
840
1012
|
readonly name: {
|
|
@@ -937,12 +1109,23 @@ declare const TERM: {
|
|
|
937
1109
|
readonly id: "e2e";
|
|
938
1110
|
readonly name: {
|
|
939
1111
|
readonly "en-US": "End-to-end Testing";
|
|
1112
|
+
readonly "en-GB": "en-US";
|
|
1113
|
+
readonly "de-DE": "Ende-zu-Ende-Tests";
|
|
1114
|
+
};
|
|
1115
|
+
readonly altName: {
|
|
1116
|
+
readonly "en-US": "E2E Testing";
|
|
1117
|
+
readonly "en-GB": "en-US";
|
|
1118
|
+
readonly "de-DE": "E2E-Tests";
|
|
940
1119
|
};
|
|
941
1120
|
readonly label: {
|
|
942
1121
|
readonly "en-US": "Testing Methodology";
|
|
1122
|
+
readonly "en-GB": "en-US";
|
|
1123
|
+
readonly "de-DE": "Testmethodik";
|
|
943
1124
|
};
|
|
944
1125
|
readonly definition: {
|
|
945
1126
|
readonly "en-US": "A software testing methodology that validates the entire application flow from start to finish, simulating real user scenarios to ensure all integrated components work together correctly.";
|
|
1127
|
+
readonly "en-GB": "en-US";
|
|
1128
|
+
readonly "de-DE": "Eine Software-Testmethodik, die den gesamten Anwendungsablauf von Anfang bis Ende validiert und reale Benutzerszenarien simuliert, um sicherzustellen, dass alle integrierten Komponenten korrekt zusammenarbeiten.";
|
|
946
1129
|
};
|
|
947
1130
|
readonly type: [{
|
|
948
1131
|
readonly id: "concept";
|
|
@@ -980,6 +1163,13 @@ declare const TERM: {
|
|
|
980
1163
|
readonly "en-GB": "en-US";
|
|
981
1164
|
readonly "de-DE": "QA";
|
|
982
1165
|
};
|
|
1166
|
+
}, {
|
|
1167
|
+
readonly id: "e2e";
|
|
1168
|
+
readonly name: {
|
|
1169
|
+
readonly "en-US": "E2E";
|
|
1170
|
+
readonly "en-GB": "en-US";
|
|
1171
|
+
readonly "de-DE": "en-US";
|
|
1172
|
+
};
|
|
983
1173
|
}];
|
|
984
1174
|
};
|
|
985
1175
|
readonly encryption: {
|
|
@@ -996,6 +1186,27 @@ declare const TERM: {
|
|
|
996
1186
|
readonly type: [];
|
|
997
1187
|
readonly tags: [];
|
|
998
1188
|
};
|
|
1189
|
+
readonly erlang: {
|
|
1190
|
+
readonly id: "erlang";
|
|
1191
|
+
readonly name: {
|
|
1192
|
+
readonly "en-US": "Erlang";
|
|
1193
|
+
};
|
|
1194
|
+
readonly label: {
|
|
1195
|
+
readonly "en-US": "";
|
|
1196
|
+
};
|
|
1197
|
+
readonly definition: {
|
|
1198
|
+
readonly "en-US": "";
|
|
1199
|
+
};
|
|
1200
|
+
readonly type: [{
|
|
1201
|
+
readonly id: "language";
|
|
1202
|
+
readonly name: {
|
|
1203
|
+
readonly "en-US": "Language";
|
|
1204
|
+
readonly "en-GB": "en-US";
|
|
1205
|
+
readonly "de-DE": "Sprache";
|
|
1206
|
+
};
|
|
1207
|
+
}];
|
|
1208
|
+
readonly tags: [];
|
|
1209
|
+
};
|
|
999
1210
|
readonly es_build: {
|
|
1000
1211
|
readonly id: "es_build";
|
|
1001
1212
|
readonly name: {
|
|
@@ -1055,7 +1266,9 @@ declare const TERM: {
|
|
|
1055
1266
|
readonly expression_engine: {
|
|
1056
1267
|
readonly id: "expression_engine";
|
|
1057
1268
|
readonly name: {
|
|
1058
|
-
readonly "en-US": "ExpressionEngine
|
|
1269
|
+
readonly "en-US": "ExpressionEngine";
|
|
1270
|
+
readonly "en-GB": "en-US";
|
|
1271
|
+
readonly "de-DE": "en-US";
|
|
1059
1272
|
};
|
|
1060
1273
|
readonly label: {
|
|
1061
1274
|
readonly "en-US": "";
|
|
@@ -1063,7 +1276,14 @@ declare const TERM: {
|
|
|
1063
1276
|
readonly definition: {
|
|
1064
1277
|
readonly "en-US": "";
|
|
1065
1278
|
};
|
|
1066
|
-
readonly type: [
|
|
1279
|
+
readonly type: [{
|
|
1280
|
+
readonly id: "cms";
|
|
1281
|
+
readonly name: {
|
|
1282
|
+
readonly "en-US": "Content Management System";
|
|
1283
|
+
readonly "en-GB": "en-US";
|
|
1284
|
+
readonly "de-DE": "Content-Management-System";
|
|
1285
|
+
};
|
|
1286
|
+
}];
|
|
1067
1287
|
readonly tags: [];
|
|
1068
1288
|
};
|
|
1069
1289
|
readonly fhir: {
|
|
@@ -1125,7 +1345,9 @@ declare const TERM: {
|
|
|
1125
1345
|
readonly flamelink: {
|
|
1126
1346
|
readonly id: "flamelink";
|
|
1127
1347
|
readonly name: {
|
|
1128
|
-
readonly "en-US": "Flamelink
|
|
1348
|
+
readonly "en-US": "Flamelink";
|
|
1349
|
+
readonly "en-GB": "en-US";
|
|
1350
|
+
readonly "de-DE": "en-US";
|
|
1129
1351
|
};
|
|
1130
1352
|
readonly label: {
|
|
1131
1353
|
readonly "en-US": "";
|
|
@@ -1133,7 +1355,14 @@ declare const TERM: {
|
|
|
1133
1355
|
readonly definition: {
|
|
1134
1356
|
readonly "en-US": "";
|
|
1135
1357
|
};
|
|
1136
|
-
readonly type: [
|
|
1358
|
+
readonly type: [{
|
|
1359
|
+
readonly id: "cms";
|
|
1360
|
+
readonly name: {
|
|
1361
|
+
readonly "en-US": "Content Management System";
|
|
1362
|
+
readonly "en-GB": "en-US";
|
|
1363
|
+
readonly "de-DE": "Content-Management-System";
|
|
1364
|
+
};
|
|
1365
|
+
}];
|
|
1137
1366
|
readonly tags: [];
|
|
1138
1367
|
};
|
|
1139
1368
|
readonly flutter: {
|
|
@@ -1150,6 +1379,27 @@ declare const TERM: {
|
|
|
1150
1379
|
readonly type: [];
|
|
1151
1380
|
readonly tags: [];
|
|
1152
1381
|
};
|
|
1382
|
+
readonly fortran: {
|
|
1383
|
+
readonly id: "fortran";
|
|
1384
|
+
readonly name: {
|
|
1385
|
+
readonly "en-US": "Fortran";
|
|
1386
|
+
};
|
|
1387
|
+
readonly label: {
|
|
1388
|
+
readonly "en-US": "";
|
|
1389
|
+
};
|
|
1390
|
+
readonly definition: {
|
|
1391
|
+
readonly "en-US": "";
|
|
1392
|
+
};
|
|
1393
|
+
readonly type: [{
|
|
1394
|
+
readonly id: "language";
|
|
1395
|
+
readonly name: {
|
|
1396
|
+
readonly "en-US": "Language";
|
|
1397
|
+
readonly "en-GB": "en-US";
|
|
1398
|
+
readonly "de-DE": "Sprache";
|
|
1399
|
+
};
|
|
1400
|
+
}];
|
|
1401
|
+
readonly tags: [];
|
|
1402
|
+
};
|
|
1153
1403
|
readonly foundation: {
|
|
1154
1404
|
readonly id: "foundation";
|
|
1155
1405
|
readonly name: {
|
|
@@ -1164,6 +1414,27 @@ declare const TERM: {
|
|
|
1164
1414
|
readonly type: [];
|
|
1165
1415
|
readonly tags: [];
|
|
1166
1416
|
};
|
|
1417
|
+
readonly f_sharp: {
|
|
1418
|
+
readonly id: "f_sharp";
|
|
1419
|
+
readonly name: {
|
|
1420
|
+
readonly "en-US": "F#";
|
|
1421
|
+
};
|
|
1422
|
+
readonly label: {
|
|
1423
|
+
readonly "en-US": "";
|
|
1424
|
+
};
|
|
1425
|
+
readonly definition: {
|
|
1426
|
+
readonly "en-US": "";
|
|
1427
|
+
};
|
|
1428
|
+
readonly type: [{
|
|
1429
|
+
readonly id: "language";
|
|
1430
|
+
readonly name: {
|
|
1431
|
+
readonly "en-US": "Language";
|
|
1432
|
+
readonly "en-GB": "en-US";
|
|
1433
|
+
readonly "de-DE": "Sprache";
|
|
1434
|
+
};
|
|
1435
|
+
}];
|
|
1436
|
+
readonly tags: [];
|
|
1437
|
+
};
|
|
1167
1438
|
readonly ftp: {
|
|
1168
1439
|
readonly id: "ftp";
|
|
1169
1440
|
readonly name: {
|
|
@@ -1287,7 +1558,14 @@ declare const TERM: {
|
|
|
1287
1558
|
readonly definition: {
|
|
1288
1559
|
readonly "en-US": "";
|
|
1289
1560
|
};
|
|
1290
|
-
readonly type: [
|
|
1561
|
+
readonly type: [{
|
|
1562
|
+
readonly id: "language";
|
|
1563
|
+
readonly name: {
|
|
1564
|
+
readonly "en-US": "Language";
|
|
1565
|
+
readonly "en-GB": "en-US";
|
|
1566
|
+
readonly "de-DE": "Sprache";
|
|
1567
|
+
};
|
|
1568
|
+
}];
|
|
1291
1569
|
readonly tags: [];
|
|
1292
1570
|
};
|
|
1293
1571
|
readonly google_analytics: {
|
|
@@ -1360,6 +1638,27 @@ declare const TERM: {
|
|
|
1360
1638
|
readonly type: [];
|
|
1361
1639
|
readonly tags: [];
|
|
1362
1640
|
};
|
|
1641
|
+
readonly groovy: {
|
|
1642
|
+
readonly id: "groovy";
|
|
1643
|
+
readonly name: {
|
|
1644
|
+
readonly "en-US": "Groovy";
|
|
1645
|
+
};
|
|
1646
|
+
readonly label: {
|
|
1647
|
+
readonly "en-US": "";
|
|
1648
|
+
};
|
|
1649
|
+
readonly definition: {
|
|
1650
|
+
readonly "en-US": "";
|
|
1651
|
+
};
|
|
1652
|
+
readonly type: [{
|
|
1653
|
+
readonly id: "language";
|
|
1654
|
+
readonly name: {
|
|
1655
|
+
readonly "en-US": "Language";
|
|
1656
|
+
readonly "en-GB": "en-US";
|
|
1657
|
+
readonly "de-DE": "Sprache";
|
|
1658
|
+
};
|
|
1659
|
+
}];
|
|
1660
|
+
readonly tags: [];
|
|
1661
|
+
};
|
|
1363
1662
|
readonly grunt: {
|
|
1364
1663
|
readonly id: "grunt";
|
|
1365
1664
|
readonly name: {
|
|
@@ -1416,6 +1715,27 @@ declare const TERM: {
|
|
|
1416
1715
|
readonly type: [];
|
|
1417
1716
|
readonly tags: [];
|
|
1418
1717
|
};
|
|
1718
|
+
readonly haskell: {
|
|
1719
|
+
readonly id: "haskell";
|
|
1720
|
+
readonly name: {
|
|
1721
|
+
readonly "en-US": "Haskell";
|
|
1722
|
+
};
|
|
1723
|
+
readonly label: {
|
|
1724
|
+
readonly "en-US": "";
|
|
1725
|
+
};
|
|
1726
|
+
readonly definition: {
|
|
1727
|
+
readonly "en-US": "";
|
|
1728
|
+
};
|
|
1729
|
+
readonly type: [{
|
|
1730
|
+
readonly id: "language";
|
|
1731
|
+
readonly name: {
|
|
1732
|
+
readonly "en-US": "Language";
|
|
1733
|
+
readonly "en-GB": "en-US";
|
|
1734
|
+
readonly "de-DE": "Sprache";
|
|
1735
|
+
};
|
|
1736
|
+
}];
|
|
1737
|
+
readonly tags: [];
|
|
1738
|
+
};
|
|
1419
1739
|
readonly hetzner: {
|
|
1420
1740
|
readonly id: "hetzner";
|
|
1421
1741
|
readonly name: {
|
|
@@ -1455,7 +1775,14 @@ declare const TERM: {
|
|
|
1455
1775
|
readonly definition: {
|
|
1456
1776
|
readonly "en-US": "";
|
|
1457
1777
|
};
|
|
1458
|
-
readonly type: [
|
|
1778
|
+
readonly type: [{
|
|
1779
|
+
readonly id: "language";
|
|
1780
|
+
readonly name: {
|
|
1781
|
+
readonly "en-US": "Language";
|
|
1782
|
+
readonly "en-GB": "en-US";
|
|
1783
|
+
readonly "de-DE": "Sprache";
|
|
1784
|
+
};
|
|
1785
|
+
}];
|
|
1459
1786
|
readonly tags: [];
|
|
1460
1787
|
};
|
|
1461
1788
|
readonly htmx: {
|
|
@@ -1514,6 +1841,27 @@ declare const TERM: {
|
|
|
1514
1841
|
readonly type: [];
|
|
1515
1842
|
readonly tags: [];
|
|
1516
1843
|
};
|
|
1844
|
+
readonly java: {
|
|
1845
|
+
readonly id: "java";
|
|
1846
|
+
readonly name: {
|
|
1847
|
+
readonly "en-US": "Java";
|
|
1848
|
+
};
|
|
1849
|
+
readonly label: {
|
|
1850
|
+
readonly "en-US": "";
|
|
1851
|
+
};
|
|
1852
|
+
readonly definition: {
|
|
1853
|
+
readonly "en-US": "";
|
|
1854
|
+
};
|
|
1855
|
+
readonly type: [{
|
|
1856
|
+
readonly id: "language";
|
|
1857
|
+
readonly name: {
|
|
1858
|
+
readonly "en-US": "Language";
|
|
1859
|
+
readonly "en-GB": "en-US";
|
|
1860
|
+
readonly "de-DE": "Sprache";
|
|
1861
|
+
};
|
|
1862
|
+
}];
|
|
1863
|
+
readonly tags: [];
|
|
1864
|
+
};
|
|
1517
1865
|
readonly javascript: {
|
|
1518
1866
|
readonly id: "javascript";
|
|
1519
1867
|
readonly name: {
|
|
@@ -1659,6 +2007,27 @@ declare const TERM: {
|
|
|
1659
2007
|
readonly type: [];
|
|
1660
2008
|
readonly tags: [];
|
|
1661
2009
|
};
|
|
2010
|
+
readonly kotlin: {
|
|
2011
|
+
readonly id: "kotlin";
|
|
2012
|
+
readonly name: {
|
|
2013
|
+
readonly "en-US": "Kotlin";
|
|
2014
|
+
};
|
|
2015
|
+
readonly label: {
|
|
2016
|
+
readonly "en-US": "";
|
|
2017
|
+
};
|
|
2018
|
+
readonly definition: {
|
|
2019
|
+
readonly "en-US": "";
|
|
2020
|
+
};
|
|
2021
|
+
readonly type: [{
|
|
2022
|
+
readonly id: "language";
|
|
2023
|
+
readonly name: {
|
|
2024
|
+
readonly "en-US": "Language";
|
|
2025
|
+
readonly "en-GB": "en-US";
|
|
2026
|
+
readonly "de-DE": "Sprache";
|
|
2027
|
+
};
|
|
2028
|
+
}];
|
|
2029
|
+
readonly tags: [];
|
|
2030
|
+
};
|
|
1662
2031
|
readonly kubernetes: {
|
|
1663
2032
|
readonly id: "kubernetes";
|
|
1664
2033
|
readonly name: {
|
|
@@ -1729,6 +2098,27 @@ declare const TERM: {
|
|
|
1729
2098
|
readonly type: [];
|
|
1730
2099
|
readonly tags: [];
|
|
1731
2100
|
};
|
|
2101
|
+
readonly lua: {
|
|
2102
|
+
readonly id: "lua";
|
|
2103
|
+
readonly name: {
|
|
2104
|
+
readonly "en-US": "Lua";
|
|
2105
|
+
};
|
|
2106
|
+
readonly label: {
|
|
2107
|
+
readonly "en-US": "";
|
|
2108
|
+
};
|
|
2109
|
+
readonly definition: {
|
|
2110
|
+
readonly "en-US": "";
|
|
2111
|
+
};
|
|
2112
|
+
readonly type: [{
|
|
2113
|
+
readonly id: "language";
|
|
2114
|
+
readonly name: {
|
|
2115
|
+
readonly "en-US": "Language";
|
|
2116
|
+
readonly "en-GB": "en-US";
|
|
2117
|
+
readonly "de-DE": "Sprache";
|
|
2118
|
+
};
|
|
2119
|
+
}];
|
|
2120
|
+
readonly tags: [];
|
|
2121
|
+
};
|
|
1732
2122
|
readonly mac_os: {
|
|
1733
2123
|
readonly id: "mac_os";
|
|
1734
2124
|
readonly name: {
|
|
@@ -1799,6 +2189,27 @@ declare const TERM: {
|
|
|
1799
2189
|
readonly type: [];
|
|
1800
2190
|
readonly tags: [];
|
|
1801
2191
|
};
|
|
2192
|
+
readonly matlab: {
|
|
2193
|
+
readonly id: "matlab";
|
|
2194
|
+
readonly name: {
|
|
2195
|
+
readonly "en-US": "MATLAB";
|
|
2196
|
+
};
|
|
2197
|
+
readonly label: {
|
|
2198
|
+
readonly "en-US": "";
|
|
2199
|
+
};
|
|
2200
|
+
readonly definition: {
|
|
2201
|
+
readonly "en-US": "";
|
|
2202
|
+
};
|
|
2203
|
+
readonly type: [{
|
|
2204
|
+
readonly id: "language";
|
|
2205
|
+
readonly name: {
|
|
2206
|
+
readonly "en-US": "Language";
|
|
2207
|
+
readonly "en-GB": "en-US";
|
|
2208
|
+
readonly "de-DE": "Sprache";
|
|
2209
|
+
};
|
|
2210
|
+
}];
|
|
2211
|
+
readonly tags: [];
|
|
2212
|
+
};
|
|
1802
2213
|
readonly maven: {
|
|
1803
2214
|
readonly id: "maven";
|
|
1804
2215
|
readonly name: {
|
|
@@ -1957,6 +2368,8 @@ declare const TERM: {
|
|
|
1957
2368
|
readonly id: "next_js";
|
|
1958
2369
|
readonly name: {
|
|
1959
2370
|
readonly "en-US": "Next.js";
|
|
2371
|
+
readonly "en-GB": "en-US";
|
|
2372
|
+
readonly "de-DE": "en-US";
|
|
1960
2373
|
};
|
|
1961
2374
|
readonly label: {
|
|
1962
2375
|
readonly "en-US": "";
|
|
@@ -1964,7 +2377,14 @@ declare const TERM: {
|
|
|
1964
2377
|
readonly definition: {
|
|
1965
2378
|
readonly "en-US": "";
|
|
1966
2379
|
};
|
|
1967
|
-
readonly type: [
|
|
2380
|
+
readonly type: [{
|
|
2381
|
+
readonly id: "framework";
|
|
2382
|
+
readonly name: {
|
|
2383
|
+
readonly "en-US": "Framework";
|
|
2384
|
+
readonly "en-GB": "en-US";
|
|
2385
|
+
readonly "de-DE": "Framework";
|
|
2386
|
+
};
|
|
2387
|
+
}];
|
|
1968
2388
|
readonly tags: [];
|
|
1969
2389
|
};
|
|
1970
2390
|
readonly nexudus: {
|
|
@@ -2112,6 +2532,48 @@ declare const TERM: {
|
|
|
2112
2532
|
readonly type: [];
|
|
2113
2533
|
readonly tags: [];
|
|
2114
2534
|
};
|
|
2535
|
+
readonly objective_c: {
|
|
2536
|
+
readonly id: "objective_c";
|
|
2537
|
+
readonly name: {
|
|
2538
|
+
readonly "en-US": "Objective-C";
|
|
2539
|
+
};
|
|
2540
|
+
readonly label: {
|
|
2541
|
+
readonly "en-US": "";
|
|
2542
|
+
};
|
|
2543
|
+
readonly definition: {
|
|
2544
|
+
readonly "en-US": "";
|
|
2545
|
+
};
|
|
2546
|
+
readonly type: [{
|
|
2547
|
+
readonly id: "language";
|
|
2548
|
+
readonly name: {
|
|
2549
|
+
readonly "en-US": "Language";
|
|
2550
|
+
readonly "en-GB": "en-US";
|
|
2551
|
+
readonly "de-DE": "Sprache";
|
|
2552
|
+
};
|
|
2553
|
+
}];
|
|
2554
|
+
readonly tags: [];
|
|
2555
|
+
};
|
|
2556
|
+
readonly ocaml: {
|
|
2557
|
+
readonly id: "ocaml";
|
|
2558
|
+
readonly name: {
|
|
2559
|
+
readonly "en-US": "OCaml";
|
|
2560
|
+
};
|
|
2561
|
+
readonly label: {
|
|
2562
|
+
readonly "en-US": "";
|
|
2563
|
+
};
|
|
2564
|
+
readonly definition: {
|
|
2565
|
+
readonly "en-US": "";
|
|
2566
|
+
};
|
|
2567
|
+
readonly type: [{
|
|
2568
|
+
readonly id: "language";
|
|
2569
|
+
readonly name: {
|
|
2570
|
+
readonly "en-US": "Language";
|
|
2571
|
+
readonly "en-GB": "en-US";
|
|
2572
|
+
readonly "de-DE": "Sprache";
|
|
2573
|
+
};
|
|
2574
|
+
}];
|
|
2575
|
+
readonly tags: [];
|
|
2576
|
+
};
|
|
2115
2577
|
readonly okta: {
|
|
2116
2578
|
readonly id: "okta";
|
|
2117
2579
|
readonly name: {
|
|
@@ -2168,6 +2630,27 @@ declare const TERM: {
|
|
|
2168
2630
|
readonly type: [];
|
|
2169
2631
|
readonly tags: [];
|
|
2170
2632
|
};
|
|
2633
|
+
readonly perl: {
|
|
2634
|
+
readonly id: "perl";
|
|
2635
|
+
readonly name: {
|
|
2636
|
+
readonly "en-US": "Perl";
|
|
2637
|
+
};
|
|
2638
|
+
readonly label: {
|
|
2639
|
+
readonly "en-US": "";
|
|
2640
|
+
};
|
|
2641
|
+
readonly definition: {
|
|
2642
|
+
readonly "en-US": "";
|
|
2643
|
+
};
|
|
2644
|
+
readonly type: [{
|
|
2645
|
+
readonly id: "language";
|
|
2646
|
+
readonly name: {
|
|
2647
|
+
readonly "en-US": "Language";
|
|
2648
|
+
readonly "en-GB": "en-US";
|
|
2649
|
+
readonly "de-DE": "Sprache";
|
|
2650
|
+
};
|
|
2651
|
+
}];
|
|
2652
|
+
readonly tags: [];
|
|
2653
|
+
};
|
|
2171
2654
|
readonly photoshop: {
|
|
2172
2655
|
readonly id: "photoshop";
|
|
2173
2656
|
readonly name: {
|
|
@@ -2193,7 +2676,14 @@ declare const TERM: {
|
|
|
2193
2676
|
readonly definition: {
|
|
2194
2677
|
readonly "en-US": "";
|
|
2195
2678
|
};
|
|
2196
|
-
readonly type: [
|
|
2679
|
+
readonly type: [{
|
|
2680
|
+
readonly id: "language";
|
|
2681
|
+
readonly name: {
|
|
2682
|
+
readonly "en-US": "Language";
|
|
2683
|
+
readonly "en-GB": "en-US";
|
|
2684
|
+
readonly "de-DE": "Sprache";
|
|
2685
|
+
};
|
|
2686
|
+
}];
|
|
2197
2687
|
readonly tags: [];
|
|
2198
2688
|
};
|
|
2199
2689
|
readonly pnpm: {
|
|
@@ -2305,7 +2795,14 @@ declare const TERM: {
|
|
|
2305
2795
|
readonly definition: {
|
|
2306
2796
|
readonly "en-US": "";
|
|
2307
2797
|
};
|
|
2308
|
-
readonly type: [
|
|
2798
|
+
readonly type: [{
|
|
2799
|
+
readonly id: "language";
|
|
2800
|
+
readonly name: {
|
|
2801
|
+
readonly "en-US": "Language";
|
|
2802
|
+
readonly "en-GB": "en-US";
|
|
2803
|
+
readonly "de-DE": "Sprache";
|
|
2804
|
+
};
|
|
2805
|
+
}];
|
|
2309
2806
|
readonly tags: [];
|
|
2310
2807
|
};
|
|
2311
2808
|
readonly quickbooks: {
|
|
@@ -2322,6 +2819,27 @@ declare const TERM: {
|
|
|
2322
2819
|
readonly type: [];
|
|
2323
2820
|
readonly tags: [];
|
|
2324
2821
|
};
|
|
2822
|
+
readonly r: {
|
|
2823
|
+
readonly id: "r";
|
|
2824
|
+
readonly name: {
|
|
2825
|
+
readonly "en-US": "R";
|
|
2826
|
+
};
|
|
2827
|
+
readonly label: {
|
|
2828
|
+
readonly "en-US": "";
|
|
2829
|
+
};
|
|
2830
|
+
readonly definition: {
|
|
2831
|
+
readonly "en-US": "";
|
|
2832
|
+
};
|
|
2833
|
+
readonly type: [{
|
|
2834
|
+
readonly id: "language";
|
|
2835
|
+
readonly name: {
|
|
2836
|
+
readonly "en-US": "Language";
|
|
2837
|
+
readonly "en-GB": "en-US";
|
|
2838
|
+
readonly "de-DE": "Sprache";
|
|
2839
|
+
};
|
|
2840
|
+
}];
|
|
2841
|
+
readonly tags: [];
|
|
2842
|
+
};
|
|
2325
2843
|
readonly react: {
|
|
2326
2844
|
readonly id: "react";
|
|
2327
2845
|
readonly name: {
|
|
@@ -2508,10 +3026,54 @@ declare const TERM: {
|
|
|
2508
3026
|
readonly type: [];
|
|
2509
3027
|
readonly tags: [];
|
|
2510
3028
|
};
|
|
3029
|
+
readonly ruby: {
|
|
3030
|
+
readonly id: "ruby";
|
|
3031
|
+
readonly name: {
|
|
3032
|
+
readonly "en-US": "Ruby";
|
|
3033
|
+
};
|
|
3034
|
+
readonly label: {
|
|
3035
|
+
readonly "en-US": "";
|
|
3036
|
+
};
|
|
3037
|
+
readonly definition: {
|
|
3038
|
+
readonly "en-US": "";
|
|
3039
|
+
};
|
|
3040
|
+
readonly type: [{
|
|
3041
|
+
readonly id: "language";
|
|
3042
|
+
readonly name: {
|
|
3043
|
+
readonly "en-US": "Language";
|
|
3044
|
+
readonly "en-GB": "en-US";
|
|
3045
|
+
readonly "de-DE": "Sprache";
|
|
3046
|
+
};
|
|
3047
|
+
}];
|
|
3048
|
+
readonly tags: [];
|
|
3049
|
+
};
|
|
3050
|
+
readonly rust: {
|
|
3051
|
+
readonly id: "rust";
|
|
3052
|
+
readonly name: {
|
|
3053
|
+
readonly "en-US": "Rust";
|
|
3054
|
+
};
|
|
3055
|
+
readonly label: {
|
|
3056
|
+
readonly "en-US": "";
|
|
3057
|
+
};
|
|
3058
|
+
readonly definition: {
|
|
3059
|
+
readonly "en-US": "";
|
|
3060
|
+
};
|
|
3061
|
+
readonly type: [{
|
|
3062
|
+
readonly id: "language";
|
|
3063
|
+
readonly name: {
|
|
3064
|
+
readonly "en-US": "Language";
|
|
3065
|
+
readonly "en-GB": "en-US";
|
|
3066
|
+
readonly "de-DE": "Sprache";
|
|
3067
|
+
};
|
|
3068
|
+
}];
|
|
3069
|
+
readonly tags: [];
|
|
3070
|
+
};
|
|
2511
3071
|
readonly sanity: {
|
|
2512
3072
|
readonly id: "sanity";
|
|
2513
3073
|
readonly name: {
|
|
2514
|
-
readonly "en-US": "Sanity
|
|
3074
|
+
readonly "en-US": "Sanity";
|
|
3075
|
+
readonly "en-GB": "en-US";
|
|
3076
|
+
readonly "de-DE": "en-US";
|
|
2515
3077
|
};
|
|
2516
3078
|
readonly label: {
|
|
2517
3079
|
readonly "en-US": "";
|
|
@@ -2519,7 +3081,14 @@ declare const TERM: {
|
|
|
2519
3081
|
readonly definition: {
|
|
2520
3082
|
readonly "en-US": "";
|
|
2521
3083
|
};
|
|
2522
|
-
readonly type: [
|
|
3084
|
+
readonly type: [{
|
|
3085
|
+
readonly id: "cms";
|
|
3086
|
+
readonly name: {
|
|
3087
|
+
readonly "en-US": "Content Management System";
|
|
3088
|
+
readonly "en-GB": "en-US";
|
|
3089
|
+
readonly "de-DE": "Content-Management-System";
|
|
3090
|
+
};
|
|
3091
|
+
}];
|
|
2523
3092
|
readonly tags: [];
|
|
2524
3093
|
};
|
|
2525
3094
|
readonly sass: {
|
|
@@ -2536,6 +3105,27 @@ declare const TERM: {
|
|
|
2536
3105
|
readonly type: [];
|
|
2537
3106
|
readonly tags: [];
|
|
2538
3107
|
};
|
|
3108
|
+
readonly scala: {
|
|
3109
|
+
readonly id: "scala";
|
|
3110
|
+
readonly name: {
|
|
3111
|
+
readonly "en-US": "Scala";
|
|
3112
|
+
};
|
|
3113
|
+
readonly label: {
|
|
3114
|
+
readonly "en-US": "";
|
|
3115
|
+
};
|
|
3116
|
+
readonly definition: {
|
|
3117
|
+
readonly "en-US": "";
|
|
3118
|
+
};
|
|
3119
|
+
readonly type: [{
|
|
3120
|
+
readonly id: "language";
|
|
3121
|
+
readonly name: {
|
|
3122
|
+
readonly "en-US": "Language";
|
|
3123
|
+
readonly "en-GB": "en-US";
|
|
3124
|
+
readonly "de-DE": "Sprache";
|
|
3125
|
+
};
|
|
3126
|
+
}];
|
|
3127
|
+
readonly tags: [];
|
|
3128
|
+
};
|
|
2539
3129
|
readonly scrum: {
|
|
2540
3130
|
readonly id: "scrum";
|
|
2541
3131
|
readonly name: {
|
|
@@ -2673,7 +3263,14 @@ declare const TERM: {
|
|
|
2673
3263
|
readonly definition: {
|
|
2674
3264
|
readonly "en-US": "";
|
|
2675
3265
|
};
|
|
2676
|
-
readonly type: [
|
|
3266
|
+
readonly type: [{
|
|
3267
|
+
readonly id: "language";
|
|
3268
|
+
readonly name: {
|
|
3269
|
+
readonly "en-US": "Language";
|
|
3270
|
+
readonly "en-GB": "en-US";
|
|
3271
|
+
readonly "de-DE": "Sprache";
|
|
3272
|
+
};
|
|
3273
|
+
}];
|
|
2677
3274
|
readonly tags: [];
|
|
2678
3275
|
};
|
|
2679
3276
|
readonly sql_lite: {
|
|
@@ -2788,6 +3385,27 @@ declare const TERM: {
|
|
|
2788
3385
|
readonly type: [];
|
|
2789
3386
|
readonly tags: [];
|
|
2790
3387
|
};
|
|
3388
|
+
readonly swift: {
|
|
3389
|
+
readonly id: "swift";
|
|
3390
|
+
readonly name: {
|
|
3391
|
+
readonly "en-US": "Swift";
|
|
3392
|
+
};
|
|
3393
|
+
readonly label: {
|
|
3394
|
+
readonly "en-US": "";
|
|
3395
|
+
};
|
|
3396
|
+
readonly definition: {
|
|
3397
|
+
readonly "en-US": "";
|
|
3398
|
+
};
|
|
3399
|
+
readonly type: [{
|
|
3400
|
+
readonly id: "language";
|
|
3401
|
+
readonly name: {
|
|
3402
|
+
readonly "en-US": "Language";
|
|
3403
|
+
readonly "en-GB": "en-US";
|
|
3404
|
+
readonly "de-DE": "Sprache";
|
|
3405
|
+
};
|
|
3406
|
+
}];
|
|
3407
|
+
readonly tags: [];
|
|
3408
|
+
};
|
|
2791
3409
|
readonly tailwind: {
|
|
2792
3410
|
readonly id: "tailwind";
|
|
2793
3411
|
readonly name: {
|
|
@@ -2994,6 +3612,27 @@ declare const TERM: {
|
|
|
2994
3612
|
readonly type: [];
|
|
2995
3613
|
readonly tags: [];
|
|
2996
3614
|
};
|
|
3615
|
+
readonly visual_basic: {
|
|
3616
|
+
readonly id: "visual_basic";
|
|
3617
|
+
readonly name: {
|
|
3618
|
+
readonly "en-US": "Visual Basic";
|
|
3619
|
+
};
|
|
3620
|
+
readonly label: {
|
|
3621
|
+
readonly "en-US": "";
|
|
3622
|
+
};
|
|
3623
|
+
readonly definition: {
|
|
3624
|
+
readonly "en-US": "";
|
|
3625
|
+
};
|
|
3626
|
+
readonly type: [{
|
|
3627
|
+
readonly id: "language";
|
|
3628
|
+
readonly name: {
|
|
3629
|
+
readonly "en-US": "Language";
|
|
3630
|
+
readonly "en-GB": "en-US";
|
|
3631
|
+
readonly "de-DE": "Sprache";
|
|
3632
|
+
};
|
|
3633
|
+
}];
|
|
3634
|
+
readonly tags: [];
|
|
3635
|
+
};
|
|
2997
3636
|
readonly vite: {
|
|
2998
3637
|
readonly id: "vite";
|
|
2999
3638
|
readonly name: {
|
|
@@ -3152,6 +3791,8 @@ declare const TERM: {
|
|
|
3152
3791
|
readonly id: "wordpress";
|
|
3153
3792
|
readonly name: {
|
|
3154
3793
|
readonly "en-US": "WordPress";
|
|
3794
|
+
readonly "en-GB": "en-US";
|
|
3795
|
+
readonly "de-DE": "en-US";
|
|
3155
3796
|
};
|
|
3156
3797
|
readonly label: {
|
|
3157
3798
|
readonly "en-US": "";
|
|
@@ -3159,7 +3800,14 @@ declare const TERM: {
|
|
|
3159
3800
|
readonly definition: {
|
|
3160
3801
|
readonly "en-US": "";
|
|
3161
3802
|
};
|
|
3162
|
-
readonly type: [
|
|
3803
|
+
readonly type: [{
|
|
3804
|
+
readonly id: "cms";
|
|
3805
|
+
readonly name: {
|
|
3806
|
+
readonly "en-US": "Content Management System";
|
|
3807
|
+
readonly "en-GB": "en-US";
|
|
3808
|
+
readonly "de-DE": "Content-Management-System";
|
|
3809
|
+
};
|
|
3810
|
+
}];
|
|
3163
3811
|
readonly tags: [];
|
|
3164
3812
|
};
|
|
3165
3813
|
readonly yarn: {
|
|
@@ -3190,6 +3838,27 @@ declare const TERM: {
|
|
|
3190
3838
|
readonly type: [];
|
|
3191
3839
|
readonly tags: [];
|
|
3192
3840
|
};
|
|
3841
|
+
readonly zig: {
|
|
3842
|
+
readonly id: "zig";
|
|
3843
|
+
readonly name: {
|
|
3844
|
+
readonly "en-US": "Zig";
|
|
3845
|
+
};
|
|
3846
|
+
readonly label: {
|
|
3847
|
+
readonly "en-US": "";
|
|
3848
|
+
};
|
|
3849
|
+
readonly definition: {
|
|
3850
|
+
readonly "en-US": "";
|
|
3851
|
+
};
|
|
3852
|
+
readonly type: [{
|
|
3853
|
+
readonly id: "language";
|
|
3854
|
+
readonly name: {
|
|
3855
|
+
readonly "en-US": "Language";
|
|
3856
|
+
readonly "en-GB": "en-US";
|
|
3857
|
+
readonly "de-DE": "Sprache";
|
|
3858
|
+
};
|
|
3859
|
+
}];
|
|
3860
|
+
readonly tags: [];
|
|
3861
|
+
};
|
|
3193
3862
|
readonly zod: {
|
|
3194
3863
|
readonly id: "zod";
|
|
3195
3864
|
readonly name: {
|
|
@@ -3231,6 +3900,10 @@ export declare type TTerm = {
|
|
|
3231
3900
|
* Typically matches the official capitalisation (e.g., 'React', 'JavaScript', 'Node.js').
|
|
3232
3901
|
*/
|
|
3233
3902
|
name: TLocaleRecord;
|
|
3903
|
+
/**
|
|
3904
|
+
* An optional short name or abbreviation for the term.
|
|
3905
|
+
*/
|
|
3906
|
+
altName?: TLocaleRecord;
|
|
3234
3907
|
/**
|
|
3235
3908
|
* The type(s) of the term (e.g., library, framework, language, tool).
|
|
3236
3909
|
* Multiple types can be assigned if applicable.
|
|
@@ -3283,8 +3956,9 @@ declare type TTermLinks = {
|
|
|
3283
3956
|
website: string;
|
|
3284
3957
|
} & Partial<Record<Exclude<TLinkType, 'website'>, string>>;
|
|
3285
3958
|
|
|
3286
|
-
export declare type TTermLocalized = Omit<TTerm, 'name' | 'label' | 'definition' | 'type' | 'tags'> & {
|
|
3959
|
+
export declare type TTermLocalized = Omit<TTerm, 'name' | 'altName' | 'label' | 'definition' | 'type' | 'tags'> & {
|
|
3287
3960
|
name: string;
|
|
3961
|
+
altName?: string;
|
|
3288
3962
|
label: string;
|
|
3289
3963
|
definition: string;
|
|
3290
3964
|
type: TTermTypeLocalized[];
|
|
@@ -3380,6 +4054,14 @@ declare const TYPE: {
|
|
|
3380
4054
|
readonly "en-US": "Platform";
|
|
3381
4055
|
};
|
|
3382
4056
|
};
|
|
4057
|
+
readonly standard: {
|
|
4058
|
+
readonly id: "standard";
|
|
4059
|
+
readonly name: {
|
|
4060
|
+
readonly "en-US": "Standard";
|
|
4061
|
+
readonly "en-GB": "en-US";
|
|
4062
|
+
readonly "de-DE": "Standard";
|
|
4063
|
+
};
|
|
4064
|
+
};
|
|
3383
4065
|
};
|
|
3384
4066
|
|
|
3385
4067
|
export { }
|