dev-dict 0.7.0 → 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 +123 -11
- package/dist/index.js +403 -351
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2,42 +2,42 @@ const e = {
|
|
|
2
2
|
EN_US: "en-US",
|
|
3
3
|
EN_GB: "en-GB",
|
|
4
4
|
DE_DE: "de-DE"
|
|
5
|
-
},
|
|
5
|
+
}, Hn = ({
|
|
6
6
|
obj: n,
|
|
7
7
|
value: a,
|
|
8
|
-
useFallback: t =
|
|
9
|
-
}) => a && Object.values(e).includes(a) ? n[a] || (t ? n[e.EN_US] : "") : a || (t ? n[e.EN_US] : ""),
|
|
8
|
+
useFallback: t = d.USE_FALLBACK
|
|
9
|
+
}) => a && Object.values(e).includes(a) ? n[a] || (t ? n[e.EN_US] : "") : a || (t ? n[e.EN_US] : ""), ia = ({
|
|
10
10
|
obj: n,
|
|
11
|
-
useFallback: a =
|
|
11
|
+
useFallback: a = d.USE_FALLBACK
|
|
12
12
|
}) => {
|
|
13
13
|
const t = Object.values(e);
|
|
14
14
|
return Object.fromEntries(
|
|
15
|
-
t.map((s) => [s,
|
|
15
|
+
t.map((s) => [s, Hn({ obj: n, value: n[s], useFallback: a })])
|
|
16
16
|
);
|
|
17
17
|
}, l = ({
|
|
18
18
|
obj: n,
|
|
19
19
|
keys: a,
|
|
20
|
-
useFallback: t =
|
|
20
|
+
useFallback: t = d.USE_FALLBACK
|
|
21
21
|
}) => Object.fromEntries(
|
|
22
|
-
Object.entries(n).map(([s,
|
|
23
|
-
const
|
|
24
|
-
return [s, { ...
|
|
22
|
+
Object.entries(n).map(([s, E]) => {
|
|
23
|
+
const _ = a.filter((S) => S in E && typeof E[S] == "object").map((S) => [S, ia({ obj: E[S], useFallback: t })]);
|
|
24
|
+
return [s, { ...E, ...Object.fromEntries(_) }];
|
|
25
25
|
})
|
|
26
26
|
), N = ({
|
|
27
27
|
obj: n,
|
|
28
|
-
locale: a =
|
|
29
|
-
useFallback: t =
|
|
30
|
-
}) =>
|
|
28
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
29
|
+
useFallback: t = d.USE_FALLBACK
|
|
30
|
+
}) => Hn({ obj: n, value: n[a], useFallback: t }), Vn = ({
|
|
31
31
|
tag: n,
|
|
32
|
-
locale: a =
|
|
33
|
-
useFallback: t =
|
|
32
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
33
|
+
useFallback: t = d.USE_FALLBACK
|
|
34
34
|
}) => ({
|
|
35
35
|
id: n.id,
|
|
36
36
|
name: N({ obj: n.name, locale: a, useFallback: t })
|
|
37
37
|
}), Qn = ({
|
|
38
38
|
term: n,
|
|
39
|
-
locale: a =
|
|
40
|
-
useFallback: t =
|
|
39
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
40
|
+
useFallback: t = d.USE_FALLBACK
|
|
41
41
|
}) => ({
|
|
42
42
|
id: n.id,
|
|
43
43
|
name: N({ obj: n.name, locale: a, useFallback: t })
|
|
@@ -62,27 +62,27 @@ const e = {
|
|
|
62
62
|
[e.EN_GB]: e.EN_US,
|
|
63
63
|
[e.DE_DE]: "Aus dem Kontext abgeleitet"
|
|
64
64
|
}
|
|
65
|
-
},
|
|
65
|
+
}, m = {
|
|
66
66
|
id: "official_website",
|
|
67
67
|
name: {
|
|
68
68
|
[e.EN_US]: "Official Website",
|
|
69
69
|
[e.EN_GB]: e.EN_US,
|
|
70
70
|
[e.DE_DE]: "Offizielle Website"
|
|
71
71
|
}
|
|
72
|
-
},
|
|
72
|
+
}, p = {
|
|
73
73
|
id: "wikipedia",
|
|
74
74
|
name: {
|
|
75
75
|
[e.EN_US]: "Wikipedia",
|
|
76
76
|
[e.EN_GB]: e.EN_US,
|
|
77
77
|
[e.DE_DE]: "Wikipedia"
|
|
78
78
|
}
|
|
79
|
-
},
|
|
79
|
+
}, ta = {
|
|
80
80
|
[c.id]: c,
|
|
81
81
|
[r.id]: r,
|
|
82
82
|
[g.id]: g,
|
|
83
|
-
[
|
|
84
|
-
[
|
|
85
|
-
},
|
|
83
|
+
[m.id]: m,
|
|
84
|
+
[p.id]: p
|
|
85
|
+
}, Yn = l({ obj: ta, keys: ["name"], useFallback: !1 }), b = {
|
|
86
86
|
id: "automation",
|
|
87
87
|
name: {
|
|
88
88
|
[e.EN_US]: "Automation",
|
|
@@ -104,6 +104,13 @@ const e = {
|
|
|
104
104
|
[e.DE_DE]: "Kryptografie"
|
|
105
105
|
}
|
|
106
106
|
}, u = {
|
|
107
|
+
id: "e2e",
|
|
108
|
+
name: {
|
|
109
|
+
[e.EN_US]: "E2E",
|
|
110
|
+
[e.EN_GB]: e.EN_US,
|
|
111
|
+
[e.DE_DE]: e.EN_US
|
|
112
|
+
}
|
|
113
|
+
}, h = {
|
|
107
114
|
id: "frontend",
|
|
108
115
|
name: {
|
|
109
116
|
[e.EN_US]: "Frontend",
|
|
@@ -117,7 +124,7 @@ const e = {
|
|
|
117
124
|
[e.EN_GB]: e.EN_US,
|
|
118
125
|
[e.DE_DE]: "JavaScript"
|
|
119
126
|
}
|
|
120
|
-
},
|
|
127
|
+
}, D = {
|
|
121
128
|
id: "open_source",
|
|
122
129
|
name: {
|
|
123
130
|
[e.EN_US]: "Open Source",
|
|
@@ -131,60 +138,61 @@ const e = {
|
|
|
131
138
|
[e.EN_GB]: e.EN_US,
|
|
132
139
|
[e.DE_DE]: "QA"
|
|
133
140
|
}
|
|
134
|
-
},
|
|
141
|
+
}, v = {
|
|
135
142
|
id: "security",
|
|
136
143
|
name: {
|
|
137
144
|
[e.EN_US]: "Security",
|
|
138
145
|
[e.EN_GB]: e.EN_US,
|
|
139
146
|
[e.DE_DE]: "Sicherheit"
|
|
140
147
|
}
|
|
141
|
-
},
|
|
148
|
+
}, A = {
|
|
142
149
|
id: "testing",
|
|
143
150
|
name: {
|
|
144
151
|
[e.EN_US]: "Testing",
|
|
145
152
|
[e.EN_GB]: e.EN_US,
|
|
146
153
|
[e.DE_DE]: "Testing"
|
|
147
154
|
}
|
|
148
|
-
},
|
|
155
|
+
}, B = {
|
|
149
156
|
id: "ui_library",
|
|
150
157
|
name: {
|
|
151
158
|
[e.EN_US]: "UI Library",
|
|
152
159
|
[e.EN_GB]: e.EN_US,
|
|
153
160
|
[e.DE_DE]: "UI-Bibliothek"
|
|
154
161
|
}
|
|
155
|
-
},
|
|
162
|
+
}, Zn = {
|
|
156
163
|
[b.id]: b,
|
|
157
164
|
[y.id]: y,
|
|
158
165
|
[f.id]: f,
|
|
159
166
|
[u.id]: u,
|
|
160
|
-
[k.id]: k,
|
|
161
167
|
[h.id]: h,
|
|
162
|
-
[
|
|
168
|
+
[k.id]: k,
|
|
163
169
|
[D.id]: D,
|
|
164
|
-
[
|
|
165
|
-
[
|
|
166
|
-
|
|
170
|
+
[w.id]: w,
|
|
171
|
+
[v.id]: v,
|
|
172
|
+
[A.id]: A,
|
|
173
|
+
[B.id]: B
|
|
174
|
+
}, o = l({ obj: Zn, keys: ["name"], useFallback: !1 }), L = {
|
|
167
175
|
id: "cms",
|
|
168
176
|
name: {
|
|
169
177
|
[e.EN_US]: "Content Management System",
|
|
170
178
|
[e.EN_GB]: e.EN_US,
|
|
171
179
|
[e.DE_DE]: "Content-Management-System"
|
|
172
180
|
}
|
|
173
|
-
},
|
|
181
|
+
}, j = {
|
|
174
182
|
id: "concept",
|
|
175
183
|
name: {
|
|
176
184
|
[e.EN_US]: "Concept",
|
|
177
185
|
[e.EN_GB]: e.EN_US,
|
|
178
186
|
[e.DE_DE]: "Konzept"
|
|
179
187
|
}
|
|
180
|
-
},
|
|
188
|
+
}, G = {
|
|
181
189
|
id: "framework",
|
|
182
190
|
name: {
|
|
183
191
|
[e.EN_US]: "Framework",
|
|
184
192
|
[e.EN_GB]: e.EN_US,
|
|
185
193
|
[e.DE_DE]: "Framework"
|
|
186
194
|
}
|
|
187
|
-
},
|
|
195
|
+
}, C = {
|
|
188
196
|
id: "language",
|
|
189
197
|
name: {
|
|
190
198
|
[e.EN_US]: "Language",
|
|
@@ -198,7 +206,7 @@ const e = {
|
|
|
198
206
|
[e.EN_GB]: e.EN_US,
|
|
199
207
|
[e.DE_DE]: "Bibliothek"
|
|
200
208
|
}
|
|
201
|
-
},
|
|
209
|
+
}, z = {
|
|
202
210
|
id: "methodology",
|
|
203
211
|
name: {
|
|
204
212
|
[e.EN_US]: "Methodology",
|
|
@@ -210,7 +218,7 @@ const e = {
|
|
|
210
218
|
name: {
|
|
211
219
|
[e.EN_US]: "Platform"
|
|
212
220
|
}
|
|
213
|
-
},
|
|
221
|
+
}, O = {
|
|
214
222
|
id: "runtime_environment",
|
|
215
223
|
name: {
|
|
216
224
|
[e.EN_US]: "Runtime Environment",
|
|
@@ -224,29 +232,40 @@ const e = {
|
|
|
224
232
|
[e.EN_GB]: e.EN_US,
|
|
225
233
|
[e.DE_DE]: "Standard"
|
|
226
234
|
}
|
|
227
|
-
},
|
|
228
|
-
[
|
|
229
|
-
[
|
|
235
|
+
}, $n = {
|
|
236
|
+
[L.id]: L,
|
|
237
|
+
[j.id]: j,
|
|
238
|
+
[G.id]: G,
|
|
230
239
|
[C.id]: C,
|
|
231
|
-
[B.id]: B,
|
|
232
240
|
[T.id]: T,
|
|
233
|
-
[G.id]: G,
|
|
234
241
|
[z.id]: z,
|
|
242
|
+
[O.id]: O,
|
|
235
243
|
[x.id]: x,
|
|
236
244
|
[F.id]: F
|
|
237
|
-
}, i = l({ obj:
|
|
245
|
+
}, i = l({ obj: $n, keys: ["name"], useFallback: !1 }), P = {
|
|
238
246
|
id: "aes",
|
|
239
247
|
name: {
|
|
240
|
-
[e.EN_US]: "AES"
|
|
248
|
+
[e.EN_US]: "AES",
|
|
249
|
+
[e.EN_GB]: e.EN_US,
|
|
250
|
+
[e.DE_DE]: e.EN_US
|
|
251
|
+
},
|
|
252
|
+
altName: {
|
|
253
|
+
[e.EN_US]: "Advanced Encryption Standard",
|
|
254
|
+
[e.EN_GB]: e.EN_US,
|
|
255
|
+
[e.DE_DE]: e.EN_US
|
|
241
256
|
},
|
|
242
257
|
label: {
|
|
243
|
-
[e.EN_US]: "Encryption Standard"
|
|
258
|
+
[e.EN_US]: "Encryption Standard",
|
|
259
|
+
[e.EN_GB]: e.EN_US,
|
|
260
|
+
[e.DE_DE]: "Verschlüsselungsstandard"
|
|
244
261
|
},
|
|
245
262
|
definition: {
|
|
246
|
-
[e.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."
|
|
263
|
+
[e.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.",
|
|
264
|
+
[e.EN_GB]: e.EN_US,
|
|
265
|
+
[e.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."
|
|
247
266
|
},
|
|
248
267
|
type: [i.standard],
|
|
249
|
-
tags: [
|
|
268
|
+
tags: [o.security, o.cryptography]
|
|
250
269
|
}, M = {
|
|
251
270
|
id: "agile",
|
|
252
271
|
name: {
|
|
@@ -260,10 +279,17 @@ const e = {
|
|
|
260
279
|
},
|
|
261
280
|
type: [],
|
|
262
281
|
tags: []
|
|
263
|
-
},
|
|
282
|
+
}, R = {
|
|
264
283
|
id: "ai",
|
|
265
284
|
name: {
|
|
266
|
-
[e.EN_US]: "AI"
|
|
285
|
+
[e.EN_US]: "AI",
|
|
286
|
+
[e.EN_GB]: e.EN_US,
|
|
287
|
+
[e.DE_DE]: "KI"
|
|
288
|
+
},
|
|
289
|
+
altName: {
|
|
290
|
+
[e.EN_US]: "Artificial Intelligence",
|
|
291
|
+
[e.EN_GB]: e.EN_US,
|
|
292
|
+
[e.DE_DE]: "Künstliche Intelligenz"
|
|
267
293
|
},
|
|
268
294
|
label: {
|
|
269
295
|
[e.EN_US]: ""
|
|
@@ -273,7 +299,7 @@ const e = {
|
|
|
273
299
|
},
|
|
274
300
|
type: [],
|
|
275
301
|
tags: []
|
|
276
|
-
},
|
|
302
|
+
}, I = {
|
|
277
303
|
id: "algolia",
|
|
278
304
|
name: {
|
|
279
305
|
[e.EN_US]: "Algolia"
|
|
@@ -286,7 +312,7 @@ const e = {
|
|
|
286
312
|
},
|
|
287
313
|
type: [],
|
|
288
314
|
tags: []
|
|
289
|
-
},
|
|
315
|
+
}, J = {
|
|
290
316
|
id: "alpine_js",
|
|
291
317
|
name: {
|
|
292
318
|
[e.EN_US]: "Alpine.js"
|
|
@@ -299,7 +325,7 @@ const e = {
|
|
|
299
325
|
},
|
|
300
326
|
type: [],
|
|
301
327
|
tags: []
|
|
302
|
-
},
|
|
328
|
+
}, K = {
|
|
303
329
|
id: "android_studio",
|
|
304
330
|
name: {
|
|
305
331
|
[e.EN_US]: "Android Studio"
|
|
@@ -312,7 +338,7 @@ const e = {
|
|
|
312
338
|
},
|
|
313
339
|
type: [],
|
|
314
340
|
tags: []
|
|
315
|
-
},
|
|
341
|
+
}, W = {
|
|
316
342
|
id: "angularjs",
|
|
317
343
|
name: {
|
|
318
344
|
[e.EN_US]: "AngularJS"
|
|
@@ -338,7 +364,7 @@ const e = {
|
|
|
338
364
|
},
|
|
339
365
|
type: [],
|
|
340
366
|
tags: []
|
|
341
|
-
},
|
|
367
|
+
}, H = {
|
|
342
368
|
id: "asp_net",
|
|
343
369
|
name: {
|
|
344
370
|
[e.EN_US]: "ASP.NET"
|
|
@@ -351,7 +377,7 @@ const e = {
|
|
|
351
377
|
},
|
|
352
378
|
type: [],
|
|
353
379
|
tags: []
|
|
354
|
-
},
|
|
380
|
+
}, V = {
|
|
355
381
|
id: "assembly",
|
|
356
382
|
name: {
|
|
357
383
|
[e.EN_US]: "Assembly"
|
|
@@ -380,7 +406,7 @@ const e = {
|
|
|
380
406
|
links: {
|
|
381
407
|
website: ""
|
|
382
408
|
}
|
|
383
|
-
},
|
|
409
|
+
}, Y = {
|
|
384
410
|
id: "azure",
|
|
385
411
|
name: {
|
|
386
412
|
[e.EN_US]: "Azure"
|
|
@@ -393,7 +419,7 @@ const e = {
|
|
|
393
419
|
},
|
|
394
420
|
type: [],
|
|
395
421
|
tags: []
|
|
396
|
-
},
|
|
422
|
+
}, Z = {
|
|
397
423
|
id: "azure_pipelines",
|
|
398
424
|
name: {
|
|
399
425
|
[e.EN_US]: "Azure Pipelines"
|
|
@@ -406,7 +432,7 @@ const e = {
|
|
|
406
432
|
},
|
|
407
433
|
type: [],
|
|
408
434
|
tags: []
|
|
409
|
-
},
|
|
435
|
+
}, $ = {
|
|
410
436
|
id: "backbone_js",
|
|
411
437
|
name: {
|
|
412
438
|
[e.EN_US]: "Backbone.js"
|
|
@@ -432,7 +458,7 @@ const e = {
|
|
|
432
458
|
},
|
|
433
459
|
type: [i.language],
|
|
434
460
|
tags: []
|
|
435
|
-
},
|
|
461
|
+
}, ee = {
|
|
436
462
|
id: "bdd",
|
|
437
463
|
name: {
|
|
438
464
|
[e.EN_US]: "BDD"
|
|
@@ -445,7 +471,7 @@ const e = {
|
|
|
445
471
|
},
|
|
446
472
|
type: [],
|
|
447
473
|
tags: []
|
|
448
|
-
},
|
|
474
|
+
}, ie = {
|
|
449
475
|
id: "beanstalk",
|
|
450
476
|
name: {
|
|
451
477
|
[e.EN_US]: "Beanstalk"
|
|
@@ -458,7 +484,7 @@ const e = {
|
|
|
458
484
|
},
|
|
459
485
|
type: [],
|
|
460
486
|
tags: []
|
|
461
|
-
},
|
|
487
|
+
}, te = {
|
|
462
488
|
id: "big_js",
|
|
463
489
|
name: {
|
|
464
490
|
[e.EN_US]: "Big.js"
|
|
@@ -471,7 +497,7 @@ const e = {
|
|
|
471
497
|
},
|
|
472
498
|
type: [],
|
|
473
499
|
tags: []
|
|
474
|
-
},
|
|
500
|
+
}, ne = {
|
|
475
501
|
id: "biome",
|
|
476
502
|
name: {
|
|
477
503
|
[e.EN_US]: "Biome"
|
|
@@ -484,7 +510,7 @@ const e = {
|
|
|
484
510
|
},
|
|
485
511
|
type: [],
|
|
486
512
|
tags: []
|
|
487
|
-
},
|
|
513
|
+
}, ae = {
|
|
488
514
|
id: "bitbucket_pipelines",
|
|
489
515
|
name: {
|
|
490
516
|
[e.EN_US]: "Bitbucket Pipelines"
|
|
@@ -497,7 +523,7 @@ const e = {
|
|
|
497
523
|
},
|
|
498
524
|
type: [],
|
|
499
525
|
tags: []
|
|
500
|
-
},
|
|
526
|
+
}, se = {
|
|
501
527
|
id: "bitcoin",
|
|
502
528
|
name: {
|
|
503
529
|
[e.EN_US]: "Bitcoin"
|
|
@@ -510,7 +536,7 @@ const e = {
|
|
|
510
536
|
},
|
|
511
537
|
type: [],
|
|
512
538
|
tags: []
|
|
513
|
-
},
|
|
539
|
+
}, _e = {
|
|
514
540
|
id: "blockchain",
|
|
515
541
|
name: {
|
|
516
542
|
[e.EN_US]: "Blockchain"
|
|
@@ -549,7 +575,7 @@ const e = {
|
|
|
549
575
|
},
|
|
550
576
|
type: [],
|
|
551
577
|
tags: []
|
|
552
|
-
},
|
|
578
|
+
}, Ee = {
|
|
553
579
|
id: "browserstack",
|
|
554
580
|
name: {
|
|
555
581
|
[e.EN_US]: "BrowserStack"
|
|
@@ -562,7 +588,7 @@ const e = {
|
|
|
562
588
|
},
|
|
563
589
|
type: [],
|
|
564
590
|
tags: []
|
|
565
|
-
},
|
|
591
|
+
}, Se = {
|
|
566
592
|
id: "bugzilla",
|
|
567
593
|
name: {
|
|
568
594
|
[e.EN_US]: "Bugzilla"
|
|
@@ -575,7 +601,7 @@ const e = {
|
|
|
575
601
|
},
|
|
576
602
|
type: [],
|
|
577
603
|
tags: []
|
|
578
|
-
},
|
|
604
|
+
}, le = {
|
|
579
605
|
id: "c_sharp",
|
|
580
606
|
name: {
|
|
581
607
|
[e.EN_US]: "C#"
|
|
@@ -588,7 +614,7 @@ const e = {
|
|
|
588
614
|
},
|
|
589
615
|
type: [i.language],
|
|
590
616
|
tags: []
|
|
591
|
-
},
|
|
617
|
+
}, Ne = {
|
|
592
618
|
id: "cakephp",
|
|
593
619
|
name: {
|
|
594
620
|
[e.EN_US]: "CakePHP"
|
|
@@ -601,7 +627,7 @@ const e = {
|
|
|
601
627
|
},
|
|
602
628
|
type: [],
|
|
603
629
|
tags: []
|
|
604
|
-
},
|
|
630
|
+
}, Ue = {
|
|
605
631
|
id: "chart_js",
|
|
606
632
|
name: {
|
|
607
633
|
[e.EN_US]: "Chart.js"
|
|
@@ -614,7 +640,7 @@ const e = {
|
|
|
614
640
|
},
|
|
615
641
|
type: [],
|
|
616
642
|
tags: []
|
|
617
|
-
},
|
|
643
|
+
}, ce = {
|
|
618
644
|
id: "ci_cd",
|
|
619
645
|
name: {
|
|
620
646
|
[e.EN_US]: "CI/CD"
|
|
@@ -627,7 +653,7 @@ const e = {
|
|
|
627
653
|
},
|
|
628
654
|
type: [],
|
|
629
655
|
tags: []
|
|
630
|
-
},
|
|
656
|
+
}, re = {
|
|
631
657
|
id: "circle_ci",
|
|
632
658
|
name: {
|
|
633
659
|
[e.EN_US]: "CircleCI"
|
|
@@ -640,7 +666,7 @@ const e = {
|
|
|
640
666
|
},
|
|
641
667
|
type: [],
|
|
642
668
|
tags: []
|
|
643
|
-
},
|
|
669
|
+
}, ge = {
|
|
644
670
|
id: "claude_code",
|
|
645
671
|
name: {
|
|
646
672
|
[e.EN_US]: "Claude Code"
|
|
@@ -653,7 +679,7 @@ const e = {
|
|
|
653
679
|
},
|
|
654
680
|
type: [],
|
|
655
681
|
tags: []
|
|
656
|
-
},
|
|
682
|
+
}, me = {
|
|
657
683
|
id: "clean_code",
|
|
658
684
|
name: {
|
|
659
685
|
[e.EN_US]: "Clean Code"
|
|
@@ -679,7 +705,7 @@ const e = {
|
|
|
679
705
|
},
|
|
680
706
|
type: [i.language],
|
|
681
707
|
tags: []
|
|
682
|
-
},
|
|
708
|
+
}, be = {
|
|
683
709
|
id: "cloudflare",
|
|
684
710
|
name: {
|
|
685
711
|
[e.EN_US]: "Cloudflare"
|
|
@@ -692,7 +718,7 @@ const e = {
|
|
|
692
718
|
},
|
|
693
719
|
type: [],
|
|
694
720
|
tags: []
|
|
695
|
-
},
|
|
721
|
+
}, ye = {
|
|
696
722
|
id: "codacy",
|
|
697
723
|
name: {
|
|
698
724
|
[e.EN_US]: "Codacy"
|
|
@@ -705,7 +731,7 @@ const e = {
|
|
|
705
731
|
},
|
|
706
732
|
type: [],
|
|
707
733
|
tags: []
|
|
708
|
-
},
|
|
734
|
+
}, fe = {
|
|
709
735
|
id: "codeigniter",
|
|
710
736
|
name: {
|
|
711
737
|
[e.EN_US]: "CodeIgniter"
|
|
@@ -718,7 +744,7 @@ const e = {
|
|
|
718
744
|
},
|
|
719
745
|
type: [],
|
|
720
746
|
tags: []
|
|
721
|
-
},
|
|
747
|
+
}, ue = {
|
|
722
748
|
id: "confluence",
|
|
723
749
|
name: {
|
|
724
750
|
[e.EN_US]: "Confluence"
|
|
@@ -731,10 +757,12 @@ const e = {
|
|
|
731
757
|
},
|
|
732
758
|
type: [],
|
|
733
759
|
tags: []
|
|
734
|
-
},
|
|
760
|
+
}, he = {
|
|
735
761
|
id: "contentful",
|
|
736
762
|
name: {
|
|
737
|
-
[e.EN_US]: "Contentful"
|
|
763
|
+
[e.EN_US]: "Contentful",
|
|
764
|
+
[e.EN_GB]: e.EN_US,
|
|
765
|
+
[e.DE_DE]: e.EN_US
|
|
738
766
|
},
|
|
739
767
|
label: {
|
|
740
768
|
[e.EN_US]: ""
|
|
@@ -742,7 +770,7 @@ const e = {
|
|
|
742
770
|
definition: {
|
|
743
771
|
[e.EN_US]: ""
|
|
744
772
|
},
|
|
745
|
-
type: [],
|
|
773
|
+
type: [i.cms],
|
|
746
774
|
tags: []
|
|
747
775
|
}, ke = {
|
|
748
776
|
id: "cplusplus",
|
|
@@ -757,10 +785,12 @@ const e = {
|
|
|
757
785
|
},
|
|
758
786
|
type: [i.language],
|
|
759
787
|
tags: []
|
|
760
|
-
},
|
|
788
|
+
}, De = {
|
|
761
789
|
id: "craft_cms",
|
|
762
790
|
name: {
|
|
763
|
-
[e.EN_US]: "Craft CMS"
|
|
791
|
+
[e.EN_US]: "Craft CMS",
|
|
792
|
+
[e.EN_GB]: e.EN_US,
|
|
793
|
+
[e.DE_DE]: e.EN_US
|
|
764
794
|
},
|
|
765
795
|
label: {
|
|
766
796
|
[e.EN_US]: ""
|
|
@@ -768,7 +798,7 @@ const e = {
|
|
|
768
798
|
definition: {
|
|
769
799
|
[e.EN_US]: ""
|
|
770
800
|
},
|
|
771
|
-
type: [],
|
|
801
|
+
type: [i.cms],
|
|
772
802
|
tags: []
|
|
773
803
|
}, we = {
|
|
774
804
|
id: "cs_cart",
|
|
@@ -783,7 +813,7 @@ const e = {
|
|
|
783
813
|
},
|
|
784
814
|
type: [],
|
|
785
815
|
tags: []
|
|
786
|
-
},
|
|
816
|
+
}, ve = {
|
|
787
817
|
id: "css",
|
|
788
818
|
name: {
|
|
789
819
|
[e.EN_US]: "CSS"
|
|
@@ -796,7 +826,7 @@ const e = {
|
|
|
796
826
|
},
|
|
797
827
|
type: [i.language],
|
|
798
828
|
tags: []
|
|
799
|
-
},
|
|
829
|
+
}, Ae = {
|
|
800
830
|
id: "css_in_js",
|
|
801
831
|
name: {
|
|
802
832
|
[e.EN_US]: "CSS-in-JS"
|
|
@@ -809,7 +839,7 @@ const e = {
|
|
|
809
839
|
},
|
|
810
840
|
type: [],
|
|
811
841
|
tags: []
|
|
812
|
-
},
|
|
842
|
+
}, Be = {
|
|
813
843
|
id: "css_modules",
|
|
814
844
|
name: {
|
|
815
845
|
[e.EN_US]: "CSS Modules"
|
|
@@ -822,7 +852,7 @@ const e = {
|
|
|
822
852
|
},
|
|
823
853
|
type: [],
|
|
824
854
|
tags: []
|
|
825
|
-
},
|
|
855
|
+
}, Le = {
|
|
826
856
|
id: "cucumber",
|
|
827
857
|
name: {
|
|
828
858
|
[e.EN_US]: "Cucumber"
|
|
@@ -835,7 +865,7 @@ const e = {
|
|
|
835
865
|
},
|
|
836
866
|
type: [],
|
|
837
867
|
tags: []
|
|
838
|
-
},
|
|
868
|
+
}, je = {
|
|
839
869
|
id: "cvs",
|
|
840
870
|
name: {
|
|
841
871
|
[e.EN_US]: "CVS"
|
|
@@ -848,7 +878,7 @@ const e = {
|
|
|
848
878
|
},
|
|
849
879
|
type: [],
|
|
850
880
|
tags: []
|
|
851
|
-
},
|
|
881
|
+
}, Ge = {
|
|
852
882
|
id: "cypress",
|
|
853
883
|
name: {
|
|
854
884
|
[e.EN_US]: "Cypress"
|
|
@@ -861,7 +891,7 @@ const e = {
|
|
|
861
891
|
},
|
|
862
892
|
type: [],
|
|
863
893
|
tags: []
|
|
864
|
-
},
|
|
894
|
+
}, Ce = {
|
|
865
895
|
id: "dart",
|
|
866
896
|
name: {
|
|
867
897
|
[e.EN_US]: "Dart"
|
|
@@ -887,7 +917,7 @@ const e = {
|
|
|
887
917
|
},
|
|
888
918
|
type: [],
|
|
889
919
|
tags: []
|
|
890
|
-
},
|
|
920
|
+
}, ze = {
|
|
891
921
|
id: "digital_ocean",
|
|
892
922
|
name: {
|
|
893
923
|
[e.EN_US]: "Digital Ocean"
|
|
@@ -913,7 +943,7 @@ const e = {
|
|
|
913
943
|
},
|
|
914
944
|
type: [],
|
|
915
945
|
tags: []
|
|
916
|
-
},
|
|
946
|
+
}, Oe = {
|
|
917
947
|
id: "docusaurus",
|
|
918
948
|
name: {
|
|
919
949
|
[e.EN_US]: "Docusaurus"
|
|
@@ -939,7 +969,7 @@ const e = {
|
|
|
939
969
|
},
|
|
940
970
|
type: [],
|
|
941
971
|
tags: []
|
|
942
|
-
},
|
|
972
|
+
}, Pe = {
|
|
943
973
|
id: "dreamweaver",
|
|
944
974
|
name: {
|
|
945
975
|
[e.EN_US]: "Dreamweaver"
|
|
@@ -965,20 +995,31 @@ const e = {
|
|
|
965
995
|
},
|
|
966
996
|
type: [],
|
|
967
997
|
tags: []
|
|
968
|
-
},
|
|
998
|
+
}, Re = {
|
|
969
999
|
id: "e2e",
|
|
970
1000
|
name: {
|
|
971
|
-
[e.EN_US]: "End-to-end Testing"
|
|
1001
|
+
[e.EN_US]: "End-to-end Testing",
|
|
1002
|
+
[e.EN_GB]: e.EN_US,
|
|
1003
|
+
[e.DE_DE]: "Ende-zu-Ende-Tests"
|
|
1004
|
+
},
|
|
1005
|
+
altName: {
|
|
1006
|
+
[e.EN_US]: "E2E Testing",
|
|
1007
|
+
[e.EN_GB]: e.EN_US,
|
|
1008
|
+
[e.DE_DE]: "E2E-Tests"
|
|
972
1009
|
},
|
|
973
1010
|
label: {
|
|
974
|
-
[e.EN_US]: "Testing Methodology"
|
|
1011
|
+
[e.EN_US]: "Testing Methodology",
|
|
1012
|
+
[e.EN_GB]: e.EN_US,
|
|
1013
|
+
[e.DE_DE]: "Testmethodik"
|
|
975
1014
|
},
|
|
976
1015
|
definition: {
|
|
977
|
-
[e.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."
|
|
1016
|
+
[e.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.",
|
|
1017
|
+
[e.EN_GB]: e.EN_US,
|
|
1018
|
+
[e.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."
|
|
978
1019
|
},
|
|
979
1020
|
type: [i.concept, i.methodology],
|
|
980
|
-
tags: [
|
|
981
|
-
},
|
|
1021
|
+
tags: [o.testing, o.automation, o.qa, o.e2e]
|
|
1022
|
+
}, Ie = {
|
|
982
1023
|
id: "encryption",
|
|
983
1024
|
name: {
|
|
984
1025
|
[e.EN_US]: "Encryption"
|
|
@@ -991,7 +1032,7 @@ const e = {
|
|
|
991
1032
|
},
|
|
992
1033
|
type: [],
|
|
993
1034
|
tags: []
|
|
994
|
-
},
|
|
1035
|
+
}, Je = {
|
|
995
1036
|
id: "erlang",
|
|
996
1037
|
name: {
|
|
997
1038
|
[e.EN_US]: "Erlang"
|
|
@@ -1004,7 +1045,7 @@ const e = {
|
|
|
1004
1045
|
},
|
|
1005
1046
|
type: [i.language],
|
|
1006
1047
|
tags: []
|
|
1007
|
-
},
|
|
1048
|
+
}, Ke = {
|
|
1008
1049
|
id: "es_build",
|
|
1009
1050
|
name: {
|
|
1010
1051
|
[e.EN_US]: "esbuild"
|
|
@@ -1017,7 +1058,7 @@ const e = {
|
|
|
1017
1058
|
},
|
|
1018
1059
|
type: [],
|
|
1019
1060
|
tags: []
|
|
1020
|
-
},
|
|
1061
|
+
}, We = {
|
|
1021
1062
|
id: "eslint",
|
|
1022
1063
|
name: {
|
|
1023
1064
|
[e.EN_US]: "ESLint"
|
|
@@ -1043,7 +1084,7 @@ const e = {
|
|
|
1043
1084
|
},
|
|
1044
1085
|
type: [],
|
|
1045
1086
|
tags: []
|
|
1046
|
-
},
|
|
1087
|
+
}, He = {
|
|
1047
1088
|
id: "express",
|
|
1048
1089
|
name: {
|
|
1049
1090
|
[e.EN_US]: "Express"
|
|
@@ -1056,10 +1097,12 @@ const e = {
|
|
|
1056
1097
|
},
|
|
1057
1098
|
type: [],
|
|
1058
1099
|
tags: []
|
|
1059
|
-
},
|
|
1100
|
+
}, Ve = {
|
|
1060
1101
|
id: "expression_engine",
|
|
1061
1102
|
name: {
|
|
1062
|
-
[e.EN_US]: "ExpressionEngine
|
|
1103
|
+
[e.EN_US]: "ExpressionEngine",
|
|
1104
|
+
[e.EN_GB]: e.EN_US,
|
|
1105
|
+
[e.DE_DE]: e.EN_US
|
|
1063
1106
|
},
|
|
1064
1107
|
label: {
|
|
1065
1108
|
[e.EN_US]: ""
|
|
@@ -1067,7 +1110,7 @@ const e = {
|
|
|
1067
1110
|
definition: {
|
|
1068
1111
|
[e.EN_US]: ""
|
|
1069
1112
|
},
|
|
1070
|
-
type: [],
|
|
1113
|
+
type: [i.cms],
|
|
1071
1114
|
tags: []
|
|
1072
1115
|
}, Qe = {
|
|
1073
1116
|
id: "f_sharp",
|
|
@@ -1082,7 +1125,7 @@ const e = {
|
|
|
1082
1125
|
},
|
|
1083
1126
|
type: [i.language],
|
|
1084
1127
|
tags: []
|
|
1085
|
-
},
|
|
1128
|
+
}, Ye = {
|
|
1086
1129
|
id: "fhir",
|
|
1087
1130
|
name: {
|
|
1088
1131
|
[e.EN_US]: "FHIR"
|
|
@@ -1095,7 +1138,7 @@ const e = {
|
|
|
1095
1138
|
},
|
|
1096
1139
|
type: [],
|
|
1097
1140
|
tags: []
|
|
1098
|
-
},
|
|
1141
|
+
}, Ze = {
|
|
1099
1142
|
id: "figma",
|
|
1100
1143
|
name: {
|
|
1101
1144
|
[e.EN_US]: "Figma"
|
|
@@ -1108,7 +1151,7 @@ const e = {
|
|
|
1108
1151
|
},
|
|
1109
1152
|
type: [],
|
|
1110
1153
|
tags: []
|
|
1111
|
-
},
|
|
1154
|
+
}, $e = {
|
|
1112
1155
|
id: "filezilla",
|
|
1113
1156
|
name: {
|
|
1114
1157
|
[e.EN_US]: "FileZilla"
|
|
@@ -1134,10 +1177,12 @@ const e = {
|
|
|
1134
1177
|
},
|
|
1135
1178
|
type: [],
|
|
1136
1179
|
tags: []
|
|
1137
|
-
},
|
|
1180
|
+
}, ei = {
|
|
1138
1181
|
id: "flamelink",
|
|
1139
1182
|
name: {
|
|
1140
|
-
[e.EN_US]: "Flamelink
|
|
1183
|
+
[e.EN_US]: "Flamelink",
|
|
1184
|
+
[e.EN_GB]: e.EN_US,
|
|
1185
|
+
[e.DE_DE]: e.EN_US
|
|
1141
1186
|
},
|
|
1142
1187
|
label: {
|
|
1143
1188
|
[e.EN_US]: ""
|
|
@@ -1145,9 +1190,9 @@ const e = {
|
|
|
1145
1190
|
definition: {
|
|
1146
1191
|
[e.EN_US]: ""
|
|
1147
1192
|
},
|
|
1148
|
-
type: [],
|
|
1193
|
+
type: [i.cms],
|
|
1149
1194
|
tags: []
|
|
1150
|
-
},
|
|
1195
|
+
}, ii = {
|
|
1151
1196
|
id: "flutter",
|
|
1152
1197
|
name: {
|
|
1153
1198
|
[e.EN_US]: "Flutter"
|
|
@@ -1160,7 +1205,7 @@ const e = {
|
|
|
1160
1205
|
},
|
|
1161
1206
|
type: [],
|
|
1162
1207
|
tags: []
|
|
1163
|
-
},
|
|
1208
|
+
}, ti = {
|
|
1164
1209
|
id: "fortran",
|
|
1165
1210
|
name: {
|
|
1166
1211
|
[e.EN_US]: "Fortran"
|
|
@@ -1173,7 +1218,7 @@ const e = {
|
|
|
1173
1218
|
},
|
|
1174
1219
|
type: [i.language],
|
|
1175
1220
|
tags: []
|
|
1176
|
-
},
|
|
1221
|
+
}, ni = {
|
|
1177
1222
|
id: "foundation",
|
|
1178
1223
|
name: {
|
|
1179
1224
|
[e.EN_US]: "Foundation"
|
|
@@ -1186,7 +1231,7 @@ const e = {
|
|
|
1186
1231
|
},
|
|
1187
1232
|
type: [],
|
|
1188
1233
|
tags: []
|
|
1189
|
-
},
|
|
1234
|
+
}, ai = {
|
|
1190
1235
|
id: "ftp",
|
|
1191
1236
|
name: {
|
|
1192
1237
|
[e.EN_US]: "FTP"
|
|
@@ -1199,7 +1244,7 @@ const e = {
|
|
|
1199
1244
|
},
|
|
1200
1245
|
type: [],
|
|
1201
1246
|
tags: []
|
|
1202
|
-
},
|
|
1247
|
+
}, si = {
|
|
1203
1248
|
id: "gatsby",
|
|
1204
1249
|
name: {
|
|
1205
1250
|
[e.EN_US]: "Gatsby"
|
|
@@ -1212,7 +1257,7 @@ const e = {
|
|
|
1212
1257
|
},
|
|
1213
1258
|
type: [],
|
|
1214
1259
|
tags: []
|
|
1215
|
-
},
|
|
1260
|
+
}, _i = {
|
|
1216
1261
|
id: "gcp",
|
|
1217
1262
|
name: {
|
|
1218
1263
|
[e.EN_US]: "GCP"
|
|
@@ -1251,7 +1296,7 @@ const e = {
|
|
|
1251
1296
|
},
|
|
1252
1297
|
type: [],
|
|
1253
1298
|
tags: []
|
|
1254
|
-
},
|
|
1299
|
+
}, Ei = {
|
|
1255
1300
|
id: "github_actions",
|
|
1256
1301
|
name: {
|
|
1257
1302
|
[e.EN_US]: "GitHub Actions"
|
|
@@ -1264,7 +1309,7 @@ const e = {
|
|
|
1264
1309
|
},
|
|
1265
1310
|
type: [],
|
|
1266
1311
|
tags: []
|
|
1267
|
-
},
|
|
1312
|
+
}, Si = {
|
|
1268
1313
|
id: "gitlab",
|
|
1269
1314
|
name: {
|
|
1270
1315
|
[e.EN_US]: "GitLab"
|
|
@@ -1277,7 +1322,7 @@ const e = {
|
|
|
1277
1322
|
},
|
|
1278
1323
|
type: [],
|
|
1279
1324
|
tags: []
|
|
1280
|
-
},
|
|
1325
|
+
}, li = {
|
|
1281
1326
|
id: "gitlab_ci",
|
|
1282
1327
|
name: {
|
|
1283
1328
|
[e.EN_US]: "GitLab CI"
|
|
@@ -1290,7 +1335,7 @@ const e = {
|
|
|
1290
1335
|
},
|
|
1291
1336
|
type: [],
|
|
1292
1337
|
tags: []
|
|
1293
|
-
},
|
|
1338
|
+
}, Ni = {
|
|
1294
1339
|
id: "golang",
|
|
1295
1340
|
name: {
|
|
1296
1341
|
[e.EN_US]: "Go"
|
|
@@ -1303,7 +1348,7 @@ const e = {
|
|
|
1303
1348
|
},
|
|
1304
1349
|
type: [i.language],
|
|
1305
1350
|
tags: []
|
|
1306
|
-
},
|
|
1351
|
+
}, Ui = {
|
|
1307
1352
|
id: "google_analytics",
|
|
1308
1353
|
name: {
|
|
1309
1354
|
[e.EN_US]: "Google Analytics"
|
|
@@ -1316,7 +1361,7 @@ const e = {
|
|
|
1316
1361
|
},
|
|
1317
1362
|
type: [],
|
|
1318
1363
|
tags: []
|
|
1319
|
-
},
|
|
1364
|
+
}, ci = {
|
|
1320
1365
|
id: "google_app_engine",
|
|
1321
1366
|
name: {
|
|
1322
1367
|
[e.EN_US]: "Google App Engine"
|
|
@@ -1329,7 +1374,7 @@ const e = {
|
|
|
1329
1374
|
},
|
|
1330
1375
|
type: [],
|
|
1331
1376
|
tags: []
|
|
1332
|
-
},
|
|
1377
|
+
}, ri = {
|
|
1333
1378
|
id: "google_business",
|
|
1334
1379
|
name: {
|
|
1335
1380
|
[e.EN_US]: "Google Business"
|
|
@@ -1342,7 +1387,7 @@ const e = {
|
|
|
1342
1387
|
},
|
|
1343
1388
|
type: [],
|
|
1344
1389
|
tags: []
|
|
1345
|
-
},
|
|
1390
|
+
}, gi = {
|
|
1346
1391
|
id: "google_maps_api",
|
|
1347
1392
|
name: {
|
|
1348
1393
|
[e.EN_US]: "Google Maps API"
|
|
@@ -1355,7 +1400,7 @@ const e = {
|
|
|
1355
1400
|
},
|
|
1356
1401
|
type: [],
|
|
1357
1402
|
tags: []
|
|
1358
|
-
},
|
|
1403
|
+
}, mi = {
|
|
1359
1404
|
id: "graphql",
|
|
1360
1405
|
name: {
|
|
1361
1406
|
[e.EN_US]: "GraphQL"
|
|
@@ -1381,7 +1426,7 @@ const e = {
|
|
|
1381
1426
|
},
|
|
1382
1427
|
type: [i.language],
|
|
1383
1428
|
tags: []
|
|
1384
|
-
},
|
|
1429
|
+
}, bi = {
|
|
1385
1430
|
id: "grunt",
|
|
1386
1431
|
name: {
|
|
1387
1432
|
[e.EN_US]: "Grunt"
|
|
@@ -1394,7 +1439,7 @@ const e = {
|
|
|
1394
1439
|
},
|
|
1395
1440
|
type: [],
|
|
1396
1441
|
tags: []
|
|
1397
|
-
},
|
|
1442
|
+
}, yi = {
|
|
1398
1443
|
id: "gulp",
|
|
1399
1444
|
name: {
|
|
1400
1445
|
[e.EN_US]: "Gulp"
|
|
@@ -1407,7 +1452,7 @@ const e = {
|
|
|
1407
1452
|
},
|
|
1408
1453
|
type: [],
|
|
1409
1454
|
tags: []
|
|
1410
|
-
},
|
|
1455
|
+
}, fi = {
|
|
1411
1456
|
id: "handlebars",
|
|
1412
1457
|
name: {
|
|
1413
1458
|
[e.EN_US]: "Handlebars"
|
|
@@ -1420,7 +1465,7 @@ const e = {
|
|
|
1420
1465
|
},
|
|
1421
1466
|
type: [],
|
|
1422
1467
|
tags: []
|
|
1423
|
-
},
|
|
1468
|
+
}, ui = {
|
|
1424
1469
|
id: "handsontable",
|
|
1425
1470
|
name: {
|
|
1426
1471
|
[e.EN_US]: "Handsontable"
|
|
@@ -1433,7 +1478,7 @@ const e = {
|
|
|
1433
1478
|
},
|
|
1434
1479
|
type: [],
|
|
1435
1480
|
tags: []
|
|
1436
|
-
},
|
|
1481
|
+
}, hi = {
|
|
1437
1482
|
id: "haskell",
|
|
1438
1483
|
name: {
|
|
1439
1484
|
[e.EN_US]: "Haskell"
|
|
@@ -1459,7 +1504,7 @@ const e = {
|
|
|
1459
1504
|
},
|
|
1460
1505
|
type: [],
|
|
1461
1506
|
tags: []
|
|
1462
|
-
},
|
|
1507
|
+
}, Di = {
|
|
1463
1508
|
id: "hl7",
|
|
1464
1509
|
name: {
|
|
1465
1510
|
[e.EN_US]: "HL7"
|
|
@@ -1485,7 +1530,7 @@ const e = {
|
|
|
1485
1530
|
},
|
|
1486
1531
|
type: [i.language],
|
|
1487
1532
|
tags: []
|
|
1488
|
-
},
|
|
1533
|
+
}, vi = {
|
|
1489
1534
|
id: "htmx",
|
|
1490
1535
|
name: {
|
|
1491
1536
|
[e.EN_US]: "HTMX"
|
|
@@ -1498,7 +1543,7 @@ const e = {
|
|
|
1498
1543
|
},
|
|
1499
1544
|
type: [],
|
|
1500
1545
|
tags: []
|
|
1501
|
-
},
|
|
1546
|
+
}, Ai = {
|
|
1502
1547
|
id: "i18n",
|
|
1503
1548
|
name: {
|
|
1504
1549
|
[e.EN_US]: "i18n"
|
|
@@ -1511,7 +1556,7 @@ const e = {
|
|
|
1511
1556
|
},
|
|
1512
1557
|
type: [],
|
|
1513
1558
|
tags: []
|
|
1514
|
-
},
|
|
1559
|
+
}, Bi = {
|
|
1515
1560
|
id: "ionic",
|
|
1516
1561
|
name: {
|
|
1517
1562
|
[e.EN_US]: "Ionic Framework"
|
|
@@ -1524,7 +1569,7 @@ const e = {
|
|
|
1524
1569
|
},
|
|
1525
1570
|
type: [],
|
|
1526
1571
|
tags: []
|
|
1527
|
-
},
|
|
1572
|
+
}, Li = {
|
|
1528
1573
|
id: "jasmine",
|
|
1529
1574
|
name: {
|
|
1530
1575
|
[e.EN_US]: "Jasmine"
|
|
@@ -1537,7 +1582,7 @@ const e = {
|
|
|
1537
1582
|
},
|
|
1538
1583
|
type: [],
|
|
1539
1584
|
tags: []
|
|
1540
|
-
},
|
|
1585
|
+
}, ji = {
|
|
1541
1586
|
id: "java",
|
|
1542
1587
|
name: {
|
|
1543
1588
|
[e.EN_US]: "Java"
|
|
@@ -1550,7 +1595,7 @@ const e = {
|
|
|
1550
1595
|
},
|
|
1551
1596
|
type: [i.language],
|
|
1552
1597
|
tags: []
|
|
1553
|
-
},
|
|
1598
|
+
}, Gi = {
|
|
1554
1599
|
id: "javascript",
|
|
1555
1600
|
name: {
|
|
1556
1601
|
[e.EN_US]: "JavaScript"
|
|
@@ -1563,12 +1608,12 @@ const e = {
|
|
|
1563
1608
|
[e.EN_US]: ""
|
|
1564
1609
|
},
|
|
1565
1610
|
type: [i.language],
|
|
1566
|
-
tags: [
|
|
1611
|
+
tags: [o.frontend, o.backend, o.open_source],
|
|
1567
1612
|
links: {
|
|
1568
1613
|
website: "https://tc39.es/ecma262",
|
|
1569
1614
|
wikipedia: "https://en.wikipedia.org/wiki/JavaScript"
|
|
1570
1615
|
}
|
|
1571
|
-
},
|
|
1616
|
+
}, Ci = {
|
|
1572
1617
|
id: "jenkins",
|
|
1573
1618
|
name: {
|
|
1574
1619
|
[e.EN_US]: "Jenkins"
|
|
@@ -1594,7 +1639,7 @@ const e = {
|
|
|
1594
1639
|
},
|
|
1595
1640
|
type: [],
|
|
1596
1641
|
tags: []
|
|
1597
|
-
},
|
|
1642
|
+
}, zi = {
|
|
1598
1643
|
id: "jira",
|
|
1599
1644
|
name: {
|
|
1600
1645
|
[e.EN_US]: "Jira"
|
|
@@ -1620,7 +1665,7 @@ const e = {
|
|
|
1620
1665
|
},
|
|
1621
1666
|
type: [],
|
|
1622
1667
|
tags: []
|
|
1623
|
-
},
|
|
1668
|
+
}, Oi = {
|
|
1624
1669
|
id: "js",
|
|
1625
1670
|
name: {
|
|
1626
1671
|
[e.EN_US]: "JavaScript"
|
|
@@ -1646,7 +1691,7 @@ const e = {
|
|
|
1646
1691
|
},
|
|
1647
1692
|
type: [],
|
|
1648
1693
|
tags: []
|
|
1649
|
-
},
|
|
1694
|
+
}, Pi = {
|
|
1650
1695
|
id: "karma",
|
|
1651
1696
|
name: {
|
|
1652
1697
|
[e.EN_US]: "Karma"
|
|
@@ -1672,7 +1717,7 @@ const e = {
|
|
|
1672
1717
|
},
|
|
1673
1718
|
type: [i.language],
|
|
1674
1719
|
tags: []
|
|
1675
|
-
},
|
|
1720
|
+
}, Ri = {
|
|
1676
1721
|
id: "kubernetes",
|
|
1677
1722
|
name: {
|
|
1678
1723
|
[e.EN_US]: "Kubernetes"
|
|
@@ -1685,7 +1730,7 @@ const e = {
|
|
|
1685
1730
|
},
|
|
1686
1731
|
type: [],
|
|
1687
1732
|
tags: []
|
|
1688
|
-
},
|
|
1733
|
+
}, Ii = {
|
|
1689
1734
|
id: "laravel",
|
|
1690
1735
|
name: {
|
|
1691
1736
|
[e.EN_US]: "Laravel"
|
|
@@ -1698,7 +1743,7 @@ const e = {
|
|
|
1698
1743
|
},
|
|
1699
1744
|
type: [],
|
|
1700
1745
|
tags: []
|
|
1701
|
-
},
|
|
1746
|
+
}, Ji = {
|
|
1702
1747
|
id: "legacy_migration",
|
|
1703
1748
|
name: {
|
|
1704
1749
|
[e.EN_US]: "Legacy Migration"
|
|
@@ -1711,7 +1756,7 @@ const e = {
|
|
|
1711
1756
|
},
|
|
1712
1757
|
type: [],
|
|
1713
1758
|
tags: []
|
|
1714
|
-
},
|
|
1759
|
+
}, Ki = {
|
|
1715
1760
|
id: "lexical",
|
|
1716
1761
|
name: {
|
|
1717
1762
|
[e.EN_US]: "Lexical"
|
|
@@ -1724,7 +1769,7 @@ const e = {
|
|
|
1724
1769
|
},
|
|
1725
1770
|
type: [],
|
|
1726
1771
|
tags: []
|
|
1727
|
-
},
|
|
1772
|
+
}, Wi = {
|
|
1728
1773
|
id: "linux",
|
|
1729
1774
|
name: {
|
|
1730
1775
|
[e.EN_US]: "Linux"
|
|
@@ -1750,7 +1795,7 @@ const e = {
|
|
|
1750
1795
|
},
|
|
1751
1796
|
type: [i.language],
|
|
1752
1797
|
tags: []
|
|
1753
|
-
},
|
|
1798
|
+
}, Hi = {
|
|
1754
1799
|
id: "mac_os",
|
|
1755
1800
|
name: {
|
|
1756
1801
|
[e.EN_US]: "Mac OS"
|
|
@@ -1763,7 +1808,7 @@ const e = {
|
|
|
1763
1808
|
},
|
|
1764
1809
|
type: [],
|
|
1765
1810
|
tags: []
|
|
1766
|
-
},
|
|
1811
|
+
}, Vi = {
|
|
1767
1812
|
id: "mail_blaze",
|
|
1768
1813
|
name: {
|
|
1769
1814
|
[e.EN_US]: "Mail Blaze"
|
|
@@ -1789,7 +1834,7 @@ const e = {
|
|
|
1789
1834
|
},
|
|
1790
1835
|
type: [],
|
|
1791
1836
|
tags: []
|
|
1792
|
-
},
|
|
1837
|
+
}, Yi = {
|
|
1793
1838
|
id: "make",
|
|
1794
1839
|
name: {
|
|
1795
1840
|
[e.EN_US]: "Make"
|
|
@@ -1802,7 +1847,7 @@ const e = {
|
|
|
1802
1847
|
},
|
|
1803
1848
|
type: [],
|
|
1804
1849
|
tags: []
|
|
1805
|
-
},
|
|
1850
|
+
}, Zi = {
|
|
1806
1851
|
id: "marionette",
|
|
1807
1852
|
name: {
|
|
1808
1853
|
[e.EN_US]: "Marionette.js"
|
|
@@ -1815,7 +1860,7 @@ const e = {
|
|
|
1815
1860
|
},
|
|
1816
1861
|
type: [],
|
|
1817
1862
|
tags: []
|
|
1818
|
-
},
|
|
1863
|
+
}, $i = {
|
|
1819
1864
|
id: "matlab",
|
|
1820
1865
|
name: {
|
|
1821
1866
|
[e.EN_US]: "MATLAB"
|
|
@@ -1841,7 +1886,7 @@ const e = {
|
|
|
1841
1886
|
},
|
|
1842
1887
|
type: [],
|
|
1843
1888
|
tags: []
|
|
1844
|
-
},
|
|
1889
|
+
}, et = {
|
|
1845
1890
|
id: "meta_mask",
|
|
1846
1891
|
name: {
|
|
1847
1892
|
[e.EN_US]: "MetaMask"
|
|
@@ -1854,7 +1899,7 @@ const e = {
|
|
|
1854
1899
|
},
|
|
1855
1900
|
type: [],
|
|
1856
1901
|
tags: []
|
|
1857
|
-
},
|
|
1902
|
+
}, it = {
|
|
1858
1903
|
id: "microsoft_sql_server",
|
|
1859
1904
|
name: {
|
|
1860
1905
|
[e.EN_US]: "Microsoft SQL Server"
|
|
@@ -1867,7 +1912,7 @@ const e = {
|
|
|
1867
1912
|
},
|
|
1868
1913
|
type: [],
|
|
1869
1914
|
tags: []
|
|
1870
|
-
},
|
|
1915
|
+
}, tt = {
|
|
1871
1916
|
id: "mongo_db",
|
|
1872
1917
|
name: {
|
|
1873
1918
|
[e.EN_US]: "MongoDB"
|
|
@@ -1880,7 +1925,7 @@ const e = {
|
|
|
1880
1925
|
},
|
|
1881
1926
|
type: [],
|
|
1882
1927
|
tags: []
|
|
1883
|
-
},
|
|
1928
|
+
}, nt = {
|
|
1884
1929
|
id: "mui",
|
|
1885
1930
|
name: {
|
|
1886
1931
|
[e.EN_US]: "Material UI"
|
|
@@ -1893,7 +1938,7 @@ const e = {
|
|
|
1893
1938
|
},
|
|
1894
1939
|
type: [],
|
|
1895
1940
|
tags: []
|
|
1896
|
-
},
|
|
1941
|
+
}, at = {
|
|
1897
1942
|
id: "mysql",
|
|
1898
1943
|
name: {
|
|
1899
1944
|
[e.EN_US]: "MySQL"
|
|
@@ -1906,7 +1951,7 @@ const e = {
|
|
|
1906
1951
|
},
|
|
1907
1952
|
type: [],
|
|
1908
1953
|
tags: []
|
|
1909
|
-
},
|
|
1954
|
+
}, st = {
|
|
1910
1955
|
id: "navicat",
|
|
1911
1956
|
name: {
|
|
1912
1957
|
[e.EN_US]: "Navicat"
|
|
@@ -1919,7 +1964,7 @@ const e = {
|
|
|
1919
1964
|
},
|
|
1920
1965
|
type: [],
|
|
1921
1966
|
tags: []
|
|
1922
|
-
},
|
|
1967
|
+
}, _t = {
|
|
1923
1968
|
id: "nest_js",
|
|
1924
1969
|
name: {
|
|
1925
1970
|
[e.EN_US]: "NestJS"
|
|
@@ -1958,7 +2003,7 @@ const e = {
|
|
|
1958
2003
|
},
|
|
1959
2004
|
type: [],
|
|
1960
2005
|
tags: []
|
|
1961
|
-
},
|
|
2006
|
+
}, Et = {
|
|
1962
2007
|
id: "new_relic",
|
|
1963
2008
|
name: {
|
|
1964
2009
|
[e.EN_US]: "New Relic"
|
|
@@ -1971,10 +2016,12 @@ const e = {
|
|
|
1971
2016
|
},
|
|
1972
2017
|
type: [],
|
|
1973
2018
|
tags: []
|
|
1974
|
-
},
|
|
2019
|
+
}, St = {
|
|
1975
2020
|
id: "next_js",
|
|
1976
2021
|
name: {
|
|
1977
|
-
[e.EN_US]: "Next.js"
|
|
2022
|
+
[e.EN_US]: "Next.js",
|
|
2023
|
+
[e.EN_GB]: e.EN_US,
|
|
2024
|
+
[e.DE_DE]: e.EN_US
|
|
1978
2025
|
},
|
|
1979
2026
|
label: {
|
|
1980
2027
|
[e.EN_US]: ""
|
|
@@ -1982,9 +2029,9 @@ const e = {
|
|
|
1982
2029
|
definition: {
|
|
1983
2030
|
[e.EN_US]: ""
|
|
1984
2031
|
},
|
|
1985
|
-
type: [],
|
|
2032
|
+
type: [i.framework],
|
|
1986
2033
|
tags: []
|
|
1987
|
-
},
|
|
2034
|
+
}, lt = {
|
|
1988
2035
|
id: "nexudus",
|
|
1989
2036
|
name: {
|
|
1990
2037
|
[e.EN_US]: "Nexudus"
|
|
@@ -1997,7 +2044,7 @@ const e = {
|
|
|
1997
2044
|
},
|
|
1998
2045
|
type: [],
|
|
1999
2046
|
tags: []
|
|
2000
|
-
},
|
|
2047
|
+
}, Nt = {
|
|
2001
2048
|
id: "nft",
|
|
2002
2049
|
name: {
|
|
2003
2050
|
[e.EN_US]: "NFT"
|
|
@@ -2010,7 +2057,7 @@ const e = {
|
|
|
2010
2057
|
},
|
|
2011
2058
|
type: [],
|
|
2012
2059
|
tags: []
|
|
2013
|
-
},
|
|
2060
|
+
}, Ut = {
|
|
2014
2061
|
id: "nginx",
|
|
2015
2062
|
name: {
|
|
2016
2063
|
[e.EN_US]: "Nginx"
|
|
@@ -2023,7 +2070,7 @@ const e = {
|
|
|
2023
2070
|
},
|
|
2024
2071
|
type: [],
|
|
2025
2072
|
tags: []
|
|
2026
|
-
},
|
|
2073
|
+
}, ct = {
|
|
2027
2074
|
id: "nightsbridge",
|
|
2028
2075
|
name: {
|
|
2029
2076
|
[e.EN_US]: "Nightsbridge"
|
|
@@ -2036,7 +2083,7 @@ const e = {
|
|
|
2036
2083
|
},
|
|
2037
2084
|
type: [],
|
|
2038
2085
|
tags: []
|
|
2039
|
-
},
|
|
2086
|
+
}, rt = {
|
|
2040
2087
|
id: "node",
|
|
2041
2088
|
name: {
|
|
2042
2089
|
[e.EN_US]: "Node.js"
|
|
@@ -2049,7 +2096,7 @@ const e = {
|
|
|
2049
2096
|
},
|
|
2050
2097
|
type: [],
|
|
2051
2098
|
tags: []
|
|
2052
|
-
},
|
|
2099
|
+
}, gt = {
|
|
2053
2100
|
id: "node_js",
|
|
2054
2101
|
name: {
|
|
2055
2102
|
[e.EN_US]: "Node.js"
|
|
@@ -2063,11 +2110,11 @@ const e = {
|
|
|
2063
2110
|
[e.DE_DE]: "Node.js ist eine kostenlose, Open-Source, plattformübergreifende JavaScript-Laufzeitumgebung, die es Entwicklern ermöglicht, Server, Webanwendungen, Befehlszeilentools und Skripte zu erstellen."
|
|
2064
2111
|
},
|
|
2065
2112
|
type: [i.runtime_environment],
|
|
2066
|
-
tags: [
|
|
2113
|
+
tags: [o.backend],
|
|
2067
2114
|
links: {
|
|
2068
2115
|
website: "https://nodejs.org"
|
|
2069
2116
|
}
|
|
2070
|
-
},
|
|
2117
|
+
}, mt = {
|
|
2071
2118
|
id: "node_mailer",
|
|
2072
2119
|
name: {
|
|
2073
2120
|
[e.EN_US]: "Nodemailer"
|
|
@@ -2093,7 +2140,7 @@ const e = {
|
|
|
2093
2140
|
},
|
|
2094
2141
|
type: [],
|
|
2095
2142
|
tags: []
|
|
2096
|
-
},
|
|
2143
|
+
}, bt = {
|
|
2097
2144
|
id: "nx",
|
|
2098
2145
|
name: {
|
|
2099
2146
|
[e.EN_US]: "Nx"
|
|
@@ -2106,7 +2153,7 @@ const e = {
|
|
|
2106
2153
|
},
|
|
2107
2154
|
type: [],
|
|
2108
2155
|
tags: []
|
|
2109
|
-
},
|
|
2156
|
+
}, yt = {
|
|
2110
2157
|
id: "objective_c",
|
|
2111
2158
|
name: {
|
|
2112
2159
|
[e.EN_US]: "Objective-C"
|
|
@@ -2119,7 +2166,7 @@ const e = {
|
|
|
2119
2166
|
},
|
|
2120
2167
|
type: [i.language],
|
|
2121
2168
|
tags: []
|
|
2122
|
-
},
|
|
2169
|
+
}, ft = {
|
|
2123
2170
|
id: "ocaml",
|
|
2124
2171
|
name: {
|
|
2125
2172
|
[e.EN_US]: "OCaml"
|
|
@@ -2132,7 +2179,7 @@ const e = {
|
|
|
2132
2179
|
},
|
|
2133
2180
|
type: [i.language],
|
|
2134
2181
|
tags: []
|
|
2135
|
-
},
|
|
2182
|
+
}, ut = {
|
|
2136
2183
|
id: "okta",
|
|
2137
2184
|
name: {
|
|
2138
2185
|
[e.EN_US]: "Okta"
|
|
@@ -2145,7 +2192,7 @@ const e = {
|
|
|
2145
2192
|
},
|
|
2146
2193
|
type: [],
|
|
2147
2194
|
tags: []
|
|
2148
|
-
},
|
|
2195
|
+
}, ht = {
|
|
2149
2196
|
id: "open_ai",
|
|
2150
2197
|
name: {
|
|
2151
2198
|
[e.EN_US]: "OpenAI"
|
|
@@ -2171,7 +2218,7 @@ const e = {
|
|
|
2171
2218
|
},
|
|
2172
2219
|
type: [],
|
|
2173
2220
|
tags: []
|
|
2174
|
-
},
|
|
2221
|
+
}, Dt = {
|
|
2175
2222
|
id: "pathlogix",
|
|
2176
2223
|
name: {
|
|
2177
2224
|
[e.EN_US]: "Pathlogix"
|
|
@@ -2197,7 +2244,7 @@ const e = {
|
|
|
2197
2244
|
},
|
|
2198
2245
|
type: [i.language],
|
|
2199
2246
|
tags: []
|
|
2200
|
-
},
|
|
2247
|
+
}, vt = {
|
|
2201
2248
|
id: "photoshop",
|
|
2202
2249
|
name: {
|
|
2203
2250
|
[e.EN_US]: "Photoshop"
|
|
@@ -2210,7 +2257,7 @@ const e = {
|
|
|
2210
2257
|
},
|
|
2211
2258
|
type: [],
|
|
2212
2259
|
tags: []
|
|
2213
|
-
},
|
|
2260
|
+
}, At = {
|
|
2214
2261
|
id: "php",
|
|
2215
2262
|
name: {
|
|
2216
2263
|
[e.EN_US]: "PHP"
|
|
@@ -2223,7 +2270,7 @@ const e = {
|
|
|
2223
2270
|
},
|
|
2224
2271
|
type: [i.language],
|
|
2225
2272
|
tags: []
|
|
2226
|
-
},
|
|
2273
|
+
}, Bt = {
|
|
2227
2274
|
id: "pnpm",
|
|
2228
2275
|
name: {
|
|
2229
2276
|
[e.EN_US]: "pnpm"
|
|
@@ -2236,7 +2283,7 @@ const e = {
|
|
|
2236
2283
|
},
|
|
2237
2284
|
type: [],
|
|
2238
2285
|
tags: []
|
|
2239
|
-
},
|
|
2286
|
+
}, Lt = {
|
|
2240
2287
|
id: "polyglot_js",
|
|
2241
2288
|
name: {
|
|
2242
2289
|
[e.EN_US]: "Polyglot.js"
|
|
@@ -2249,7 +2296,7 @@ const e = {
|
|
|
2249
2296
|
},
|
|
2250
2297
|
type: [],
|
|
2251
2298
|
tags: []
|
|
2252
|
-
},
|
|
2299
|
+
}, jt = {
|
|
2253
2300
|
id: "postgres",
|
|
2254
2301
|
name: {
|
|
2255
2302
|
[e.EN_US]: "PostgreSQL"
|
|
@@ -2262,7 +2309,7 @@ const e = {
|
|
|
2262
2309
|
},
|
|
2263
2310
|
type: [],
|
|
2264
2311
|
tags: []
|
|
2265
|
-
},
|
|
2312
|
+
}, Gt = {
|
|
2266
2313
|
id: "posthog",
|
|
2267
2314
|
name: {
|
|
2268
2315
|
[e.EN_US]: "PostHog"
|
|
@@ -2275,7 +2322,7 @@ const e = {
|
|
|
2275
2322
|
},
|
|
2276
2323
|
type: [],
|
|
2277
2324
|
tags: []
|
|
2278
|
-
},
|
|
2325
|
+
}, Ct = {
|
|
2279
2326
|
id: "prettier",
|
|
2280
2327
|
name: {
|
|
2281
2328
|
[e.EN_US]: "Prettier"
|
|
@@ -2301,7 +2348,7 @@ const e = {
|
|
|
2301
2348
|
},
|
|
2302
2349
|
type: [],
|
|
2303
2350
|
tags: []
|
|
2304
|
-
},
|
|
2351
|
+
}, zt = {
|
|
2305
2352
|
id: "pwa",
|
|
2306
2353
|
name: {
|
|
2307
2354
|
[e.EN_US]: "Progressive Web App (PWA)"
|
|
@@ -2327,7 +2374,7 @@ const e = {
|
|
|
2327
2374
|
},
|
|
2328
2375
|
type: [i.language],
|
|
2329
2376
|
tags: []
|
|
2330
|
-
},
|
|
2377
|
+
}, Ot = {
|
|
2331
2378
|
id: "quickbooks",
|
|
2332
2379
|
name: {
|
|
2333
2380
|
[e.EN_US]: "QuickBooks"
|
|
@@ -2353,7 +2400,7 @@ const e = {
|
|
|
2353
2400
|
},
|
|
2354
2401
|
type: [i.language],
|
|
2355
2402
|
tags: []
|
|
2356
|
-
},
|
|
2403
|
+
}, Pt = {
|
|
2357
2404
|
id: "react",
|
|
2358
2405
|
name: {
|
|
2359
2406
|
[e.EN_US]: "React"
|
|
@@ -2367,7 +2414,7 @@ const e = {
|
|
|
2367
2414
|
[e.DE_DE]: "Eine JavaScript-Bibliothek zum Erstellen komponentenbasierter Benutzeroberflächen."
|
|
2368
2415
|
},
|
|
2369
2416
|
type: [i.library],
|
|
2370
|
-
tags: [
|
|
2417
|
+
tags: [o.frontend, o.backend, o.javascript, o.open_source, o.ui_library],
|
|
2371
2418
|
links: {
|
|
2372
2419
|
website: "https://react.dev",
|
|
2373
2420
|
npm: "https://www.npmjs.com/package/react",
|
|
@@ -2375,7 +2422,7 @@ const e = {
|
|
|
2375
2422
|
wikipedia: "https://en.wikipedia.org/wiki/React_(software)"
|
|
2376
2423
|
},
|
|
2377
2424
|
sources: {
|
|
2378
|
-
definition:
|
|
2425
|
+
definition: Yn.official_website
|
|
2379
2426
|
}
|
|
2380
2427
|
}, Mt = {
|
|
2381
2428
|
id: "react_hook_form",
|
|
@@ -2390,7 +2437,7 @@ const e = {
|
|
|
2390
2437
|
},
|
|
2391
2438
|
type: [],
|
|
2392
2439
|
tags: []
|
|
2393
|
-
},
|
|
2440
|
+
}, Rt = {
|
|
2394
2441
|
id: "react_pdf",
|
|
2395
2442
|
name: {
|
|
2396
2443
|
[e.EN_US]: "React PDF"
|
|
@@ -2403,7 +2450,7 @@ const e = {
|
|
|
2403
2450
|
},
|
|
2404
2451
|
type: [],
|
|
2405
2452
|
tags: []
|
|
2406
|
-
},
|
|
2453
|
+
}, It = {
|
|
2407
2454
|
id: "react_testing_library",
|
|
2408
2455
|
name: {
|
|
2409
2456
|
[e.EN_US]: "React Testing Library"
|
|
@@ -2416,7 +2463,7 @@ const e = {
|
|
|
2416
2463
|
},
|
|
2417
2464
|
type: [],
|
|
2418
2465
|
tags: []
|
|
2419
|
-
},
|
|
2466
|
+
}, Jt = {
|
|
2420
2467
|
id: "redux",
|
|
2421
2468
|
name: {
|
|
2422
2469
|
[e.EN_US]: "Redux"
|
|
@@ -2429,7 +2476,7 @@ const e = {
|
|
|
2429
2476
|
},
|
|
2430
2477
|
type: [],
|
|
2431
2478
|
tags: []
|
|
2432
|
-
},
|
|
2479
|
+
}, Kt = {
|
|
2433
2480
|
id: "reflow_soldering",
|
|
2434
2481
|
name: {
|
|
2435
2482
|
[e.EN_US]: "Reflow Soldering"
|
|
@@ -2442,7 +2489,7 @@ const e = {
|
|
|
2442
2489
|
},
|
|
2443
2490
|
type: [],
|
|
2444
2491
|
tags: []
|
|
2445
|
-
},
|
|
2492
|
+
}, Wt = {
|
|
2446
2493
|
id: "resend",
|
|
2447
2494
|
name: {
|
|
2448
2495
|
[e.EN_US]: "Resend"
|
|
@@ -2468,7 +2515,7 @@ const e = {
|
|
|
2468
2515
|
},
|
|
2469
2516
|
type: [],
|
|
2470
2517
|
tags: []
|
|
2471
|
-
},
|
|
2518
|
+
}, Ht = {
|
|
2472
2519
|
id: "rsync",
|
|
2473
2520
|
name: {
|
|
2474
2521
|
[e.EN_US]: "rsync"
|
|
@@ -2481,7 +2528,7 @@ const e = {
|
|
|
2481
2528
|
},
|
|
2482
2529
|
type: [],
|
|
2483
2530
|
tags: []
|
|
2484
|
-
},
|
|
2531
|
+
}, Vt = {
|
|
2485
2532
|
id: "ruby",
|
|
2486
2533
|
name: {
|
|
2487
2534
|
[e.EN_US]: "Ruby"
|
|
@@ -2507,10 +2554,12 @@ const e = {
|
|
|
2507
2554
|
},
|
|
2508
2555
|
type: [i.language],
|
|
2509
2556
|
tags: []
|
|
2510
|
-
},
|
|
2557
|
+
}, Yt = {
|
|
2511
2558
|
id: "sanity",
|
|
2512
2559
|
name: {
|
|
2513
|
-
[e.EN_US]: "Sanity
|
|
2560
|
+
[e.EN_US]: "Sanity",
|
|
2561
|
+
[e.EN_GB]: e.EN_US,
|
|
2562
|
+
[e.DE_DE]: e.EN_US
|
|
2514
2563
|
},
|
|
2515
2564
|
label: {
|
|
2516
2565
|
[e.EN_US]: ""
|
|
@@ -2518,9 +2567,9 @@ const e = {
|
|
|
2518
2567
|
definition: {
|
|
2519
2568
|
[e.EN_US]: ""
|
|
2520
2569
|
},
|
|
2521
|
-
type: [],
|
|
2570
|
+
type: [i.cms],
|
|
2522
2571
|
tags: []
|
|
2523
|
-
},
|
|
2572
|
+
}, Zt = {
|
|
2524
2573
|
id: "sass",
|
|
2525
2574
|
name: {
|
|
2526
2575
|
[e.EN_US]: "SASS"
|
|
@@ -2533,7 +2582,7 @@ const e = {
|
|
|
2533
2582
|
},
|
|
2534
2583
|
type: [],
|
|
2535
2584
|
tags: []
|
|
2536
|
-
},
|
|
2585
|
+
}, $t = {
|
|
2537
2586
|
id: "scala",
|
|
2538
2587
|
name: {
|
|
2539
2588
|
[e.EN_US]: "Scala"
|
|
@@ -2559,7 +2608,7 @@ const e = {
|
|
|
2559
2608
|
},
|
|
2560
2609
|
type: [],
|
|
2561
2610
|
tags: []
|
|
2562
|
-
},
|
|
2611
|
+
}, en = {
|
|
2563
2612
|
id: "sendgrid",
|
|
2564
2613
|
name: {
|
|
2565
2614
|
[e.EN_US]: "SendGrid"
|
|
@@ -2572,7 +2621,7 @@ const e = {
|
|
|
2572
2621
|
},
|
|
2573
2622
|
type: [],
|
|
2574
2623
|
tags: []
|
|
2575
|
-
},
|
|
2624
|
+
}, tn = {
|
|
2576
2625
|
id: "sentry",
|
|
2577
2626
|
name: {
|
|
2578
2627
|
[e.EN_US]: "Sentry"
|
|
@@ -2585,7 +2634,7 @@ const e = {
|
|
|
2585
2634
|
},
|
|
2586
2635
|
type: [],
|
|
2587
2636
|
tags: []
|
|
2588
|
-
},
|
|
2637
|
+
}, nn = {
|
|
2589
2638
|
id: "service_workers",
|
|
2590
2639
|
name: {
|
|
2591
2640
|
[e.EN_US]: "Service Workers"
|
|
@@ -2598,7 +2647,7 @@ const e = {
|
|
|
2598
2647
|
},
|
|
2599
2648
|
type: [],
|
|
2600
2649
|
tags: []
|
|
2601
|
-
},
|
|
2650
|
+
}, an = {
|
|
2602
2651
|
id: "shadcn",
|
|
2603
2652
|
name: {
|
|
2604
2653
|
[e.EN_US]: "Shadcn"
|
|
@@ -2611,7 +2660,7 @@ const e = {
|
|
|
2611
2660
|
},
|
|
2612
2661
|
type: [],
|
|
2613
2662
|
tags: []
|
|
2614
|
-
},
|
|
2663
|
+
}, sn = {
|
|
2615
2664
|
id: "smarty",
|
|
2616
2665
|
name: {
|
|
2617
2666
|
[e.EN_US]: "Smarty"
|
|
@@ -2624,7 +2673,7 @@ const e = {
|
|
|
2624
2673
|
},
|
|
2625
2674
|
type: [],
|
|
2626
2675
|
tags: []
|
|
2627
|
-
},
|
|
2676
|
+
}, _n = {
|
|
2628
2677
|
id: "snyk",
|
|
2629
2678
|
name: {
|
|
2630
2679
|
[e.EN_US]: "Snyk"
|
|
@@ -2663,7 +2712,7 @@ const e = {
|
|
|
2663
2712
|
},
|
|
2664
2713
|
type: [],
|
|
2665
2714
|
tags: []
|
|
2666
|
-
},
|
|
2715
|
+
}, En = {
|
|
2667
2716
|
id: "sql",
|
|
2668
2717
|
name: {
|
|
2669
2718
|
[e.EN_US]: "SQL"
|
|
@@ -2676,7 +2725,7 @@ const e = {
|
|
|
2676
2725
|
},
|
|
2677
2726
|
type: [i.language],
|
|
2678
2727
|
tags: []
|
|
2679
|
-
},
|
|
2728
|
+
}, Sn = {
|
|
2680
2729
|
id: "sql_lite",
|
|
2681
2730
|
name: {
|
|
2682
2731
|
[e.EN_US]: "SQLite"
|
|
@@ -2689,7 +2738,7 @@ const e = {
|
|
|
2689
2738
|
},
|
|
2690
2739
|
type: [],
|
|
2691
2740
|
tags: []
|
|
2692
|
-
},
|
|
2741
|
+
}, ln = {
|
|
2693
2742
|
id: "ssh",
|
|
2694
2743
|
name: {
|
|
2695
2744
|
[e.EN_US]: "SSH"
|
|
@@ -2702,7 +2751,7 @@ const e = {
|
|
|
2702
2751
|
},
|
|
2703
2752
|
type: [],
|
|
2704
2753
|
tags: []
|
|
2705
|
-
},
|
|
2754
|
+
}, Nn = {
|
|
2706
2755
|
id: "storybook",
|
|
2707
2756
|
name: {
|
|
2708
2757
|
[e.EN_US]: "Storybook"
|
|
@@ -2715,7 +2764,7 @@ const e = {
|
|
|
2715
2764
|
},
|
|
2716
2765
|
type: [],
|
|
2717
2766
|
tags: []
|
|
2718
|
-
},
|
|
2767
|
+
}, Un = {
|
|
2719
2768
|
id: "stripe",
|
|
2720
2769
|
name: {
|
|
2721
2770
|
[e.EN_US]: "Stripe"
|
|
@@ -2728,7 +2777,7 @@ const e = {
|
|
|
2728
2777
|
},
|
|
2729
2778
|
type: [],
|
|
2730
2779
|
tags: []
|
|
2731
|
-
},
|
|
2780
|
+
}, cn = {
|
|
2732
2781
|
id: "styled_components",
|
|
2733
2782
|
name: {
|
|
2734
2783
|
[e.EN_US]: "Styled Components"
|
|
@@ -2741,7 +2790,7 @@ const e = {
|
|
|
2741
2790
|
},
|
|
2742
2791
|
type: [],
|
|
2743
2792
|
tags: []
|
|
2744
|
-
},
|
|
2793
|
+
}, rn = {
|
|
2745
2794
|
id: "sublime_text",
|
|
2746
2795
|
name: {
|
|
2747
2796
|
[e.EN_US]: "Sublime Text"
|
|
@@ -2754,7 +2803,7 @@ const e = {
|
|
|
2754
2803
|
},
|
|
2755
2804
|
type: [],
|
|
2756
2805
|
tags: []
|
|
2757
|
-
},
|
|
2806
|
+
}, gn = {
|
|
2758
2807
|
id: "supabase",
|
|
2759
2808
|
name: {
|
|
2760
2809
|
[e.EN_US]: "Supabase"
|
|
@@ -2767,7 +2816,7 @@ const e = {
|
|
|
2767
2816
|
},
|
|
2768
2817
|
type: [],
|
|
2769
2818
|
tags: []
|
|
2770
|
-
},
|
|
2819
|
+
}, mn = {
|
|
2771
2820
|
id: "svn",
|
|
2772
2821
|
name: {
|
|
2773
2822
|
[e.EN_US]: "SVN"
|
|
@@ -2793,7 +2842,7 @@ const e = {
|
|
|
2793
2842
|
},
|
|
2794
2843
|
type: [i.language],
|
|
2795
2844
|
tags: []
|
|
2796
|
-
},
|
|
2845
|
+
}, bn = {
|
|
2797
2846
|
id: "tailwind",
|
|
2798
2847
|
name: {
|
|
2799
2848
|
[e.EN_US]: "Tailwind CSS"
|
|
@@ -2806,7 +2855,7 @@ const e = {
|
|
|
2806
2855
|
},
|
|
2807
2856
|
type: [],
|
|
2808
2857
|
tags: []
|
|
2809
|
-
},
|
|
2858
|
+
}, yn = {
|
|
2810
2859
|
id: "tanstack",
|
|
2811
2860
|
name: {
|
|
2812
2861
|
[e.EN_US]: "Tanstack"
|
|
@@ -2819,7 +2868,7 @@ const e = {
|
|
|
2819
2868
|
},
|
|
2820
2869
|
type: [],
|
|
2821
2870
|
tags: []
|
|
2822
|
-
},
|
|
2871
|
+
}, fn = {
|
|
2823
2872
|
id: "tanstack_query",
|
|
2824
2873
|
name: {
|
|
2825
2874
|
[e.EN_US]: "Tanstack Query"
|
|
@@ -2832,7 +2881,7 @@ const e = {
|
|
|
2832
2881
|
},
|
|
2833
2882
|
type: [],
|
|
2834
2883
|
tags: []
|
|
2835
|
-
},
|
|
2884
|
+
}, un = {
|
|
2836
2885
|
id: "templ",
|
|
2837
2886
|
name: {
|
|
2838
2887
|
[e.EN_US]: "Templ"
|
|
@@ -2845,7 +2894,7 @@ const e = {
|
|
|
2845
2894
|
},
|
|
2846
2895
|
type: [],
|
|
2847
2896
|
tags: []
|
|
2848
|
-
},
|
|
2897
|
+
}, hn = {
|
|
2849
2898
|
id: "terraform",
|
|
2850
2899
|
name: {
|
|
2851
2900
|
[e.EN_US]: "Terraform"
|
|
@@ -2871,7 +2920,7 @@ const e = {
|
|
|
2871
2920
|
},
|
|
2872
2921
|
type: [],
|
|
2873
2922
|
tags: []
|
|
2874
|
-
},
|
|
2923
|
+
}, Dn = {
|
|
2875
2924
|
id: "twig",
|
|
2876
2925
|
name: {
|
|
2877
2926
|
[e.EN_US]: "Twig"
|
|
@@ -2900,14 +2949,14 @@ const e = {
|
|
|
2900
2949
|
[e.DE_DE]: "TypeScript ist eine stark typisierte Programmiersprache, die auf JavaScript aufbaut und Ihnen bei jeder Größenordnung bessere Werkzeuge bietet."
|
|
2901
2950
|
},
|
|
2902
2951
|
type: [i.language],
|
|
2903
|
-
tags: [
|
|
2952
|
+
tags: [o.frontend, o.backend, o.open_source, o.javascript],
|
|
2904
2953
|
links: {
|
|
2905
2954
|
website: "https://www.typescriptlang.org"
|
|
2906
2955
|
},
|
|
2907
2956
|
sources: {
|
|
2908
|
-
definition:
|
|
2957
|
+
definition: Yn.official_website
|
|
2909
2958
|
}
|
|
2910
|
-
},
|
|
2959
|
+
}, vn = {
|
|
2911
2960
|
id: "typesense",
|
|
2912
2961
|
name: {
|
|
2913
2962
|
[e.EN_US]: "Typesense"
|
|
@@ -2920,7 +2969,7 @@ const e = {
|
|
|
2920
2969
|
},
|
|
2921
2970
|
type: [],
|
|
2922
2971
|
tags: []
|
|
2923
|
-
},
|
|
2972
|
+
}, An = {
|
|
2924
2973
|
id: "vercel",
|
|
2925
2974
|
name: {
|
|
2926
2975
|
[e.EN_US]: "Vercel"
|
|
@@ -2933,7 +2982,7 @@ const e = {
|
|
|
2933
2982
|
},
|
|
2934
2983
|
type: [],
|
|
2935
2984
|
tags: []
|
|
2936
|
-
},
|
|
2985
|
+
}, Bn = {
|
|
2937
2986
|
id: "vim",
|
|
2938
2987
|
name: {
|
|
2939
2988
|
[e.EN_US]: "Vim"
|
|
@@ -2946,7 +2995,7 @@ const e = {
|
|
|
2946
2995
|
},
|
|
2947
2996
|
type: [],
|
|
2948
2997
|
tags: []
|
|
2949
|
-
},
|
|
2998
|
+
}, Ln = {
|
|
2950
2999
|
id: "visual_basic",
|
|
2951
3000
|
name: {
|
|
2952
3001
|
[e.EN_US]: "Visual Basic"
|
|
@@ -2959,7 +3008,7 @@ const e = {
|
|
|
2959
3008
|
},
|
|
2960
3009
|
type: [i.language],
|
|
2961
3010
|
tags: []
|
|
2962
|
-
},
|
|
3011
|
+
}, jn = {
|
|
2963
3012
|
id: "vite",
|
|
2964
3013
|
name: {
|
|
2965
3014
|
[e.EN_US]: "Vite"
|
|
@@ -2972,7 +3021,7 @@ const e = {
|
|
|
2972
3021
|
},
|
|
2973
3022
|
type: [],
|
|
2974
3023
|
tags: []
|
|
2975
|
-
},
|
|
3024
|
+
}, Gn = {
|
|
2976
3025
|
id: "vitest",
|
|
2977
3026
|
name: {
|
|
2978
3027
|
[e.EN_US]: "Vitest"
|
|
@@ -2985,7 +3034,7 @@ const e = {
|
|
|
2985
3034
|
},
|
|
2986
3035
|
type: [],
|
|
2987
3036
|
tags: []
|
|
2988
|
-
},
|
|
3037
|
+
}, Cn = {
|
|
2989
3038
|
id: "vue_js",
|
|
2990
3039
|
name: {
|
|
2991
3040
|
[e.EN_US]: "Vue.js"
|
|
@@ -3011,7 +3060,7 @@ const e = {
|
|
|
3011
3060
|
},
|
|
3012
3061
|
type: [],
|
|
3013
3062
|
tags: []
|
|
3014
|
-
},
|
|
3063
|
+
}, zn = {
|
|
3015
3064
|
id: "web_forms",
|
|
3016
3065
|
name: {
|
|
3017
3066
|
[e.EN_US]: "Web Forms"
|
|
@@ -3037,7 +3086,7 @@ const e = {
|
|
|
3037
3086
|
},
|
|
3038
3087
|
type: [],
|
|
3039
3088
|
tags: []
|
|
3040
|
-
},
|
|
3089
|
+
}, On = {
|
|
3041
3090
|
id: "web3",
|
|
3042
3091
|
name: {
|
|
3043
3092
|
[e.EN_US]: "Web3"
|
|
@@ -3063,7 +3112,7 @@ const e = {
|
|
|
3063
3112
|
},
|
|
3064
3113
|
type: [],
|
|
3065
3114
|
tags: []
|
|
3066
|
-
},
|
|
3115
|
+
}, Pn = {
|
|
3067
3116
|
id: "websockets",
|
|
3068
3117
|
name: {
|
|
3069
3118
|
[e.EN_US]: "WebSockets"
|
|
@@ -3089,7 +3138,7 @@ const e = {
|
|
|
3089
3138
|
},
|
|
3090
3139
|
type: [],
|
|
3091
3140
|
tags: []
|
|
3092
|
-
},
|
|
3141
|
+
}, Rn = {
|
|
3093
3142
|
id: "winscp",
|
|
3094
3143
|
name: {
|
|
3095
3144
|
[e.EN_US]: "WinSCP"
|
|
@@ -3102,10 +3151,12 @@ const e = {
|
|
|
3102
3151
|
},
|
|
3103
3152
|
type: [],
|
|
3104
3153
|
tags: []
|
|
3105
|
-
},
|
|
3154
|
+
}, In = {
|
|
3106
3155
|
id: "wordpress",
|
|
3107
3156
|
name: {
|
|
3108
|
-
[e.EN_US]: "WordPress"
|
|
3157
|
+
[e.EN_US]: "WordPress",
|
|
3158
|
+
[e.EN_GB]: e.EN_US,
|
|
3159
|
+
[e.DE_DE]: e.EN_US
|
|
3109
3160
|
},
|
|
3110
3161
|
label: {
|
|
3111
3162
|
[e.EN_US]: ""
|
|
@@ -3113,9 +3164,9 @@ const e = {
|
|
|
3113
3164
|
definition: {
|
|
3114
3165
|
[e.EN_US]: ""
|
|
3115
3166
|
},
|
|
3116
|
-
type: [],
|
|
3167
|
+
type: [i.cms],
|
|
3117
3168
|
tags: []
|
|
3118
|
-
},
|
|
3169
|
+
}, Jn = {
|
|
3119
3170
|
id: "yarn",
|
|
3120
3171
|
name: {
|
|
3121
3172
|
[e.EN_US]: "Yarn"
|
|
@@ -3128,7 +3179,7 @@ const e = {
|
|
|
3128
3179
|
},
|
|
3129
3180
|
type: [],
|
|
3130
3181
|
tags: []
|
|
3131
|
-
},
|
|
3182
|
+
}, Kn = {
|
|
3132
3183
|
id: "zephyr",
|
|
3133
3184
|
name: {
|
|
3134
3185
|
[e.EN_US]: "Zephyr"
|
|
@@ -3141,7 +3192,7 @@ const e = {
|
|
|
3141
3192
|
},
|
|
3142
3193
|
type: [],
|
|
3143
3194
|
tags: []
|
|
3144
|
-
},
|
|
3195
|
+
}, Wn = {
|
|
3145
3196
|
id: "zig",
|
|
3146
3197
|
name: {
|
|
3147
3198
|
[e.EN_US]: "Zig"
|
|
@@ -3168,31 +3219,30 @@ const e = {
|
|
|
3168
3219
|
type: [],
|
|
3169
3220
|
tags: []
|
|
3170
3221
|
}, U = {
|
|
3171
|
-
[O.id]: O,
|
|
3172
|
-
[M.id]: M,
|
|
3173
3222
|
[P.id]: P,
|
|
3223
|
+
[M.id]: M,
|
|
3174
3224
|
[R.id]: R,
|
|
3175
|
-
[W.id]: W,
|
|
3176
|
-
[J.id]: J,
|
|
3177
|
-
[H.id]: H,
|
|
3178
3225
|
[I.id]: I,
|
|
3179
|
-
[
|
|
3226
|
+
[J.id]: J,
|
|
3180
3227
|
[K.id]: K,
|
|
3181
|
-
[Q.id]: Q,
|
|
3182
3228
|
[V.id]: V,
|
|
3229
|
+
[W.id]: W,
|
|
3230
|
+
[q.id]: q,
|
|
3231
|
+
[H.id]: H,
|
|
3232
|
+
[Q.id]: Q,
|
|
3183
3233
|
[Y.id]: Y,
|
|
3184
3234
|
[Z.id]: Z,
|
|
3185
|
-
[X.id]: X,
|
|
3186
3235
|
[$.id]: $,
|
|
3236
|
+
[X.id]: X,
|
|
3187
3237
|
[ee.id]: ee,
|
|
3188
3238
|
[ie.id]: ie,
|
|
3189
3239
|
[te.id]: te,
|
|
3190
3240
|
[ne.id]: ne,
|
|
3191
3241
|
[ae.id]: ae,
|
|
3192
3242
|
[se.id]: se,
|
|
3243
|
+
[_e.id]: _e,
|
|
3193
3244
|
[oe.id]: oe,
|
|
3194
3245
|
[de.id]: de,
|
|
3195
|
-
[_e.id]: _e,
|
|
3196
3246
|
[Ee.id]: Ee,
|
|
3197
3247
|
[Se.id]: Se,
|
|
3198
3248
|
[le.id]: le,
|
|
@@ -3201,52 +3251,52 @@ const e = {
|
|
|
3201
3251
|
[ce.id]: ce,
|
|
3202
3252
|
[re.id]: re,
|
|
3203
3253
|
[ge.id]: ge,
|
|
3204
|
-
[pe.id]: pe,
|
|
3205
3254
|
[me.id]: me,
|
|
3255
|
+
[pe.id]: pe,
|
|
3206
3256
|
[be.id]: be,
|
|
3207
3257
|
[ye.id]: ye,
|
|
3208
3258
|
[fe.id]: fe,
|
|
3209
3259
|
[ue.id]: ue,
|
|
3210
|
-
[ke.id]: ke,
|
|
3211
3260
|
[he.id]: he,
|
|
3212
|
-
[
|
|
3261
|
+
[ke.id]: ke,
|
|
3213
3262
|
[De.id]: De,
|
|
3214
|
-
[
|
|
3215
|
-
[je.id]: je,
|
|
3263
|
+
[we.id]: we,
|
|
3216
3264
|
[ve.id]: ve,
|
|
3217
3265
|
[Ae.id]: Ae,
|
|
3218
|
-
[Ce.id]: Ce,
|
|
3219
3266
|
[Be.id]: Be,
|
|
3220
|
-
[
|
|
3267
|
+
[Le.id]: Le,
|
|
3268
|
+
[je.id]: je,
|
|
3221
3269
|
[Ge.id]: Ge,
|
|
3222
|
-
[
|
|
3270
|
+
[Ce.id]: Ce,
|
|
3271
|
+
[Te.id]: Te,
|
|
3223
3272
|
[ze.id]: ze,
|
|
3224
|
-
[
|
|
3273
|
+
[xe.id]: xe,
|
|
3225
3274
|
[Oe.id]: Oe,
|
|
3226
|
-
[
|
|
3275
|
+
[Fe.id]: Fe,
|
|
3227
3276
|
[Pe.id]: Pe,
|
|
3277
|
+
[Me.id]: Me,
|
|
3228
3278
|
[Re.id]: Re,
|
|
3229
|
-
[We.id]: We,
|
|
3230
|
-
[Je.id]: Je,
|
|
3231
3279
|
[Ie.id]: Ie,
|
|
3232
|
-
[
|
|
3280
|
+
[Je.id]: Je,
|
|
3233
3281
|
[Ke.id]: Ke,
|
|
3282
|
+
[We.id]: We,
|
|
3283
|
+
[qe.id]: qe,
|
|
3234
3284
|
[He.id]: He,
|
|
3235
3285
|
[Ve.id]: Ve,
|
|
3236
3286
|
[Ye.id]: Ye,
|
|
3237
3287
|
[Ze.id]: Ze,
|
|
3238
|
-
[Xe.id]: Xe,
|
|
3239
3288
|
[$e.id]: $e,
|
|
3289
|
+
[Xe.id]: Xe,
|
|
3240
3290
|
[ei.id]: ei,
|
|
3241
3291
|
[ii.id]: ii,
|
|
3242
3292
|
[ti.id]: ti,
|
|
3243
|
-
[Qe.id]: Qe,
|
|
3244
3293
|
[ni.id]: ni,
|
|
3294
|
+
[Qe.id]: Qe,
|
|
3245
3295
|
[ai.id]: ai,
|
|
3246
3296
|
[si.id]: si,
|
|
3297
|
+
[_i.id]: _i,
|
|
3247
3298
|
[oi.id]: oi,
|
|
3248
3299
|
[di.id]: di,
|
|
3249
|
-
[_i.id]: _i,
|
|
3250
3300
|
[Ei.id]: Ei,
|
|
3251
3301
|
[Si.id]: Si,
|
|
3252
3302
|
[li.id]: li,
|
|
@@ -3255,52 +3305,52 @@ const e = {
|
|
|
3255
3305
|
[ci.id]: ci,
|
|
3256
3306
|
[ri.id]: ri,
|
|
3257
3307
|
[gi.id]: gi,
|
|
3258
|
-
[pi.id]: pi,
|
|
3259
3308
|
[mi.id]: mi,
|
|
3309
|
+
[pi.id]: pi,
|
|
3260
3310
|
[bi.id]: bi,
|
|
3261
3311
|
[yi.id]: yi,
|
|
3262
3312
|
[fi.id]: fi,
|
|
3263
3313
|
[ui.id]: ui,
|
|
3264
|
-
[ki.id]: ki,
|
|
3265
3314
|
[hi.id]: hi,
|
|
3266
|
-
[
|
|
3315
|
+
[ki.id]: ki,
|
|
3267
3316
|
[Di.id]: Di,
|
|
3268
|
-
[
|
|
3269
|
-
[ji.id]: ji,
|
|
3317
|
+
[wi.id]: wi,
|
|
3270
3318
|
[vi.id]: vi,
|
|
3271
3319
|
[Ai.id]: Ai,
|
|
3272
|
-
[Ci.id]: Ci,
|
|
3273
3320
|
[Bi.id]: Bi,
|
|
3274
|
-
[
|
|
3321
|
+
[Li.id]: Li,
|
|
3322
|
+
[ji.id]: ji,
|
|
3275
3323
|
[Gi.id]: Gi,
|
|
3276
|
-
[
|
|
3324
|
+
[Ci.id]: Ci,
|
|
3325
|
+
[Ti.id]: Ti,
|
|
3277
3326
|
[zi.id]: zi,
|
|
3278
|
-
[
|
|
3327
|
+
[xi.id]: xi,
|
|
3279
3328
|
[Oi.id]: Oi,
|
|
3280
|
-
[
|
|
3329
|
+
[Fi.id]: Fi,
|
|
3281
3330
|
[Pi.id]: Pi,
|
|
3331
|
+
[Mi.id]: Mi,
|
|
3282
3332
|
[Ri.id]: Ri,
|
|
3283
|
-
[Wi.id]: Wi,
|
|
3284
|
-
[Ji.id]: Ji,
|
|
3285
3333
|
[Ii.id]: Ii,
|
|
3286
|
-
[
|
|
3334
|
+
[Ji.id]: Ji,
|
|
3287
3335
|
[Ki.id]: Ki,
|
|
3336
|
+
[Wi.id]: Wi,
|
|
3337
|
+
[qi.id]: qi,
|
|
3288
3338
|
[Hi.id]: Hi,
|
|
3289
|
-
[Qi.id]: Qi,
|
|
3290
3339
|
[Vi.id]: Vi,
|
|
3340
|
+
[Qi.id]: Qi,
|
|
3291
3341
|
[Yi.id]: Yi,
|
|
3292
3342
|
[Zi.id]: Zi,
|
|
3293
|
-
[Xi.id]: Xi,
|
|
3294
3343
|
[$i.id]: $i,
|
|
3344
|
+
[Xi.id]: Xi,
|
|
3295
3345
|
[et.id]: et,
|
|
3296
3346
|
[it.id]: it,
|
|
3297
3347
|
[tt.id]: tt,
|
|
3298
3348
|
[nt.id]: nt,
|
|
3299
3349
|
[at.id]: at,
|
|
3300
3350
|
[st.id]: st,
|
|
3351
|
+
[_t.id]: _t,
|
|
3301
3352
|
[ot.id]: ot,
|
|
3302
3353
|
[dt.id]: dt,
|
|
3303
|
-
[_t.id]: _t,
|
|
3304
3354
|
[Et.id]: Et,
|
|
3305
3355
|
[St.id]: St,
|
|
3306
3356
|
[lt.id]: lt,
|
|
@@ -3309,51 +3359,51 @@ const e = {
|
|
|
3309
3359
|
[ct.id]: ct,
|
|
3310
3360
|
[rt.id]: rt,
|
|
3311
3361
|
[gt.id]: gt,
|
|
3312
|
-
[pt.id]: pt,
|
|
3313
3362
|
[mt.id]: mt,
|
|
3363
|
+
[pt.id]: pt,
|
|
3314
3364
|
[bt.id]: bt,
|
|
3315
3365
|
[yt.id]: yt,
|
|
3316
3366
|
[ft.id]: ft,
|
|
3317
3367
|
[ut.id]: ut,
|
|
3318
|
-
[kt.id]: kt,
|
|
3319
3368
|
[ht.id]: ht,
|
|
3320
|
-
[
|
|
3369
|
+
[kt.id]: kt,
|
|
3321
3370
|
[Dt.id]: Dt,
|
|
3322
|
-
[
|
|
3323
|
-
[jt.id]: jt,
|
|
3371
|
+
[wt.id]: wt,
|
|
3324
3372
|
[vt.id]: vt,
|
|
3325
3373
|
[At.id]: At,
|
|
3326
|
-
[Ct.id]: Ct,
|
|
3327
3374
|
[Bt.id]: Bt,
|
|
3328
|
-
[
|
|
3375
|
+
[Lt.id]: Lt,
|
|
3376
|
+
[jt.id]: jt,
|
|
3329
3377
|
[Gt.id]: Gt,
|
|
3330
|
-
[
|
|
3378
|
+
[Ct.id]: Ct,
|
|
3379
|
+
[Tt.id]: Tt,
|
|
3331
3380
|
[zt.id]: zt,
|
|
3332
|
-
[
|
|
3381
|
+
[xt.id]: xt,
|
|
3333
3382
|
[Ot.id]: Ot,
|
|
3334
|
-
[
|
|
3383
|
+
[Ft.id]: Ft,
|
|
3335
3384
|
[Pt.id]: Pt,
|
|
3385
|
+
[Mt.id]: Mt,
|
|
3336
3386
|
[Rt.id]: Rt,
|
|
3337
|
-
[Wt.id]: Wt,
|
|
3338
|
-
[Jt.id]: Jt,
|
|
3339
3387
|
[It.id]: It,
|
|
3340
|
-
[
|
|
3388
|
+
[Jt.id]: Jt,
|
|
3341
3389
|
[Kt.id]: Kt,
|
|
3390
|
+
[Wt.id]: Wt,
|
|
3391
|
+
[qt.id]: qt,
|
|
3342
3392
|
[Ht.id]: Ht,
|
|
3343
|
-
[Qt.id]: Qt,
|
|
3344
3393
|
[Vt.id]: Vt,
|
|
3394
|
+
[Qt.id]: Qt,
|
|
3345
3395
|
[Yt.id]: Yt,
|
|
3346
3396
|
[Zt.id]: Zt,
|
|
3347
|
-
[Xt.id]: Xt,
|
|
3348
3397
|
[$t.id]: $t,
|
|
3398
|
+
[Xt.id]: Xt,
|
|
3349
3399
|
[en.id]: en,
|
|
3350
3400
|
[tn.id]: tn,
|
|
3351
3401
|
[nn.id]: nn,
|
|
3352
3402
|
[an.id]: an,
|
|
3353
3403
|
[sn.id]: sn,
|
|
3404
|
+
[_n.id]: _n,
|
|
3354
3405
|
[on.id]: on,
|
|
3355
3406
|
[dn.id]: dn,
|
|
3356
|
-
[_n.id]: _n,
|
|
3357
3407
|
[En.id]: En,
|
|
3358
3408
|
[Sn.id]: Sn,
|
|
3359
3409
|
[ln.id]: ln,
|
|
@@ -3362,101 +3412,103 @@ const e = {
|
|
|
3362
3412
|
[cn.id]: cn,
|
|
3363
3413
|
[rn.id]: rn,
|
|
3364
3414
|
[gn.id]: gn,
|
|
3365
|
-
[pn.id]: pn,
|
|
3366
3415
|
[mn.id]: mn,
|
|
3416
|
+
[pn.id]: pn,
|
|
3367
3417
|
[bn.id]: bn,
|
|
3368
3418
|
[yn.id]: yn,
|
|
3369
3419
|
[fn.id]: fn,
|
|
3370
3420
|
[un.id]: un,
|
|
3371
|
-
[kn.id]: kn,
|
|
3372
3421
|
[hn.id]: hn,
|
|
3373
|
-
[
|
|
3422
|
+
[kn.id]: kn,
|
|
3374
3423
|
[Dn.id]: Dn,
|
|
3375
|
-
[
|
|
3376
|
-
[jn.id]: jn,
|
|
3424
|
+
[wn.id]: wn,
|
|
3377
3425
|
[vn.id]: vn,
|
|
3378
3426
|
[An.id]: An,
|
|
3379
|
-
[Cn.id]: Cn,
|
|
3380
3427
|
[Bn.id]: Bn,
|
|
3428
|
+
[Ln.id]: Ln,
|
|
3429
|
+
[jn.id]: jn,
|
|
3430
|
+
[Gn.id]: Gn,
|
|
3431
|
+
[Cn.id]: Cn,
|
|
3381
3432
|
[Tn.id]: Tn,
|
|
3433
|
+
[On.id]: On,
|
|
3382
3434
|
[zn.id]: zn,
|
|
3383
|
-
[Gn.id]: Gn,
|
|
3384
3435
|
[xn.id]: xn,
|
|
3385
3436
|
[Fn.id]: Fn,
|
|
3386
|
-
[On.id]: On,
|
|
3387
|
-
[Mn.id]: Mn,
|
|
3388
3437
|
[Pn.id]: Pn,
|
|
3438
|
+
[Mn.id]: Mn,
|
|
3389
3439
|
[Rn.id]: Rn,
|
|
3390
|
-
[Wn.id]: Wn,
|
|
3391
|
-
[Jn.id]: Jn,
|
|
3392
3440
|
[In.id]: In,
|
|
3441
|
+
[Jn.id]: Jn,
|
|
3442
|
+
[Kn.id]: Kn,
|
|
3443
|
+
[Wn.id]: Wn,
|
|
3393
3444
|
[qn.id]: qn
|
|
3394
3445
|
};
|
|
3395
3446
|
l({ obj: U, keys: ["name", "label", "definition"], useFallback: !1 });
|
|
3396
|
-
const
|
|
3447
|
+
const d = {
|
|
3397
3448
|
DEFAULT_LOCALE: e.EN_US,
|
|
3398
3449
|
USE_FALLBACK: !0
|
|
3399
3450
|
};
|
|
3400
3451
|
function Xn({
|
|
3401
3452
|
id: n,
|
|
3402
3453
|
localized: a = !0,
|
|
3403
|
-
locale: t =
|
|
3404
|
-
useFallback: s =
|
|
3454
|
+
locale: t = d.DEFAULT_LOCALE,
|
|
3455
|
+
useFallback: s = d.USE_FALLBACK
|
|
3405
3456
|
}) {
|
|
3406
|
-
const
|
|
3457
|
+
const _ = l({ obj: U, keys: ["name", "altName", "label", "definition"], useFallback: s })[n];
|
|
3407
3458
|
return a ? {
|
|
3408
|
-
...
|
|
3409
|
-
name: N({ obj:
|
|
3410
|
-
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
|
|
3459
|
+
..._,
|
|
3460
|
+
name: N({ obj: _.name, locale: t, useFallback: s }),
|
|
3461
|
+
..."altName" in _ && _.altName ? { altName: N({ obj: _.altName, locale: t, useFallback: s }) } : {},
|
|
3462
|
+
label: N({ obj: _.label, locale: t, useFallback: s }),
|
|
3463
|
+
definition: N({ obj: _.definition, locale: t, useFallback: s }),
|
|
3464
|
+
type: _.type.map((S) => Qn({ term: S, locale: t, useFallback: s })),
|
|
3465
|
+
tags: _.tags.map((S) => Vn({ tag: S, locale: t, useFallback: s }))
|
|
3466
|
+
} : _;
|
|
3415
3467
|
}
|
|
3416
|
-
function
|
|
3468
|
+
function na({
|
|
3417
3469
|
localized: n = !0,
|
|
3418
|
-
locale: a =
|
|
3419
|
-
useFallback: t =
|
|
3470
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
3471
|
+
useFallback: t = d.USE_FALLBACK
|
|
3420
3472
|
} = {}) {
|
|
3421
|
-
const s = l({ obj: U, keys: ["name", "label", "definition"], useFallback: t }),
|
|
3422
|
-
return n ?
|
|
3473
|
+
const s = l({ obj: U, keys: ["name", "altName", "label", "definition"], useFallback: t }), E = Object.values(s);
|
|
3474
|
+
return n ? E.map((_) => Xn({ id: _.id, locale: a, useFallback: t })) : E;
|
|
3423
3475
|
}
|
|
3424
|
-
function
|
|
3476
|
+
function aa({
|
|
3425
3477
|
localized: n = !0,
|
|
3426
|
-
locale: a =
|
|
3427
|
-
useFallback: t =
|
|
3478
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
3479
|
+
useFallback: t = d.USE_FALLBACK
|
|
3428
3480
|
} = {}) {
|
|
3429
|
-
const s = l({ obj: U, keys: ["name", "label", "definition"], useFallback: t });
|
|
3481
|
+
const s = l({ obj: U, keys: ["name", "altName", "label", "definition"], useFallback: t });
|
|
3430
3482
|
if (!n)
|
|
3431
3483
|
return s;
|
|
3432
|
-
const
|
|
3433
|
-
for (const [
|
|
3434
|
-
const
|
|
3435
|
-
_
|
|
3484
|
+
const E = {};
|
|
3485
|
+
for (const [_, S] of Object.entries(s)) {
|
|
3486
|
+
const ea = Xn({ id: S.id, locale: a, useFallback: t });
|
|
3487
|
+
E[_] = ea;
|
|
3436
3488
|
}
|
|
3437
|
-
return
|
|
3489
|
+
return E;
|
|
3438
3490
|
}
|
|
3439
|
-
function
|
|
3491
|
+
function sa({
|
|
3440
3492
|
localized: n = !0,
|
|
3441
|
-
locale: a =
|
|
3442
|
-
useFallback: t =
|
|
3493
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
3494
|
+
useFallback: t = d.USE_FALLBACK
|
|
3443
3495
|
} = {}) {
|
|
3444
|
-
const s = l({ obj:
|
|
3445
|
-
return n ?
|
|
3496
|
+
const s = l({ obj: $n, keys: ["name"], useFallback: t }), E = Object.values(s);
|
|
3497
|
+
return n ? E.map((_) => Qn({ term: _, locale: a, useFallback: t })) : E;
|
|
3446
3498
|
}
|
|
3447
|
-
function
|
|
3499
|
+
function _a({
|
|
3448
3500
|
localized: n = !0,
|
|
3449
|
-
locale: a =
|
|
3450
|
-
useFallback: t =
|
|
3501
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
3502
|
+
useFallback: t = d.USE_FALLBACK
|
|
3451
3503
|
} = {}) {
|
|
3452
|
-
const s = l({ obj:
|
|
3453
|
-
return n ?
|
|
3504
|
+
const s = l({ obj: Zn, keys: ["name"], useFallback: t }), E = Object.values(s);
|
|
3505
|
+
return n ? E.map((_) => Vn({ tag: _, locale: a, useFallback: t })) : E;
|
|
3454
3506
|
}
|
|
3455
3507
|
export {
|
|
3456
|
-
|
|
3457
|
-
|
|
3508
|
+
aa as getDict,
|
|
3509
|
+
_a as getTags,
|
|
3458
3510
|
Xn as getTerm,
|
|
3459
|
-
|
|
3460
|
-
|
|
3511
|
+
na as getTerms,
|
|
3512
|
+
sa as getTypes
|
|
3461
3513
|
};
|
|
3462
3514
|
//# sourceMappingURL=index.js.map
|