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.js
CHANGED
|
@@ -2,45 +2,45 @@ const e = {
|
|
|
2
2
|
EN_US: "en-US",
|
|
3
3
|
EN_GB: "en-GB",
|
|
4
4
|
DE_DE: "de-DE"
|
|
5
|
-
},
|
|
6
|
-
obj:
|
|
7
|
-
value:
|
|
8
|
-
useFallback:
|
|
9
|
-
}) =>
|
|
10
|
-
obj:
|
|
11
|
-
useFallback:
|
|
5
|
+
}, Hn = ({
|
|
6
|
+
obj: n,
|
|
7
|
+
value: a,
|
|
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
|
+
obj: n,
|
|
11
|
+
useFallback: a = d.USE_FALLBACK
|
|
12
12
|
}) => {
|
|
13
|
-
const
|
|
13
|
+
const t = Object.values(e);
|
|
14
14
|
return Object.fromEntries(
|
|
15
|
-
|
|
15
|
+
t.map((s) => [s, Hn({ obj: n, value: n[s], useFallback: a })])
|
|
16
16
|
);
|
|
17
|
-
},
|
|
18
|
-
obj:
|
|
19
|
-
keys:
|
|
20
|
-
useFallback:
|
|
17
|
+
}, l = ({
|
|
18
|
+
obj: n,
|
|
19
|
+
keys: a,
|
|
20
|
+
useFallback: t = d.USE_FALLBACK
|
|
21
21
|
}) => Object.fromEntries(
|
|
22
|
-
Object.entries(
|
|
23
|
-
const _ =
|
|
24
|
-
return [
|
|
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
|
-
obj:
|
|
28
|
-
locale:
|
|
29
|
-
useFallback:
|
|
30
|
-
}) =>
|
|
31
|
-
tag:
|
|
32
|
-
locale:
|
|
33
|
-
useFallback:
|
|
27
|
+
obj: n,
|
|
28
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
29
|
+
useFallback: t = d.USE_FALLBACK
|
|
30
|
+
}) => Hn({ obj: n, value: n[a], useFallback: t }), Vn = ({
|
|
31
|
+
tag: n,
|
|
32
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
33
|
+
useFallback: t = d.USE_FALLBACK
|
|
34
34
|
}) => ({
|
|
35
|
-
id:
|
|
36
|
-
name: N({ obj:
|
|
37
|
-
}),
|
|
38
|
-
term:
|
|
39
|
-
locale:
|
|
40
|
-
useFallback:
|
|
35
|
+
id: n.id,
|
|
36
|
+
name: N({ obj: n.name, locale: a, useFallback: t })
|
|
37
|
+
}), Qn = ({
|
|
38
|
+
term: n,
|
|
39
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
40
|
+
useFallback: t = d.USE_FALLBACK
|
|
41
41
|
}) => ({
|
|
42
|
-
id:
|
|
43
|
-
name: N({ obj:
|
|
42
|
+
id: n.id,
|
|
43
|
+
name: N({ obj: n.name, locale: a, useFallback: t })
|
|
44
44
|
}), c = {
|
|
45
45
|
id: "ai_generated",
|
|
46
46
|
name: {
|
|
@@ -55,7 +55,7 @@ const e = {
|
|
|
55
55
|
[e.EN_GB]: e.EN_US,
|
|
56
56
|
[e.DE_DE]: "Gemeinschaftskonsens"
|
|
57
57
|
}
|
|
58
|
-
},
|
|
58
|
+
}, g = {
|
|
59
59
|
id: "inferred",
|
|
60
60
|
name: {
|
|
61
61
|
[e.EN_US]: "Inferred from Context",
|
|
@@ -69,98 +69,204 @@ const e = {
|
|
|
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
83
|
[m.id]: m,
|
|
84
|
-
[
|
|
85
|
-
},
|
|
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",
|
|
89
89
|
[e.EN_GB]: e.EN_US,
|
|
90
90
|
[e.DE_DE]: "Automatisierung"
|
|
91
91
|
}
|
|
92
|
-
},
|
|
92
|
+
}, y = {
|
|
93
93
|
id: "backend",
|
|
94
94
|
name: {
|
|
95
95
|
[e.EN_US]: "Backend",
|
|
96
96
|
[e.EN_GB]: e.EN_US,
|
|
97
97
|
[e.DE_DE]: "Backend"
|
|
98
98
|
}
|
|
99
|
-
},
|
|
99
|
+
}, f = {
|
|
100
|
+
id: "cryptography",
|
|
101
|
+
name: {
|
|
102
|
+
[e.EN_US]: "Cryptography",
|
|
103
|
+
[e.EN_GB]: e.EN_US,
|
|
104
|
+
[e.DE_DE]: "Kryptografie"
|
|
105
|
+
}
|
|
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 = {
|
|
100
114
|
id: "frontend",
|
|
101
115
|
name: {
|
|
102
116
|
[e.EN_US]: "Frontend",
|
|
103
117
|
[e.EN_GB]: e.EN_US,
|
|
104
118
|
[e.DE_DE]: "Frontend"
|
|
105
119
|
}
|
|
106
|
-
},
|
|
120
|
+
}, k = {
|
|
107
121
|
id: "javascript",
|
|
108
122
|
name: {
|
|
109
123
|
[e.EN_US]: "JavaScript",
|
|
110
124
|
[e.EN_GB]: e.EN_US,
|
|
111
125
|
[e.DE_DE]: "JavaScript"
|
|
112
126
|
}
|
|
113
|
-
},
|
|
127
|
+
}, D = {
|
|
114
128
|
id: "open_source",
|
|
115
129
|
name: {
|
|
116
130
|
[e.EN_US]: "Open Source",
|
|
117
131
|
[e.EN_GB]: e.EN_US,
|
|
118
132
|
[e.DE_DE]: "Open Source"
|
|
119
133
|
}
|
|
120
|
-
},
|
|
134
|
+
}, w = {
|
|
121
135
|
id: "qa",
|
|
122
136
|
name: {
|
|
123
137
|
[e.EN_US]: "QA",
|
|
124
138
|
[e.EN_GB]: e.EN_US,
|
|
125
139
|
[e.DE_DE]: "QA"
|
|
126
140
|
}
|
|
127
|
-
},
|
|
141
|
+
}, v = {
|
|
142
|
+
id: "security",
|
|
143
|
+
name: {
|
|
144
|
+
[e.EN_US]: "Security",
|
|
145
|
+
[e.EN_GB]: e.EN_US,
|
|
146
|
+
[e.DE_DE]: "Sicherheit"
|
|
147
|
+
}
|
|
148
|
+
}, A = {
|
|
128
149
|
id: "testing",
|
|
129
150
|
name: {
|
|
130
151
|
[e.EN_US]: "Testing",
|
|
131
152
|
[e.EN_GB]: e.EN_US,
|
|
132
153
|
[e.DE_DE]: "Testing"
|
|
133
154
|
}
|
|
134
|
-
},
|
|
155
|
+
}, B = {
|
|
135
156
|
id: "ui_library",
|
|
136
157
|
name: {
|
|
137
158
|
[e.EN_US]: "UI Library",
|
|
138
159
|
[e.EN_GB]: e.EN_US,
|
|
139
160
|
[e.DE_DE]: "UI-Bibliothek"
|
|
140
161
|
}
|
|
141
|
-
},
|
|
162
|
+
}, Zn = {
|
|
142
163
|
[b.id]: b,
|
|
143
|
-
[f.id]: f,
|
|
144
164
|
[y.id]: y,
|
|
165
|
+
[f.id]: f,
|
|
145
166
|
[u.id]: u,
|
|
146
|
-
[k.id]: k,
|
|
147
167
|
[h.id]: h,
|
|
168
|
+
[k.id]: k,
|
|
169
|
+
[D.id]: D,
|
|
148
170
|
[w.id]: w,
|
|
149
|
-
[
|
|
150
|
-
|
|
171
|
+
[v.id]: v,
|
|
172
|
+
[A.id]: A,
|
|
173
|
+
[B.id]: B
|
|
174
|
+
}, o = l({ obj: Zn, keys: ["name"], useFallback: !1 }), L = {
|
|
175
|
+
id: "cms",
|
|
176
|
+
name: {
|
|
177
|
+
[e.EN_US]: "Content Management System",
|
|
178
|
+
[e.EN_GB]: e.EN_US,
|
|
179
|
+
[e.DE_DE]: "Content-Management-System"
|
|
180
|
+
}
|
|
181
|
+
}, j = {
|
|
182
|
+
id: "concept",
|
|
183
|
+
name: {
|
|
184
|
+
[e.EN_US]: "Concept",
|
|
185
|
+
[e.EN_GB]: e.EN_US,
|
|
186
|
+
[e.DE_DE]: "Konzept"
|
|
187
|
+
}
|
|
188
|
+
}, G = {
|
|
189
|
+
id: "framework",
|
|
190
|
+
name: {
|
|
191
|
+
[e.EN_US]: "Framework",
|
|
192
|
+
[e.EN_GB]: e.EN_US,
|
|
193
|
+
[e.DE_DE]: "Framework"
|
|
194
|
+
}
|
|
195
|
+
}, C = {
|
|
196
|
+
id: "language",
|
|
197
|
+
name: {
|
|
198
|
+
[e.EN_US]: "Language",
|
|
199
|
+
[e.EN_GB]: e.EN_US,
|
|
200
|
+
[e.DE_DE]: "Sprache"
|
|
201
|
+
}
|
|
202
|
+
}, T = {
|
|
203
|
+
id: "library",
|
|
204
|
+
name: {
|
|
205
|
+
[e.EN_US]: "Library",
|
|
206
|
+
[e.EN_GB]: e.EN_US,
|
|
207
|
+
[e.DE_DE]: "Bibliothek"
|
|
208
|
+
}
|
|
209
|
+
}, z = {
|
|
210
|
+
id: "methodology",
|
|
211
|
+
name: {
|
|
212
|
+
[e.EN_US]: "Methodology",
|
|
213
|
+
[e.EN_GB]: e.EN_US,
|
|
214
|
+
[e.DE_DE]: "Methodik"
|
|
215
|
+
}
|
|
216
|
+
}, x = {
|
|
217
|
+
id: "platform",
|
|
218
|
+
name: {
|
|
219
|
+
[e.EN_US]: "Platform"
|
|
220
|
+
}
|
|
221
|
+
}, O = {
|
|
222
|
+
id: "runtime_environment",
|
|
223
|
+
name: {
|
|
224
|
+
[e.EN_US]: "Runtime Environment",
|
|
225
|
+
[e.EN_GB]: e.EN_US,
|
|
226
|
+
[e.DE_DE]: "Laufzeitumgebung"
|
|
227
|
+
}
|
|
228
|
+
}, F = {
|
|
229
|
+
id: "standard",
|
|
230
|
+
name: {
|
|
231
|
+
[e.EN_US]: "Standard",
|
|
232
|
+
[e.EN_GB]: e.EN_US,
|
|
233
|
+
[e.DE_DE]: "Standard"
|
|
234
|
+
}
|
|
235
|
+
}, $n = {
|
|
236
|
+
[L.id]: L,
|
|
237
|
+
[j.id]: j,
|
|
238
|
+
[G.id]: G,
|
|
239
|
+
[C.id]: C,
|
|
240
|
+
[T.id]: T,
|
|
241
|
+
[z.id]: z,
|
|
242
|
+
[O.id]: O,
|
|
243
|
+
[x.id]: x,
|
|
244
|
+
[F.id]: F
|
|
245
|
+
}, i = l({ obj: $n, keys: ["name"], useFallback: !1 }), P = {
|
|
151
246
|
id: "aes",
|
|
152
247
|
name: {
|
|
153
|
-
[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
|
|
154
256
|
},
|
|
155
257
|
label: {
|
|
156
|
-
[e.EN_US]: ""
|
|
258
|
+
[e.EN_US]: "Encryption Standard",
|
|
259
|
+
[e.EN_GB]: e.EN_US,
|
|
260
|
+
[e.DE_DE]: "Verschlüsselungsstandard"
|
|
157
261
|
},
|
|
158
262
|
definition: {
|
|
159
|
-
[e.EN_US]: ""
|
|
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."
|
|
160
266
|
},
|
|
161
|
-
type: [],
|
|
162
|
-
tags: []
|
|
163
|
-
},
|
|
267
|
+
type: [i.standard],
|
|
268
|
+
tags: [o.security, o.cryptography]
|
|
269
|
+
}, M = {
|
|
164
270
|
id: "agile",
|
|
165
271
|
name: {
|
|
166
272
|
[e.EN_US]: "Agile"
|
|
@@ -173,10 +279,17 @@ const e = {
|
|
|
173
279
|
},
|
|
174
280
|
type: [],
|
|
175
281
|
tags: []
|
|
176
|
-
},
|
|
282
|
+
}, R = {
|
|
177
283
|
id: "ai",
|
|
178
284
|
name: {
|
|
179
|
-
[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"
|
|
180
293
|
},
|
|
181
294
|
label: {
|
|
182
295
|
[e.EN_US]: ""
|
|
@@ -186,7 +299,7 @@ const e = {
|
|
|
186
299
|
},
|
|
187
300
|
type: [],
|
|
188
301
|
tags: []
|
|
189
|
-
},
|
|
302
|
+
}, I = {
|
|
190
303
|
id: "algolia",
|
|
191
304
|
name: {
|
|
192
305
|
[e.EN_US]: "Algolia"
|
|
@@ -199,7 +312,7 @@ const e = {
|
|
|
199
312
|
},
|
|
200
313
|
type: [],
|
|
201
314
|
tags: []
|
|
202
|
-
},
|
|
315
|
+
}, J = {
|
|
203
316
|
id: "alpine_js",
|
|
204
317
|
name: {
|
|
205
318
|
[e.EN_US]: "Alpine.js"
|
|
@@ -212,7 +325,7 @@ const e = {
|
|
|
212
325
|
},
|
|
213
326
|
type: [],
|
|
214
327
|
tags: []
|
|
215
|
-
},
|
|
328
|
+
}, K = {
|
|
216
329
|
id: "android_studio",
|
|
217
330
|
name: {
|
|
218
331
|
[e.EN_US]: "Android Studio"
|
|
@@ -225,7 +338,7 @@ const e = {
|
|
|
225
338
|
},
|
|
226
339
|
type: [],
|
|
227
340
|
tags: []
|
|
228
|
-
},
|
|
341
|
+
}, W = {
|
|
229
342
|
id: "angularjs",
|
|
230
343
|
name: {
|
|
231
344
|
[e.EN_US]: "AngularJS"
|
|
@@ -238,7 +351,7 @@ const e = {
|
|
|
238
351
|
},
|
|
239
352
|
type: [],
|
|
240
353
|
tags: []
|
|
241
|
-
},
|
|
354
|
+
}, q = {
|
|
242
355
|
id: "apache_tomcat",
|
|
243
356
|
name: {
|
|
244
357
|
[e.EN_US]: "Apache Tomcat"
|
|
@@ -251,7 +364,7 @@ const e = {
|
|
|
251
364
|
},
|
|
252
365
|
type: [],
|
|
253
366
|
tags: []
|
|
254
|
-
},
|
|
367
|
+
}, H = {
|
|
255
368
|
id: "asp_net",
|
|
256
369
|
name: {
|
|
257
370
|
[e.EN_US]: "ASP.NET"
|
|
@@ -264,70 +377,20 @@ const e = {
|
|
|
264
377
|
},
|
|
265
378
|
type: [],
|
|
266
379
|
tags: []
|
|
267
|
-
},
|
|
268
|
-
id: "
|
|
269
|
-
name: {
|
|
270
|
-
[e.EN_US]: "Content Management System",
|
|
271
|
-
[e.EN_GB]: e.EN_US,
|
|
272
|
-
[e.DE_DE]: "Content-Management-System"
|
|
273
|
-
}
|
|
274
|
-
}, F = {
|
|
275
|
-
id: "concept",
|
|
276
|
-
name: {
|
|
277
|
-
[e.EN_US]: "Concept",
|
|
278
|
-
[e.EN_GB]: e.EN_US,
|
|
279
|
-
[e.DE_DE]: "Konzept"
|
|
280
|
-
}
|
|
281
|
-
}, O = {
|
|
282
|
-
id: "framework",
|
|
283
|
-
name: {
|
|
284
|
-
[e.EN_US]: "Framework",
|
|
285
|
-
[e.EN_GB]: e.EN_US,
|
|
286
|
-
[e.DE_DE]: "Framework"
|
|
287
|
-
}
|
|
288
|
-
}, M = {
|
|
289
|
-
id: "language",
|
|
290
|
-
name: {
|
|
291
|
-
[e.EN_US]: "Language",
|
|
292
|
-
[e.EN_GB]: e.EN_US,
|
|
293
|
-
[e.DE_DE]: "Sprache"
|
|
294
|
-
}
|
|
295
|
-
}, P = {
|
|
296
|
-
id: "library",
|
|
297
|
-
name: {
|
|
298
|
-
[e.EN_US]: "Library",
|
|
299
|
-
[e.EN_GB]: e.EN_US,
|
|
300
|
-
[e.DE_DE]: "Bibliothek"
|
|
301
|
-
}
|
|
302
|
-
}, R = {
|
|
303
|
-
id: "methodology",
|
|
304
|
-
name: {
|
|
305
|
-
[e.EN_US]: "Methodology",
|
|
306
|
-
[e.EN_GB]: e.EN_US,
|
|
307
|
-
[e.DE_DE]: "Methodik"
|
|
308
|
-
}
|
|
309
|
-
}, W = {
|
|
310
|
-
id: "platform",
|
|
311
|
-
name: {
|
|
312
|
-
[e.EN_US]: "Platform"
|
|
313
|
-
}
|
|
314
|
-
}, J = {
|
|
315
|
-
id: "runtime_environment",
|
|
380
|
+
}, V = {
|
|
381
|
+
id: "assembly",
|
|
316
382
|
name: {
|
|
317
|
-
[e.EN_US]: "
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
},
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
[
|
|
326
|
-
[
|
|
327
|
-
|
|
328
|
-
[J.id]: J,
|
|
329
|
-
[W.id]: W
|
|
330
|
-
}, l = S({ obj: Ln, keys: ["name"], useFallback: !1 }), q = {
|
|
383
|
+
[e.EN_US]: "Assembly"
|
|
384
|
+
},
|
|
385
|
+
label: {
|
|
386
|
+
[e.EN_US]: ""
|
|
387
|
+
},
|
|
388
|
+
definition: {
|
|
389
|
+
[e.EN_US]: ""
|
|
390
|
+
},
|
|
391
|
+
type: [i.language],
|
|
392
|
+
tags: []
|
|
393
|
+
}, Q = {
|
|
331
394
|
id: "aws",
|
|
332
395
|
name: {
|
|
333
396
|
[e.EN_US]: "AWS"
|
|
@@ -338,12 +401,12 @@ const e = {
|
|
|
338
401
|
definition: {
|
|
339
402
|
[e.EN_US]: ""
|
|
340
403
|
},
|
|
341
|
-
type: [
|
|
404
|
+
type: [i.platform],
|
|
342
405
|
tags: [],
|
|
343
406
|
links: {
|
|
344
407
|
website: ""
|
|
345
408
|
}
|
|
346
|
-
},
|
|
409
|
+
}, Y = {
|
|
347
410
|
id: "azure",
|
|
348
411
|
name: {
|
|
349
412
|
[e.EN_US]: "Azure"
|
|
@@ -356,7 +419,7 @@ const e = {
|
|
|
356
419
|
},
|
|
357
420
|
type: [],
|
|
358
421
|
tags: []
|
|
359
|
-
},
|
|
422
|
+
}, Z = {
|
|
360
423
|
id: "azure_pipelines",
|
|
361
424
|
name: {
|
|
362
425
|
[e.EN_US]: "Azure Pipelines"
|
|
@@ -369,7 +432,7 @@ const e = {
|
|
|
369
432
|
},
|
|
370
433
|
type: [],
|
|
371
434
|
tags: []
|
|
372
|
-
},
|
|
435
|
+
}, $ = {
|
|
373
436
|
id: "backbone_js",
|
|
374
437
|
name: {
|
|
375
438
|
[e.EN_US]: "Backbone.js"
|
|
@@ -382,7 +445,7 @@ const e = {
|
|
|
382
445
|
},
|
|
383
446
|
type: [],
|
|
384
447
|
tags: []
|
|
385
|
-
},
|
|
448
|
+
}, X = {
|
|
386
449
|
id: "bash",
|
|
387
450
|
name: {
|
|
388
451
|
[e.EN_US]: "Bash"
|
|
@@ -393,9 +456,9 @@ const e = {
|
|
|
393
456
|
definition: {
|
|
394
457
|
[e.EN_US]: ""
|
|
395
458
|
},
|
|
396
|
-
type: [],
|
|
459
|
+
type: [i.language],
|
|
397
460
|
tags: []
|
|
398
|
-
},
|
|
461
|
+
}, ee = {
|
|
399
462
|
id: "bdd",
|
|
400
463
|
name: {
|
|
401
464
|
[e.EN_US]: "BDD"
|
|
@@ -408,7 +471,7 @@ const e = {
|
|
|
408
471
|
},
|
|
409
472
|
type: [],
|
|
410
473
|
tags: []
|
|
411
|
-
},
|
|
474
|
+
}, ie = {
|
|
412
475
|
id: "beanstalk",
|
|
413
476
|
name: {
|
|
414
477
|
[e.EN_US]: "Beanstalk"
|
|
@@ -421,7 +484,7 @@ const e = {
|
|
|
421
484
|
},
|
|
422
485
|
type: [],
|
|
423
486
|
tags: []
|
|
424
|
-
},
|
|
487
|
+
}, te = {
|
|
425
488
|
id: "big_js",
|
|
426
489
|
name: {
|
|
427
490
|
[e.EN_US]: "Big.js"
|
|
@@ -434,7 +497,7 @@ const e = {
|
|
|
434
497
|
},
|
|
435
498
|
type: [],
|
|
436
499
|
tags: []
|
|
437
|
-
},
|
|
500
|
+
}, ne = {
|
|
438
501
|
id: "biome",
|
|
439
502
|
name: {
|
|
440
503
|
[e.EN_US]: "Biome"
|
|
@@ -447,7 +510,7 @@ const e = {
|
|
|
447
510
|
},
|
|
448
511
|
type: [],
|
|
449
512
|
tags: []
|
|
450
|
-
},
|
|
513
|
+
}, ae = {
|
|
451
514
|
id: "bitbucket_pipelines",
|
|
452
515
|
name: {
|
|
453
516
|
[e.EN_US]: "Bitbucket Pipelines"
|
|
@@ -460,7 +523,7 @@ const e = {
|
|
|
460
523
|
},
|
|
461
524
|
type: [],
|
|
462
525
|
tags: []
|
|
463
|
-
},
|
|
526
|
+
}, se = {
|
|
464
527
|
id: "bitcoin",
|
|
465
528
|
name: {
|
|
466
529
|
[e.EN_US]: "Bitcoin"
|
|
@@ -473,7 +536,7 @@ const e = {
|
|
|
473
536
|
},
|
|
474
537
|
type: [],
|
|
475
538
|
tags: []
|
|
476
|
-
},
|
|
539
|
+
}, _e = {
|
|
477
540
|
id: "blockchain",
|
|
478
541
|
name: {
|
|
479
542
|
[e.EN_US]: "Blockchain"
|
|
@@ -486,7 +549,7 @@ const e = {
|
|
|
486
549
|
},
|
|
487
550
|
type: [],
|
|
488
551
|
tags: []
|
|
489
|
-
},
|
|
552
|
+
}, oe = {
|
|
490
553
|
id: "bootstrap",
|
|
491
554
|
name: {
|
|
492
555
|
[e.EN_US]: "Bootstrap"
|
|
@@ -499,7 +562,7 @@ const e = {
|
|
|
499
562
|
},
|
|
500
563
|
type: [],
|
|
501
564
|
tags: []
|
|
502
|
-
},
|
|
565
|
+
}, de = {
|
|
503
566
|
id: "browserify",
|
|
504
567
|
name: {
|
|
505
568
|
[e.EN_US]: "Browserify"
|
|
@@ -512,7 +575,7 @@ const e = {
|
|
|
512
575
|
},
|
|
513
576
|
type: [],
|
|
514
577
|
tags: []
|
|
515
|
-
},
|
|
578
|
+
}, Ee = {
|
|
516
579
|
id: "browserstack",
|
|
517
580
|
name: {
|
|
518
581
|
[e.EN_US]: "BrowserStack"
|
|
@@ -525,7 +588,7 @@ const e = {
|
|
|
525
588
|
},
|
|
526
589
|
type: [],
|
|
527
590
|
tags: []
|
|
528
|
-
},
|
|
591
|
+
}, Se = {
|
|
529
592
|
id: "bugzilla",
|
|
530
593
|
name: {
|
|
531
594
|
[e.EN_US]: "Bugzilla"
|
|
@@ -538,7 +601,7 @@ const e = {
|
|
|
538
601
|
},
|
|
539
602
|
type: [],
|
|
540
603
|
tags: []
|
|
541
|
-
},
|
|
604
|
+
}, le = {
|
|
542
605
|
id: "c_sharp",
|
|
543
606
|
name: {
|
|
544
607
|
[e.EN_US]: "C#"
|
|
@@ -549,9 +612,9 @@ const e = {
|
|
|
549
612
|
definition: {
|
|
550
613
|
[e.EN_US]: ""
|
|
551
614
|
},
|
|
552
|
-
type: [],
|
|
615
|
+
type: [i.language],
|
|
553
616
|
tags: []
|
|
554
|
-
},
|
|
617
|
+
}, Ne = {
|
|
555
618
|
id: "cakephp",
|
|
556
619
|
name: {
|
|
557
620
|
[e.EN_US]: "CakePHP"
|
|
@@ -564,7 +627,7 @@ const e = {
|
|
|
564
627
|
},
|
|
565
628
|
type: [],
|
|
566
629
|
tags: []
|
|
567
|
-
},
|
|
630
|
+
}, Ue = {
|
|
568
631
|
id: "chart_js",
|
|
569
632
|
name: {
|
|
570
633
|
[e.EN_US]: "Chart.js"
|
|
@@ -577,7 +640,7 @@ const e = {
|
|
|
577
640
|
},
|
|
578
641
|
type: [],
|
|
579
642
|
tags: []
|
|
580
|
-
},
|
|
643
|
+
}, ce = {
|
|
581
644
|
id: "ci_cd",
|
|
582
645
|
name: {
|
|
583
646
|
[e.EN_US]: "CI/CD"
|
|
@@ -590,7 +653,7 @@ const e = {
|
|
|
590
653
|
},
|
|
591
654
|
type: [],
|
|
592
655
|
tags: []
|
|
593
|
-
},
|
|
656
|
+
}, re = {
|
|
594
657
|
id: "circle_ci",
|
|
595
658
|
name: {
|
|
596
659
|
[e.EN_US]: "CircleCI"
|
|
@@ -603,7 +666,7 @@ const e = {
|
|
|
603
666
|
},
|
|
604
667
|
type: [],
|
|
605
668
|
tags: []
|
|
606
|
-
},
|
|
669
|
+
}, ge = {
|
|
607
670
|
id: "claude_code",
|
|
608
671
|
name: {
|
|
609
672
|
[e.EN_US]: "Claude Code"
|
|
@@ -616,7 +679,7 @@ const e = {
|
|
|
616
679
|
},
|
|
617
680
|
type: [],
|
|
618
681
|
tags: []
|
|
619
|
-
},
|
|
682
|
+
}, me = {
|
|
620
683
|
id: "clean_code",
|
|
621
684
|
name: {
|
|
622
685
|
[e.EN_US]: "Clean Code"
|
|
@@ -629,7 +692,20 @@ const e = {
|
|
|
629
692
|
},
|
|
630
693
|
type: [],
|
|
631
694
|
tags: []
|
|
632
|
-
},
|
|
695
|
+
}, pe = {
|
|
696
|
+
id: "clojure",
|
|
697
|
+
name: {
|
|
698
|
+
[e.EN_US]: "Clojure"
|
|
699
|
+
},
|
|
700
|
+
label: {
|
|
701
|
+
[e.EN_US]: ""
|
|
702
|
+
},
|
|
703
|
+
definition: {
|
|
704
|
+
[e.EN_US]: ""
|
|
705
|
+
},
|
|
706
|
+
type: [i.language],
|
|
707
|
+
tags: []
|
|
708
|
+
}, be = {
|
|
633
709
|
id: "cloudflare",
|
|
634
710
|
name: {
|
|
635
711
|
[e.EN_US]: "Cloudflare"
|
|
@@ -642,7 +718,7 @@ const e = {
|
|
|
642
718
|
},
|
|
643
719
|
type: [],
|
|
644
720
|
tags: []
|
|
645
|
-
},
|
|
721
|
+
}, ye = {
|
|
646
722
|
id: "codacy",
|
|
647
723
|
name: {
|
|
648
724
|
[e.EN_US]: "Codacy"
|
|
@@ -655,7 +731,7 @@ const e = {
|
|
|
655
731
|
},
|
|
656
732
|
type: [],
|
|
657
733
|
tags: []
|
|
658
|
-
},
|
|
734
|
+
}, fe = {
|
|
659
735
|
id: "codeigniter",
|
|
660
736
|
name: {
|
|
661
737
|
[e.EN_US]: "CodeIgniter"
|
|
@@ -668,7 +744,7 @@ const e = {
|
|
|
668
744
|
},
|
|
669
745
|
type: [],
|
|
670
746
|
tags: []
|
|
671
|
-
},
|
|
747
|
+
}, ue = {
|
|
672
748
|
id: "confluence",
|
|
673
749
|
name: {
|
|
674
750
|
[e.EN_US]: "Confluence"
|
|
@@ -681,10 +757,12 @@ const e = {
|
|
|
681
757
|
},
|
|
682
758
|
type: [],
|
|
683
759
|
tags: []
|
|
684
|
-
},
|
|
760
|
+
}, he = {
|
|
685
761
|
id: "contentful",
|
|
686
762
|
name: {
|
|
687
|
-
[e.EN_US]: "Contentful"
|
|
763
|
+
[e.EN_US]: "Contentful",
|
|
764
|
+
[e.EN_GB]: e.EN_US,
|
|
765
|
+
[e.DE_DE]: e.EN_US
|
|
688
766
|
},
|
|
689
767
|
label: {
|
|
690
768
|
[e.EN_US]: ""
|
|
@@ -692,9 +770,9 @@ const e = {
|
|
|
692
770
|
definition: {
|
|
693
771
|
[e.EN_US]: ""
|
|
694
772
|
},
|
|
695
|
-
type: [],
|
|
773
|
+
type: [i.cms],
|
|
696
774
|
tags: []
|
|
697
|
-
},
|
|
775
|
+
}, ke = {
|
|
698
776
|
id: "cplusplus",
|
|
699
777
|
name: {
|
|
700
778
|
[e.EN_US]: "C++"
|
|
@@ -705,12 +783,14 @@ const e = {
|
|
|
705
783
|
definition: {
|
|
706
784
|
[e.EN_US]: ""
|
|
707
785
|
},
|
|
708
|
-
type: [],
|
|
786
|
+
type: [i.language],
|
|
709
787
|
tags: []
|
|
710
|
-
},
|
|
788
|
+
}, De = {
|
|
711
789
|
id: "craft_cms",
|
|
712
790
|
name: {
|
|
713
|
-
[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
|
|
714
794
|
},
|
|
715
795
|
label: {
|
|
716
796
|
[e.EN_US]: ""
|
|
@@ -718,9 +798,9 @@ const e = {
|
|
|
718
798
|
definition: {
|
|
719
799
|
[e.EN_US]: ""
|
|
720
800
|
},
|
|
721
|
-
type: [],
|
|
801
|
+
type: [i.cms],
|
|
722
802
|
tags: []
|
|
723
|
-
},
|
|
803
|
+
}, we = {
|
|
724
804
|
id: "cs_cart",
|
|
725
805
|
name: {
|
|
726
806
|
[e.EN_US]: "CS-Cart"
|
|
@@ -733,7 +813,7 @@ const e = {
|
|
|
733
813
|
},
|
|
734
814
|
type: [],
|
|
735
815
|
tags: []
|
|
736
|
-
},
|
|
816
|
+
}, ve = {
|
|
737
817
|
id: "css",
|
|
738
818
|
name: {
|
|
739
819
|
[e.EN_US]: "CSS"
|
|
@@ -744,9 +824,9 @@ const e = {
|
|
|
744
824
|
definition: {
|
|
745
825
|
[e.EN_US]: ""
|
|
746
826
|
},
|
|
747
|
-
type: [],
|
|
827
|
+
type: [i.language],
|
|
748
828
|
tags: []
|
|
749
|
-
},
|
|
829
|
+
}, Ae = {
|
|
750
830
|
id: "css_in_js",
|
|
751
831
|
name: {
|
|
752
832
|
[e.EN_US]: "CSS-in-JS"
|
|
@@ -759,7 +839,7 @@ const e = {
|
|
|
759
839
|
},
|
|
760
840
|
type: [],
|
|
761
841
|
tags: []
|
|
762
|
-
},
|
|
842
|
+
}, Be = {
|
|
763
843
|
id: "css_modules",
|
|
764
844
|
name: {
|
|
765
845
|
[e.EN_US]: "CSS Modules"
|
|
@@ -772,7 +852,7 @@ const e = {
|
|
|
772
852
|
},
|
|
773
853
|
type: [],
|
|
774
854
|
tags: []
|
|
775
|
-
},
|
|
855
|
+
}, Le = {
|
|
776
856
|
id: "cucumber",
|
|
777
857
|
name: {
|
|
778
858
|
[e.EN_US]: "Cucumber"
|
|
@@ -785,7 +865,7 @@ const e = {
|
|
|
785
865
|
},
|
|
786
866
|
type: [],
|
|
787
867
|
tags: []
|
|
788
|
-
},
|
|
868
|
+
}, je = {
|
|
789
869
|
id: "cvs",
|
|
790
870
|
name: {
|
|
791
871
|
[e.EN_US]: "CVS"
|
|
@@ -798,7 +878,7 @@ const e = {
|
|
|
798
878
|
},
|
|
799
879
|
type: [],
|
|
800
880
|
tags: []
|
|
801
|
-
},
|
|
881
|
+
}, Ge = {
|
|
802
882
|
id: "cypress",
|
|
803
883
|
name: {
|
|
804
884
|
[e.EN_US]: "Cypress"
|
|
@@ -811,7 +891,20 @@ const e = {
|
|
|
811
891
|
},
|
|
812
892
|
type: [],
|
|
813
893
|
tags: []
|
|
814
|
-
},
|
|
894
|
+
}, Ce = {
|
|
895
|
+
id: "dart",
|
|
896
|
+
name: {
|
|
897
|
+
[e.EN_US]: "Dart"
|
|
898
|
+
},
|
|
899
|
+
label: {
|
|
900
|
+
[e.EN_US]: ""
|
|
901
|
+
},
|
|
902
|
+
definition: {
|
|
903
|
+
[e.EN_US]: ""
|
|
904
|
+
},
|
|
905
|
+
type: [i.language],
|
|
906
|
+
tags: []
|
|
907
|
+
}, Te = {
|
|
815
908
|
id: "ddd",
|
|
816
909
|
name: {
|
|
817
910
|
[e.EN_US]: "DDD"
|
|
@@ -824,7 +917,7 @@ const e = {
|
|
|
824
917
|
},
|
|
825
918
|
type: [],
|
|
826
919
|
tags: []
|
|
827
|
-
},
|
|
920
|
+
}, ze = {
|
|
828
921
|
id: "digital_ocean",
|
|
829
922
|
name: {
|
|
830
923
|
[e.EN_US]: "Digital Ocean"
|
|
@@ -837,7 +930,7 @@ const e = {
|
|
|
837
930
|
},
|
|
838
931
|
type: [],
|
|
839
932
|
tags: []
|
|
840
|
-
},
|
|
933
|
+
}, xe = {
|
|
841
934
|
id: "docker",
|
|
842
935
|
name: {
|
|
843
936
|
[e.EN_US]: "Docker"
|
|
@@ -850,7 +943,7 @@ const e = {
|
|
|
850
943
|
},
|
|
851
944
|
type: [],
|
|
852
945
|
tags: []
|
|
853
|
-
},
|
|
946
|
+
}, Oe = {
|
|
854
947
|
id: "docusaurus",
|
|
855
948
|
name: {
|
|
856
949
|
[e.EN_US]: "Docusaurus"
|
|
@@ -863,7 +956,7 @@ const e = {
|
|
|
863
956
|
},
|
|
864
957
|
type: [],
|
|
865
958
|
tags: []
|
|
866
|
-
},
|
|
959
|
+
}, Fe = {
|
|
867
960
|
id: "dot_net",
|
|
868
961
|
name: {
|
|
869
962
|
[e.EN_US]: ".NET"
|
|
@@ -876,7 +969,7 @@ const e = {
|
|
|
876
969
|
},
|
|
877
970
|
type: [],
|
|
878
971
|
tags: []
|
|
879
|
-
},
|
|
972
|
+
}, Pe = {
|
|
880
973
|
id: "dreamweaver",
|
|
881
974
|
name: {
|
|
882
975
|
[e.EN_US]: "Dreamweaver"
|
|
@@ -889,7 +982,7 @@ const e = {
|
|
|
889
982
|
},
|
|
890
983
|
type: [],
|
|
891
984
|
tags: []
|
|
892
|
-
},
|
|
985
|
+
}, Me = {
|
|
893
986
|
id: "dynatrace",
|
|
894
987
|
name: {
|
|
895
988
|
[e.EN_US]: "Dynatrace"
|
|
@@ -902,20 +995,31 @@ const e = {
|
|
|
902
995
|
},
|
|
903
996
|
type: [],
|
|
904
997
|
tags: []
|
|
905
|
-
},
|
|
998
|
+
}, Re = {
|
|
906
999
|
id: "e2e",
|
|
907
1000
|
name: {
|
|
908
|
-
[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"
|
|
909
1009
|
},
|
|
910
1010
|
label: {
|
|
911
|
-
[e.EN_US]: "Testing Methodology"
|
|
1011
|
+
[e.EN_US]: "Testing Methodology",
|
|
1012
|
+
[e.EN_GB]: e.EN_US,
|
|
1013
|
+
[e.DE_DE]: "Testmethodik"
|
|
912
1014
|
},
|
|
913
1015
|
definition: {
|
|
914
|
-
[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."
|
|
915
1019
|
},
|
|
916
|
-
type: [
|
|
917
|
-
tags: [
|
|
918
|
-
},
|
|
1020
|
+
type: [i.concept, i.methodology],
|
|
1021
|
+
tags: [o.testing, o.automation, o.qa, o.e2e]
|
|
1022
|
+
}, Ie = {
|
|
919
1023
|
id: "encryption",
|
|
920
1024
|
name: {
|
|
921
1025
|
[e.EN_US]: "Encryption"
|
|
@@ -928,7 +1032,20 @@ const e = {
|
|
|
928
1032
|
},
|
|
929
1033
|
type: [],
|
|
930
1034
|
tags: []
|
|
931
|
-
},
|
|
1035
|
+
}, Je = {
|
|
1036
|
+
id: "erlang",
|
|
1037
|
+
name: {
|
|
1038
|
+
[e.EN_US]: "Erlang"
|
|
1039
|
+
},
|
|
1040
|
+
label: {
|
|
1041
|
+
[e.EN_US]: ""
|
|
1042
|
+
},
|
|
1043
|
+
definition: {
|
|
1044
|
+
[e.EN_US]: ""
|
|
1045
|
+
},
|
|
1046
|
+
type: [i.language],
|
|
1047
|
+
tags: []
|
|
1048
|
+
}, Ke = {
|
|
932
1049
|
id: "es_build",
|
|
933
1050
|
name: {
|
|
934
1051
|
[e.EN_US]: "esbuild"
|
|
@@ -941,7 +1058,7 @@ const e = {
|
|
|
941
1058
|
},
|
|
942
1059
|
type: [],
|
|
943
1060
|
tags: []
|
|
944
|
-
},
|
|
1061
|
+
}, We = {
|
|
945
1062
|
id: "eslint",
|
|
946
1063
|
name: {
|
|
947
1064
|
[e.EN_US]: "ESLint"
|
|
@@ -954,7 +1071,7 @@ const e = {
|
|
|
954
1071
|
},
|
|
955
1072
|
type: [],
|
|
956
1073
|
tags: []
|
|
957
|
-
},
|
|
1074
|
+
}, qe = {
|
|
958
1075
|
id: "excel",
|
|
959
1076
|
name: {
|
|
960
1077
|
[e.EN_US]: "Excel"
|
|
@@ -967,7 +1084,7 @@ const e = {
|
|
|
967
1084
|
},
|
|
968
1085
|
type: [],
|
|
969
1086
|
tags: []
|
|
970
|
-
},
|
|
1087
|
+
}, He = {
|
|
971
1088
|
id: "express",
|
|
972
1089
|
name: {
|
|
973
1090
|
[e.EN_US]: "Express"
|
|
@@ -980,10 +1097,12 @@ const e = {
|
|
|
980
1097
|
},
|
|
981
1098
|
type: [],
|
|
982
1099
|
tags: []
|
|
983
|
-
},
|
|
1100
|
+
}, Ve = {
|
|
984
1101
|
id: "expression_engine",
|
|
985
1102
|
name: {
|
|
986
|
-
[e.EN_US]: "ExpressionEngine
|
|
1103
|
+
[e.EN_US]: "ExpressionEngine",
|
|
1104
|
+
[e.EN_GB]: e.EN_US,
|
|
1105
|
+
[e.DE_DE]: e.EN_US
|
|
987
1106
|
},
|
|
988
1107
|
label: {
|
|
989
1108
|
[e.EN_US]: ""
|
|
@@ -991,9 +1110,22 @@ const e = {
|
|
|
991
1110
|
definition: {
|
|
992
1111
|
[e.EN_US]: ""
|
|
993
1112
|
},
|
|
994
|
-
type: [],
|
|
1113
|
+
type: [i.cms],
|
|
995
1114
|
tags: []
|
|
996
|
-
},
|
|
1115
|
+
}, Qe = {
|
|
1116
|
+
id: "f_sharp",
|
|
1117
|
+
name: {
|
|
1118
|
+
[e.EN_US]: "F#"
|
|
1119
|
+
},
|
|
1120
|
+
label: {
|
|
1121
|
+
[e.EN_US]: ""
|
|
1122
|
+
},
|
|
1123
|
+
definition: {
|
|
1124
|
+
[e.EN_US]: ""
|
|
1125
|
+
},
|
|
1126
|
+
type: [i.language],
|
|
1127
|
+
tags: []
|
|
1128
|
+
}, Ye = {
|
|
997
1129
|
id: "fhir",
|
|
998
1130
|
name: {
|
|
999
1131
|
[e.EN_US]: "FHIR"
|
|
@@ -1006,7 +1138,7 @@ const e = {
|
|
|
1006
1138
|
},
|
|
1007
1139
|
type: [],
|
|
1008
1140
|
tags: []
|
|
1009
|
-
},
|
|
1141
|
+
}, Ze = {
|
|
1010
1142
|
id: "figma",
|
|
1011
1143
|
name: {
|
|
1012
1144
|
[e.EN_US]: "Figma"
|
|
@@ -1019,7 +1151,7 @@ const e = {
|
|
|
1019
1151
|
},
|
|
1020
1152
|
type: [],
|
|
1021
1153
|
tags: []
|
|
1022
|
-
},
|
|
1154
|
+
}, $e = {
|
|
1023
1155
|
id: "filezilla",
|
|
1024
1156
|
name: {
|
|
1025
1157
|
[e.EN_US]: "FileZilla"
|
|
@@ -1032,7 +1164,7 @@ const e = {
|
|
|
1032
1164
|
},
|
|
1033
1165
|
type: [],
|
|
1034
1166
|
tags: []
|
|
1035
|
-
},
|
|
1167
|
+
}, Xe = {
|
|
1036
1168
|
id: "firebase",
|
|
1037
1169
|
name: {
|
|
1038
1170
|
[e.EN_US]: "Firebase"
|
|
@@ -1045,10 +1177,12 @@ const e = {
|
|
|
1045
1177
|
},
|
|
1046
1178
|
type: [],
|
|
1047
1179
|
tags: []
|
|
1048
|
-
},
|
|
1180
|
+
}, ei = {
|
|
1049
1181
|
id: "flamelink",
|
|
1050
1182
|
name: {
|
|
1051
|
-
[e.EN_US]: "Flamelink
|
|
1183
|
+
[e.EN_US]: "Flamelink",
|
|
1184
|
+
[e.EN_GB]: e.EN_US,
|
|
1185
|
+
[e.DE_DE]: e.EN_US
|
|
1052
1186
|
},
|
|
1053
1187
|
label: {
|
|
1054
1188
|
[e.EN_US]: ""
|
|
@@ -1056,9 +1190,9 @@ const e = {
|
|
|
1056
1190
|
definition: {
|
|
1057
1191
|
[e.EN_US]: ""
|
|
1058
1192
|
},
|
|
1059
|
-
type: [],
|
|
1193
|
+
type: [i.cms],
|
|
1060
1194
|
tags: []
|
|
1061
|
-
},
|
|
1195
|
+
}, ii = {
|
|
1062
1196
|
id: "flutter",
|
|
1063
1197
|
name: {
|
|
1064
1198
|
[e.EN_US]: "Flutter"
|
|
@@ -1071,7 +1205,20 @@ const e = {
|
|
|
1071
1205
|
},
|
|
1072
1206
|
type: [],
|
|
1073
1207
|
tags: []
|
|
1074
|
-
},
|
|
1208
|
+
}, ti = {
|
|
1209
|
+
id: "fortran",
|
|
1210
|
+
name: {
|
|
1211
|
+
[e.EN_US]: "Fortran"
|
|
1212
|
+
},
|
|
1213
|
+
label: {
|
|
1214
|
+
[e.EN_US]: ""
|
|
1215
|
+
},
|
|
1216
|
+
definition: {
|
|
1217
|
+
[e.EN_US]: ""
|
|
1218
|
+
},
|
|
1219
|
+
type: [i.language],
|
|
1220
|
+
tags: []
|
|
1221
|
+
}, ni = {
|
|
1075
1222
|
id: "foundation",
|
|
1076
1223
|
name: {
|
|
1077
1224
|
[e.EN_US]: "Foundation"
|
|
@@ -1084,7 +1231,7 @@ const e = {
|
|
|
1084
1231
|
},
|
|
1085
1232
|
type: [],
|
|
1086
1233
|
tags: []
|
|
1087
|
-
},
|
|
1234
|
+
}, ai = {
|
|
1088
1235
|
id: "ftp",
|
|
1089
1236
|
name: {
|
|
1090
1237
|
[e.EN_US]: "FTP"
|
|
@@ -1097,7 +1244,7 @@ const e = {
|
|
|
1097
1244
|
},
|
|
1098
1245
|
type: [],
|
|
1099
1246
|
tags: []
|
|
1100
|
-
},
|
|
1247
|
+
}, si = {
|
|
1101
1248
|
id: "gatsby",
|
|
1102
1249
|
name: {
|
|
1103
1250
|
[e.EN_US]: "Gatsby"
|
|
@@ -1110,7 +1257,7 @@ const e = {
|
|
|
1110
1257
|
},
|
|
1111
1258
|
type: [],
|
|
1112
1259
|
tags: []
|
|
1113
|
-
},
|
|
1260
|
+
}, _i = {
|
|
1114
1261
|
id: "gcp",
|
|
1115
1262
|
name: {
|
|
1116
1263
|
[e.EN_US]: "GCP"
|
|
@@ -1123,7 +1270,7 @@ const e = {
|
|
|
1123
1270
|
},
|
|
1124
1271
|
type: [],
|
|
1125
1272
|
tags: []
|
|
1126
|
-
},
|
|
1273
|
+
}, oi = {
|
|
1127
1274
|
id: "git",
|
|
1128
1275
|
name: {
|
|
1129
1276
|
[e.EN_US]: "Git"
|
|
@@ -1136,7 +1283,7 @@ const e = {
|
|
|
1136
1283
|
},
|
|
1137
1284
|
type: [],
|
|
1138
1285
|
tags: []
|
|
1139
|
-
},
|
|
1286
|
+
}, di = {
|
|
1140
1287
|
id: "github",
|
|
1141
1288
|
name: {
|
|
1142
1289
|
[e.EN_US]: "GitHub"
|
|
@@ -1149,7 +1296,7 @@ const e = {
|
|
|
1149
1296
|
},
|
|
1150
1297
|
type: [],
|
|
1151
1298
|
tags: []
|
|
1152
|
-
},
|
|
1299
|
+
}, Ei = {
|
|
1153
1300
|
id: "github_actions",
|
|
1154
1301
|
name: {
|
|
1155
1302
|
[e.EN_US]: "GitHub Actions"
|
|
@@ -1162,7 +1309,7 @@ const e = {
|
|
|
1162
1309
|
},
|
|
1163
1310
|
type: [],
|
|
1164
1311
|
tags: []
|
|
1165
|
-
},
|
|
1312
|
+
}, Si = {
|
|
1166
1313
|
id: "gitlab",
|
|
1167
1314
|
name: {
|
|
1168
1315
|
[e.EN_US]: "GitLab"
|
|
@@ -1175,7 +1322,7 @@ const e = {
|
|
|
1175
1322
|
},
|
|
1176
1323
|
type: [],
|
|
1177
1324
|
tags: []
|
|
1178
|
-
},
|
|
1325
|
+
}, li = {
|
|
1179
1326
|
id: "gitlab_ci",
|
|
1180
1327
|
name: {
|
|
1181
1328
|
[e.EN_US]: "GitLab CI"
|
|
@@ -1188,7 +1335,7 @@ const e = {
|
|
|
1188
1335
|
},
|
|
1189
1336
|
type: [],
|
|
1190
1337
|
tags: []
|
|
1191
|
-
},
|
|
1338
|
+
}, Ni = {
|
|
1192
1339
|
id: "golang",
|
|
1193
1340
|
name: {
|
|
1194
1341
|
[e.EN_US]: "Go"
|
|
@@ -1199,9 +1346,9 @@ const e = {
|
|
|
1199
1346
|
definition: {
|
|
1200
1347
|
[e.EN_US]: ""
|
|
1201
1348
|
},
|
|
1202
|
-
type: [],
|
|
1349
|
+
type: [i.language],
|
|
1203
1350
|
tags: []
|
|
1204
|
-
},
|
|
1351
|
+
}, Ui = {
|
|
1205
1352
|
id: "google_analytics",
|
|
1206
1353
|
name: {
|
|
1207
1354
|
[e.EN_US]: "Google Analytics"
|
|
@@ -1214,7 +1361,7 @@ const e = {
|
|
|
1214
1361
|
},
|
|
1215
1362
|
type: [],
|
|
1216
1363
|
tags: []
|
|
1217
|
-
},
|
|
1364
|
+
}, ci = {
|
|
1218
1365
|
id: "google_app_engine",
|
|
1219
1366
|
name: {
|
|
1220
1367
|
[e.EN_US]: "Google App Engine"
|
|
@@ -1227,7 +1374,7 @@ const e = {
|
|
|
1227
1374
|
},
|
|
1228
1375
|
type: [],
|
|
1229
1376
|
tags: []
|
|
1230
|
-
},
|
|
1377
|
+
}, ri = {
|
|
1231
1378
|
id: "google_business",
|
|
1232
1379
|
name: {
|
|
1233
1380
|
[e.EN_US]: "Google Business"
|
|
@@ -1240,7 +1387,7 @@ const e = {
|
|
|
1240
1387
|
},
|
|
1241
1388
|
type: [],
|
|
1242
1389
|
tags: []
|
|
1243
|
-
},
|
|
1390
|
+
}, gi = {
|
|
1244
1391
|
id: "google_maps_api",
|
|
1245
1392
|
name: {
|
|
1246
1393
|
[e.EN_US]: "Google Maps API"
|
|
@@ -1253,7 +1400,7 @@ const e = {
|
|
|
1253
1400
|
},
|
|
1254
1401
|
type: [],
|
|
1255
1402
|
tags: []
|
|
1256
|
-
},
|
|
1403
|
+
}, mi = {
|
|
1257
1404
|
id: "graphql",
|
|
1258
1405
|
name: {
|
|
1259
1406
|
[e.EN_US]: "GraphQL"
|
|
@@ -1266,7 +1413,20 @@ const e = {
|
|
|
1266
1413
|
},
|
|
1267
1414
|
type: [],
|
|
1268
1415
|
tags: []
|
|
1269
|
-
},
|
|
1416
|
+
}, pi = {
|
|
1417
|
+
id: "groovy",
|
|
1418
|
+
name: {
|
|
1419
|
+
[e.EN_US]: "Groovy"
|
|
1420
|
+
},
|
|
1421
|
+
label: {
|
|
1422
|
+
[e.EN_US]: ""
|
|
1423
|
+
},
|
|
1424
|
+
definition: {
|
|
1425
|
+
[e.EN_US]: ""
|
|
1426
|
+
},
|
|
1427
|
+
type: [i.language],
|
|
1428
|
+
tags: []
|
|
1429
|
+
}, bi = {
|
|
1270
1430
|
id: "grunt",
|
|
1271
1431
|
name: {
|
|
1272
1432
|
[e.EN_US]: "Grunt"
|
|
@@ -1279,7 +1439,7 @@ const e = {
|
|
|
1279
1439
|
},
|
|
1280
1440
|
type: [],
|
|
1281
1441
|
tags: []
|
|
1282
|
-
},
|
|
1442
|
+
}, yi = {
|
|
1283
1443
|
id: "gulp",
|
|
1284
1444
|
name: {
|
|
1285
1445
|
[e.EN_US]: "Gulp"
|
|
@@ -1292,10 +1452,23 @@ const e = {
|
|
|
1292
1452
|
},
|
|
1293
1453
|
type: [],
|
|
1294
1454
|
tags: []
|
|
1295
|
-
},
|
|
1455
|
+
}, fi = {
|
|
1296
1456
|
id: "handlebars",
|
|
1297
1457
|
name: {
|
|
1298
|
-
[e.EN_US]: "Handlebars"
|
|
1458
|
+
[e.EN_US]: "Handlebars"
|
|
1459
|
+
},
|
|
1460
|
+
label: {
|
|
1461
|
+
[e.EN_US]: ""
|
|
1462
|
+
},
|
|
1463
|
+
definition: {
|
|
1464
|
+
[e.EN_US]: ""
|
|
1465
|
+
},
|
|
1466
|
+
type: [],
|
|
1467
|
+
tags: []
|
|
1468
|
+
}, ui = {
|
|
1469
|
+
id: "handsontable",
|
|
1470
|
+
name: {
|
|
1471
|
+
[e.EN_US]: "Handsontable"
|
|
1299
1472
|
},
|
|
1300
1473
|
label: {
|
|
1301
1474
|
[e.EN_US]: ""
|
|
@@ -1305,10 +1478,10 @@ const e = {
|
|
|
1305
1478
|
},
|
|
1306
1479
|
type: [],
|
|
1307
1480
|
tags: []
|
|
1308
|
-
},
|
|
1309
|
-
id: "
|
|
1481
|
+
}, hi = {
|
|
1482
|
+
id: "haskell",
|
|
1310
1483
|
name: {
|
|
1311
|
-
[e.EN_US]: "
|
|
1484
|
+
[e.EN_US]: "Haskell"
|
|
1312
1485
|
},
|
|
1313
1486
|
label: {
|
|
1314
1487
|
[e.EN_US]: ""
|
|
@@ -1316,9 +1489,9 @@ const e = {
|
|
|
1316
1489
|
definition: {
|
|
1317
1490
|
[e.EN_US]: ""
|
|
1318
1491
|
},
|
|
1319
|
-
type: [],
|
|
1492
|
+
type: [i.language],
|
|
1320
1493
|
tags: []
|
|
1321
|
-
},
|
|
1494
|
+
}, ki = {
|
|
1322
1495
|
id: "hetzner",
|
|
1323
1496
|
name: {
|
|
1324
1497
|
[e.EN_US]: "Hetzner"
|
|
@@ -1331,7 +1504,7 @@ const e = {
|
|
|
1331
1504
|
},
|
|
1332
1505
|
type: [],
|
|
1333
1506
|
tags: []
|
|
1334
|
-
},
|
|
1507
|
+
}, Di = {
|
|
1335
1508
|
id: "hl7",
|
|
1336
1509
|
name: {
|
|
1337
1510
|
[e.EN_US]: "HL7"
|
|
@@ -1344,7 +1517,7 @@ const e = {
|
|
|
1344
1517
|
},
|
|
1345
1518
|
type: [],
|
|
1346
1519
|
tags: []
|
|
1347
|
-
},
|
|
1520
|
+
}, wi = {
|
|
1348
1521
|
id: "html",
|
|
1349
1522
|
name: {
|
|
1350
1523
|
[e.EN_US]: "HTML"
|
|
@@ -1355,9 +1528,9 @@ const e = {
|
|
|
1355
1528
|
definition: {
|
|
1356
1529
|
[e.EN_US]: ""
|
|
1357
1530
|
},
|
|
1358
|
-
type: [],
|
|
1531
|
+
type: [i.language],
|
|
1359
1532
|
tags: []
|
|
1360
|
-
},
|
|
1533
|
+
}, vi = {
|
|
1361
1534
|
id: "htmx",
|
|
1362
1535
|
name: {
|
|
1363
1536
|
[e.EN_US]: "HTMX"
|
|
@@ -1370,7 +1543,7 @@ const e = {
|
|
|
1370
1543
|
},
|
|
1371
1544
|
type: [],
|
|
1372
1545
|
tags: []
|
|
1373
|
-
},
|
|
1546
|
+
}, Ai = {
|
|
1374
1547
|
id: "i18n",
|
|
1375
1548
|
name: {
|
|
1376
1549
|
[e.EN_US]: "i18n"
|
|
@@ -1383,7 +1556,7 @@ const e = {
|
|
|
1383
1556
|
},
|
|
1384
1557
|
type: [],
|
|
1385
1558
|
tags: []
|
|
1386
|
-
},
|
|
1559
|
+
}, Bi = {
|
|
1387
1560
|
id: "ionic",
|
|
1388
1561
|
name: {
|
|
1389
1562
|
[e.EN_US]: "Ionic Framework"
|
|
@@ -1396,7 +1569,7 @@ const e = {
|
|
|
1396
1569
|
},
|
|
1397
1570
|
type: [],
|
|
1398
1571
|
tags: []
|
|
1399
|
-
},
|
|
1572
|
+
}, Li = {
|
|
1400
1573
|
id: "jasmine",
|
|
1401
1574
|
name: {
|
|
1402
1575
|
[e.EN_US]: "Jasmine"
|
|
@@ -1409,7 +1582,20 @@ const e = {
|
|
|
1409
1582
|
},
|
|
1410
1583
|
type: [],
|
|
1411
1584
|
tags: []
|
|
1412
|
-
},
|
|
1585
|
+
}, ji = {
|
|
1586
|
+
id: "java",
|
|
1587
|
+
name: {
|
|
1588
|
+
[e.EN_US]: "Java"
|
|
1589
|
+
},
|
|
1590
|
+
label: {
|
|
1591
|
+
[e.EN_US]: ""
|
|
1592
|
+
},
|
|
1593
|
+
definition: {
|
|
1594
|
+
[e.EN_US]: ""
|
|
1595
|
+
},
|
|
1596
|
+
type: [i.language],
|
|
1597
|
+
tags: []
|
|
1598
|
+
}, Gi = {
|
|
1413
1599
|
id: "javascript",
|
|
1414
1600
|
name: {
|
|
1415
1601
|
[e.EN_US]: "JavaScript"
|
|
@@ -1421,13 +1607,13 @@ const e = {
|
|
|
1421
1607
|
definition: {
|
|
1422
1608
|
[e.EN_US]: ""
|
|
1423
1609
|
},
|
|
1424
|
-
type: [
|
|
1425
|
-
tags: [
|
|
1610
|
+
type: [i.language],
|
|
1611
|
+
tags: [o.frontend, o.backend, o.open_source],
|
|
1426
1612
|
links: {
|
|
1427
1613
|
website: "https://tc39.es/ecma262",
|
|
1428
1614
|
wikipedia: "https://en.wikipedia.org/wiki/JavaScript"
|
|
1429
1615
|
}
|
|
1430
|
-
},
|
|
1616
|
+
}, Ci = {
|
|
1431
1617
|
id: "jenkins",
|
|
1432
1618
|
name: {
|
|
1433
1619
|
[e.EN_US]: "Jenkins"
|
|
@@ -1440,7 +1626,7 @@ const e = {
|
|
|
1440
1626
|
},
|
|
1441
1627
|
type: [],
|
|
1442
1628
|
tags: []
|
|
1443
|
-
},
|
|
1629
|
+
}, Ti = {
|
|
1444
1630
|
id: "jest",
|
|
1445
1631
|
name: {
|
|
1446
1632
|
[e.EN_US]: "Jest"
|
|
@@ -1453,7 +1639,7 @@ const e = {
|
|
|
1453
1639
|
},
|
|
1454
1640
|
type: [],
|
|
1455
1641
|
tags: []
|
|
1456
|
-
},
|
|
1642
|
+
}, zi = {
|
|
1457
1643
|
id: "jira",
|
|
1458
1644
|
name: {
|
|
1459
1645
|
[e.EN_US]: "Jira"
|
|
@@ -1466,7 +1652,7 @@ const e = {
|
|
|
1466
1652
|
},
|
|
1467
1653
|
type: [],
|
|
1468
1654
|
tags: []
|
|
1469
|
-
},
|
|
1655
|
+
}, xi = {
|
|
1470
1656
|
id: "jquery",
|
|
1471
1657
|
name: {
|
|
1472
1658
|
[e.EN_US]: "jQuery"
|
|
@@ -1479,7 +1665,7 @@ const e = {
|
|
|
1479
1665
|
},
|
|
1480
1666
|
type: [],
|
|
1481
1667
|
tags: []
|
|
1482
|
-
},
|
|
1668
|
+
}, Oi = {
|
|
1483
1669
|
id: "js",
|
|
1484
1670
|
name: {
|
|
1485
1671
|
[e.EN_US]: "JavaScript"
|
|
@@ -1492,7 +1678,7 @@ const e = {
|
|
|
1492
1678
|
},
|
|
1493
1679
|
type: [],
|
|
1494
1680
|
tags: []
|
|
1495
|
-
},
|
|
1681
|
+
}, Fi = {
|
|
1496
1682
|
id: "kanban",
|
|
1497
1683
|
name: {
|
|
1498
1684
|
[e.EN_US]: "Kanban"
|
|
@@ -1505,7 +1691,7 @@ const e = {
|
|
|
1505
1691
|
},
|
|
1506
1692
|
type: [],
|
|
1507
1693
|
tags: []
|
|
1508
|
-
},
|
|
1694
|
+
}, Pi = {
|
|
1509
1695
|
id: "karma",
|
|
1510
1696
|
name: {
|
|
1511
1697
|
[e.EN_US]: "Karma"
|
|
@@ -1518,7 +1704,20 @@ const e = {
|
|
|
1518
1704
|
},
|
|
1519
1705
|
type: [],
|
|
1520
1706
|
tags: []
|
|
1521
|
-
},
|
|
1707
|
+
}, Mi = {
|
|
1708
|
+
id: "kotlin",
|
|
1709
|
+
name: {
|
|
1710
|
+
[e.EN_US]: "Kotlin"
|
|
1711
|
+
},
|
|
1712
|
+
label: {
|
|
1713
|
+
[e.EN_US]: ""
|
|
1714
|
+
},
|
|
1715
|
+
definition: {
|
|
1716
|
+
[e.EN_US]: ""
|
|
1717
|
+
},
|
|
1718
|
+
type: [i.language],
|
|
1719
|
+
tags: []
|
|
1720
|
+
}, Ri = {
|
|
1522
1721
|
id: "kubernetes",
|
|
1523
1722
|
name: {
|
|
1524
1723
|
[e.EN_US]: "Kubernetes"
|
|
@@ -1531,7 +1730,7 @@ const e = {
|
|
|
1531
1730
|
},
|
|
1532
1731
|
type: [],
|
|
1533
1732
|
tags: []
|
|
1534
|
-
},
|
|
1733
|
+
}, Ii = {
|
|
1535
1734
|
id: "laravel",
|
|
1536
1735
|
name: {
|
|
1537
1736
|
[e.EN_US]: "Laravel"
|
|
@@ -1544,7 +1743,7 @@ const e = {
|
|
|
1544
1743
|
},
|
|
1545
1744
|
type: [],
|
|
1546
1745
|
tags: []
|
|
1547
|
-
},
|
|
1746
|
+
}, Ji = {
|
|
1548
1747
|
id: "legacy_migration",
|
|
1549
1748
|
name: {
|
|
1550
1749
|
[e.EN_US]: "Legacy Migration"
|
|
@@ -1557,7 +1756,7 @@ const e = {
|
|
|
1557
1756
|
},
|
|
1558
1757
|
type: [],
|
|
1559
1758
|
tags: []
|
|
1560
|
-
},
|
|
1759
|
+
}, Ki = {
|
|
1561
1760
|
id: "lexical",
|
|
1562
1761
|
name: {
|
|
1563
1762
|
[e.EN_US]: "Lexical"
|
|
@@ -1570,7 +1769,7 @@ const e = {
|
|
|
1570
1769
|
},
|
|
1571
1770
|
type: [],
|
|
1572
1771
|
tags: []
|
|
1573
|
-
},
|
|
1772
|
+
}, Wi = {
|
|
1574
1773
|
id: "linux",
|
|
1575
1774
|
name: {
|
|
1576
1775
|
[e.EN_US]: "Linux"
|
|
@@ -1583,7 +1782,20 @@ const e = {
|
|
|
1583
1782
|
},
|
|
1584
1783
|
type: [],
|
|
1585
1784
|
tags: []
|
|
1586
|
-
},
|
|
1785
|
+
}, qi = {
|
|
1786
|
+
id: "lua",
|
|
1787
|
+
name: {
|
|
1788
|
+
[e.EN_US]: "Lua"
|
|
1789
|
+
},
|
|
1790
|
+
label: {
|
|
1791
|
+
[e.EN_US]: ""
|
|
1792
|
+
},
|
|
1793
|
+
definition: {
|
|
1794
|
+
[e.EN_US]: ""
|
|
1795
|
+
},
|
|
1796
|
+
type: [i.language],
|
|
1797
|
+
tags: []
|
|
1798
|
+
}, Hi = {
|
|
1587
1799
|
id: "mac_os",
|
|
1588
1800
|
name: {
|
|
1589
1801
|
[e.EN_US]: "Mac OS"
|
|
@@ -1596,7 +1808,7 @@ const e = {
|
|
|
1596
1808
|
},
|
|
1597
1809
|
type: [],
|
|
1598
1810
|
tags: []
|
|
1599
|
-
},
|
|
1811
|
+
}, Vi = {
|
|
1600
1812
|
id: "mail_blaze",
|
|
1601
1813
|
name: {
|
|
1602
1814
|
[e.EN_US]: "Mail Blaze"
|
|
@@ -1609,7 +1821,7 @@ const e = {
|
|
|
1609
1821
|
},
|
|
1610
1822
|
type: [],
|
|
1611
1823
|
tags: []
|
|
1612
|
-
},
|
|
1824
|
+
}, Qi = {
|
|
1613
1825
|
id: "mailchimp",
|
|
1614
1826
|
name: {
|
|
1615
1827
|
[e.EN_US]: "Mailchimp"
|
|
@@ -1622,7 +1834,7 @@ const e = {
|
|
|
1622
1834
|
},
|
|
1623
1835
|
type: [],
|
|
1624
1836
|
tags: []
|
|
1625
|
-
},
|
|
1837
|
+
}, Yi = {
|
|
1626
1838
|
id: "make",
|
|
1627
1839
|
name: {
|
|
1628
1840
|
[e.EN_US]: "Make"
|
|
@@ -1635,7 +1847,7 @@ const e = {
|
|
|
1635
1847
|
},
|
|
1636
1848
|
type: [],
|
|
1637
1849
|
tags: []
|
|
1638
|
-
},
|
|
1850
|
+
}, Zi = {
|
|
1639
1851
|
id: "marionette",
|
|
1640
1852
|
name: {
|
|
1641
1853
|
[e.EN_US]: "Marionette.js"
|
|
@@ -1648,7 +1860,20 @@ const e = {
|
|
|
1648
1860
|
},
|
|
1649
1861
|
type: [],
|
|
1650
1862
|
tags: []
|
|
1651
|
-
},
|
|
1863
|
+
}, $i = {
|
|
1864
|
+
id: "matlab",
|
|
1865
|
+
name: {
|
|
1866
|
+
[e.EN_US]: "MATLAB"
|
|
1867
|
+
},
|
|
1868
|
+
label: {
|
|
1869
|
+
[e.EN_US]: ""
|
|
1870
|
+
},
|
|
1871
|
+
definition: {
|
|
1872
|
+
[e.EN_US]: ""
|
|
1873
|
+
},
|
|
1874
|
+
type: [i.language],
|
|
1875
|
+
tags: []
|
|
1876
|
+
}, Xi = {
|
|
1652
1877
|
id: "maven",
|
|
1653
1878
|
name: {
|
|
1654
1879
|
[e.EN_US]: "Maven"
|
|
@@ -1661,7 +1886,7 @@ const e = {
|
|
|
1661
1886
|
},
|
|
1662
1887
|
type: [],
|
|
1663
1888
|
tags: []
|
|
1664
|
-
},
|
|
1889
|
+
}, et = {
|
|
1665
1890
|
id: "meta_mask",
|
|
1666
1891
|
name: {
|
|
1667
1892
|
[e.EN_US]: "MetaMask"
|
|
@@ -1674,7 +1899,7 @@ const e = {
|
|
|
1674
1899
|
},
|
|
1675
1900
|
type: [],
|
|
1676
1901
|
tags: []
|
|
1677
|
-
},
|
|
1902
|
+
}, it = {
|
|
1678
1903
|
id: "microsoft_sql_server",
|
|
1679
1904
|
name: {
|
|
1680
1905
|
[e.EN_US]: "Microsoft SQL Server"
|
|
@@ -1687,7 +1912,7 @@ const e = {
|
|
|
1687
1912
|
},
|
|
1688
1913
|
type: [],
|
|
1689
1914
|
tags: []
|
|
1690
|
-
},
|
|
1915
|
+
}, tt = {
|
|
1691
1916
|
id: "mongo_db",
|
|
1692
1917
|
name: {
|
|
1693
1918
|
[e.EN_US]: "MongoDB"
|
|
@@ -1700,7 +1925,7 @@ const e = {
|
|
|
1700
1925
|
},
|
|
1701
1926
|
type: [],
|
|
1702
1927
|
tags: []
|
|
1703
|
-
},
|
|
1928
|
+
}, nt = {
|
|
1704
1929
|
id: "mui",
|
|
1705
1930
|
name: {
|
|
1706
1931
|
[e.EN_US]: "Material UI"
|
|
@@ -1713,7 +1938,7 @@ const e = {
|
|
|
1713
1938
|
},
|
|
1714
1939
|
type: [],
|
|
1715
1940
|
tags: []
|
|
1716
|
-
},
|
|
1941
|
+
}, at = {
|
|
1717
1942
|
id: "mysql",
|
|
1718
1943
|
name: {
|
|
1719
1944
|
[e.EN_US]: "MySQL"
|
|
@@ -1726,7 +1951,7 @@ const e = {
|
|
|
1726
1951
|
},
|
|
1727
1952
|
type: [],
|
|
1728
1953
|
tags: []
|
|
1729
|
-
},
|
|
1954
|
+
}, st = {
|
|
1730
1955
|
id: "navicat",
|
|
1731
1956
|
name: {
|
|
1732
1957
|
[e.EN_US]: "Navicat"
|
|
@@ -1739,7 +1964,7 @@ const e = {
|
|
|
1739
1964
|
},
|
|
1740
1965
|
type: [],
|
|
1741
1966
|
tags: []
|
|
1742
|
-
},
|
|
1967
|
+
}, _t = {
|
|
1743
1968
|
id: "nest_js",
|
|
1744
1969
|
name: {
|
|
1745
1970
|
[e.EN_US]: "NestJS"
|
|
@@ -1752,7 +1977,7 @@ const e = {
|
|
|
1752
1977
|
},
|
|
1753
1978
|
type: [],
|
|
1754
1979
|
tags: []
|
|
1755
|
-
},
|
|
1980
|
+
}, ot = {
|
|
1756
1981
|
id: "netbeans",
|
|
1757
1982
|
name: {
|
|
1758
1983
|
[e.EN_US]: "NetBeans"
|
|
@@ -1765,7 +1990,7 @@ const e = {
|
|
|
1765
1990
|
},
|
|
1766
1991
|
type: [],
|
|
1767
1992
|
tags: []
|
|
1768
|
-
},
|
|
1993
|
+
}, dt = {
|
|
1769
1994
|
id: "netlify",
|
|
1770
1995
|
name: {
|
|
1771
1996
|
[e.EN_US]: "Netlify"
|
|
@@ -1778,7 +2003,7 @@ const e = {
|
|
|
1778
2003
|
},
|
|
1779
2004
|
type: [],
|
|
1780
2005
|
tags: []
|
|
1781
|
-
},
|
|
2006
|
+
}, Et = {
|
|
1782
2007
|
id: "new_relic",
|
|
1783
2008
|
name: {
|
|
1784
2009
|
[e.EN_US]: "New Relic"
|
|
@@ -1791,10 +2016,12 @@ const e = {
|
|
|
1791
2016
|
},
|
|
1792
2017
|
type: [],
|
|
1793
2018
|
tags: []
|
|
1794
|
-
},
|
|
2019
|
+
}, St = {
|
|
1795
2020
|
id: "next_js",
|
|
1796
2021
|
name: {
|
|
1797
|
-
[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
|
|
1798
2025
|
},
|
|
1799
2026
|
label: {
|
|
1800
2027
|
[e.EN_US]: ""
|
|
@@ -1802,9 +2029,9 @@ const e = {
|
|
|
1802
2029
|
definition: {
|
|
1803
2030
|
[e.EN_US]: ""
|
|
1804
2031
|
},
|
|
1805
|
-
type: [],
|
|
2032
|
+
type: [i.framework],
|
|
1806
2033
|
tags: []
|
|
1807
|
-
},
|
|
2034
|
+
}, lt = {
|
|
1808
2035
|
id: "nexudus",
|
|
1809
2036
|
name: {
|
|
1810
2037
|
[e.EN_US]: "Nexudus"
|
|
@@ -1817,7 +2044,7 @@ const e = {
|
|
|
1817
2044
|
},
|
|
1818
2045
|
type: [],
|
|
1819
2046
|
tags: []
|
|
1820
|
-
},
|
|
2047
|
+
}, Nt = {
|
|
1821
2048
|
id: "nft",
|
|
1822
2049
|
name: {
|
|
1823
2050
|
[e.EN_US]: "NFT"
|
|
@@ -1830,7 +2057,7 @@ const e = {
|
|
|
1830
2057
|
},
|
|
1831
2058
|
type: [],
|
|
1832
2059
|
tags: []
|
|
1833
|
-
},
|
|
2060
|
+
}, Ut = {
|
|
1834
2061
|
id: "nginx",
|
|
1835
2062
|
name: {
|
|
1836
2063
|
[e.EN_US]: "Nginx"
|
|
@@ -1843,7 +2070,7 @@ const e = {
|
|
|
1843
2070
|
},
|
|
1844
2071
|
type: [],
|
|
1845
2072
|
tags: []
|
|
1846
|
-
},
|
|
2073
|
+
}, ct = {
|
|
1847
2074
|
id: "nightsbridge",
|
|
1848
2075
|
name: {
|
|
1849
2076
|
[e.EN_US]: "Nightsbridge"
|
|
@@ -1856,7 +2083,7 @@ const e = {
|
|
|
1856
2083
|
},
|
|
1857
2084
|
type: [],
|
|
1858
2085
|
tags: []
|
|
1859
|
-
},
|
|
2086
|
+
}, rt = {
|
|
1860
2087
|
id: "node",
|
|
1861
2088
|
name: {
|
|
1862
2089
|
[e.EN_US]: "Node.js"
|
|
@@ -1869,7 +2096,7 @@ const e = {
|
|
|
1869
2096
|
},
|
|
1870
2097
|
type: [],
|
|
1871
2098
|
tags: []
|
|
1872
|
-
},
|
|
2099
|
+
}, gt = {
|
|
1873
2100
|
id: "node_js",
|
|
1874
2101
|
name: {
|
|
1875
2102
|
[e.EN_US]: "Node.js"
|
|
@@ -1882,12 +2109,12 @@ const e = {
|
|
|
1882
2109
|
[e.EN_US]: "Node.js is a free, open-source, cross-platform JavaScript runtime environment that lets developers create servers, web apps, command line tools and scripts.",
|
|
1883
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."
|
|
1884
2111
|
},
|
|
1885
|
-
type: [
|
|
1886
|
-
tags: [
|
|
2112
|
+
type: [i.runtime_environment],
|
|
2113
|
+
tags: [o.backend],
|
|
1887
2114
|
links: {
|
|
1888
2115
|
website: "https://nodejs.org"
|
|
1889
2116
|
}
|
|
1890
|
-
},
|
|
2117
|
+
}, mt = {
|
|
1891
2118
|
id: "node_mailer",
|
|
1892
2119
|
name: {
|
|
1893
2120
|
[e.EN_US]: "Nodemailer"
|
|
@@ -1900,7 +2127,7 @@ const e = {
|
|
|
1900
2127
|
},
|
|
1901
2128
|
type: [],
|
|
1902
2129
|
tags: []
|
|
1903
|
-
},
|
|
2130
|
+
}, pt = {
|
|
1904
2131
|
id: "nosql",
|
|
1905
2132
|
name: {
|
|
1906
2133
|
[e.EN_US]: "NoSQL"
|
|
@@ -1913,7 +2140,7 @@ const e = {
|
|
|
1913
2140
|
},
|
|
1914
2141
|
type: [],
|
|
1915
2142
|
tags: []
|
|
1916
|
-
},
|
|
2143
|
+
}, bt = {
|
|
1917
2144
|
id: "nx",
|
|
1918
2145
|
name: {
|
|
1919
2146
|
[e.EN_US]: "Nx"
|
|
@@ -1926,7 +2153,33 @@ const e = {
|
|
|
1926
2153
|
},
|
|
1927
2154
|
type: [],
|
|
1928
2155
|
tags: []
|
|
1929
|
-
},
|
|
2156
|
+
}, yt = {
|
|
2157
|
+
id: "objective_c",
|
|
2158
|
+
name: {
|
|
2159
|
+
[e.EN_US]: "Objective-C"
|
|
2160
|
+
},
|
|
2161
|
+
label: {
|
|
2162
|
+
[e.EN_US]: ""
|
|
2163
|
+
},
|
|
2164
|
+
definition: {
|
|
2165
|
+
[e.EN_US]: ""
|
|
2166
|
+
},
|
|
2167
|
+
type: [i.language],
|
|
2168
|
+
tags: []
|
|
2169
|
+
}, ft = {
|
|
2170
|
+
id: "ocaml",
|
|
2171
|
+
name: {
|
|
2172
|
+
[e.EN_US]: "OCaml"
|
|
2173
|
+
},
|
|
2174
|
+
label: {
|
|
2175
|
+
[e.EN_US]: ""
|
|
2176
|
+
},
|
|
2177
|
+
definition: {
|
|
2178
|
+
[e.EN_US]: ""
|
|
2179
|
+
},
|
|
2180
|
+
type: [i.language],
|
|
2181
|
+
tags: []
|
|
2182
|
+
}, ut = {
|
|
1930
2183
|
id: "okta",
|
|
1931
2184
|
name: {
|
|
1932
2185
|
[e.EN_US]: "Okta"
|
|
@@ -1939,7 +2192,7 @@ const e = {
|
|
|
1939
2192
|
},
|
|
1940
2193
|
type: [],
|
|
1941
2194
|
tags: []
|
|
1942
|
-
},
|
|
2195
|
+
}, ht = {
|
|
1943
2196
|
id: "open_ai",
|
|
1944
2197
|
name: {
|
|
1945
2198
|
[e.EN_US]: "OpenAI"
|
|
@@ -1952,7 +2205,7 @@ const e = {
|
|
|
1952
2205
|
},
|
|
1953
2206
|
type: [],
|
|
1954
2207
|
tags: []
|
|
1955
|
-
},
|
|
2208
|
+
}, kt = {
|
|
1956
2209
|
id: "optimizely",
|
|
1957
2210
|
name: {
|
|
1958
2211
|
[e.EN_US]: "Optimizely"
|
|
@@ -1965,7 +2218,7 @@ const e = {
|
|
|
1965
2218
|
},
|
|
1966
2219
|
type: [],
|
|
1967
2220
|
tags: []
|
|
1968
|
-
},
|
|
2221
|
+
}, Dt = {
|
|
1969
2222
|
id: "pathlogix",
|
|
1970
2223
|
name: {
|
|
1971
2224
|
[e.EN_US]: "Pathlogix"
|
|
@@ -1978,7 +2231,20 @@ const e = {
|
|
|
1978
2231
|
},
|
|
1979
2232
|
type: [],
|
|
1980
2233
|
tags: []
|
|
1981
|
-
},
|
|
2234
|
+
}, wt = {
|
|
2235
|
+
id: "perl",
|
|
2236
|
+
name: {
|
|
2237
|
+
[e.EN_US]: "Perl"
|
|
2238
|
+
},
|
|
2239
|
+
label: {
|
|
2240
|
+
[e.EN_US]: ""
|
|
2241
|
+
},
|
|
2242
|
+
definition: {
|
|
2243
|
+
[e.EN_US]: ""
|
|
2244
|
+
},
|
|
2245
|
+
type: [i.language],
|
|
2246
|
+
tags: []
|
|
2247
|
+
}, vt = {
|
|
1982
2248
|
id: "photoshop",
|
|
1983
2249
|
name: {
|
|
1984
2250
|
[e.EN_US]: "Photoshop"
|
|
@@ -1991,7 +2257,7 @@ const e = {
|
|
|
1991
2257
|
},
|
|
1992
2258
|
type: [],
|
|
1993
2259
|
tags: []
|
|
1994
|
-
},
|
|
2260
|
+
}, At = {
|
|
1995
2261
|
id: "php",
|
|
1996
2262
|
name: {
|
|
1997
2263
|
[e.EN_US]: "PHP"
|
|
@@ -2002,9 +2268,9 @@ const e = {
|
|
|
2002
2268
|
definition: {
|
|
2003
2269
|
[e.EN_US]: ""
|
|
2004
2270
|
},
|
|
2005
|
-
type: [],
|
|
2271
|
+
type: [i.language],
|
|
2006
2272
|
tags: []
|
|
2007
|
-
},
|
|
2273
|
+
}, Bt = {
|
|
2008
2274
|
id: "pnpm",
|
|
2009
2275
|
name: {
|
|
2010
2276
|
[e.EN_US]: "pnpm"
|
|
@@ -2017,7 +2283,7 @@ const e = {
|
|
|
2017
2283
|
},
|
|
2018
2284
|
type: [],
|
|
2019
2285
|
tags: []
|
|
2020
|
-
},
|
|
2286
|
+
}, Lt = {
|
|
2021
2287
|
id: "polyglot_js",
|
|
2022
2288
|
name: {
|
|
2023
2289
|
[e.EN_US]: "Polyglot.js"
|
|
@@ -2030,7 +2296,7 @@ const e = {
|
|
|
2030
2296
|
},
|
|
2031
2297
|
type: [],
|
|
2032
2298
|
tags: []
|
|
2033
|
-
},
|
|
2299
|
+
}, jt = {
|
|
2034
2300
|
id: "postgres",
|
|
2035
2301
|
name: {
|
|
2036
2302
|
[e.EN_US]: "PostgreSQL"
|
|
@@ -2043,7 +2309,7 @@ const e = {
|
|
|
2043
2309
|
},
|
|
2044
2310
|
type: [],
|
|
2045
2311
|
tags: []
|
|
2046
|
-
},
|
|
2312
|
+
}, Gt = {
|
|
2047
2313
|
id: "posthog",
|
|
2048
2314
|
name: {
|
|
2049
2315
|
[e.EN_US]: "PostHog"
|
|
@@ -2056,7 +2322,7 @@ const e = {
|
|
|
2056
2322
|
},
|
|
2057
2323
|
type: [],
|
|
2058
2324
|
tags: []
|
|
2059
|
-
},
|
|
2325
|
+
}, Ct = {
|
|
2060
2326
|
id: "prettier",
|
|
2061
2327
|
name: {
|
|
2062
2328
|
[e.EN_US]: "Prettier"
|
|
@@ -2069,7 +2335,7 @@ const e = {
|
|
|
2069
2335
|
},
|
|
2070
2336
|
type: [],
|
|
2071
2337
|
tags: []
|
|
2072
|
-
},
|
|
2338
|
+
}, Tt = {
|
|
2073
2339
|
id: "putty",
|
|
2074
2340
|
name: {
|
|
2075
2341
|
[e.EN_US]: "PuTTY"
|
|
@@ -2082,7 +2348,7 @@ const e = {
|
|
|
2082
2348
|
},
|
|
2083
2349
|
type: [],
|
|
2084
2350
|
tags: []
|
|
2085
|
-
},
|
|
2351
|
+
}, zt = {
|
|
2086
2352
|
id: "pwa",
|
|
2087
2353
|
name: {
|
|
2088
2354
|
[e.EN_US]: "Progressive Web App (PWA)"
|
|
@@ -2095,7 +2361,7 @@ const e = {
|
|
|
2095
2361
|
},
|
|
2096
2362
|
type: [],
|
|
2097
2363
|
tags: []
|
|
2098
|
-
},
|
|
2364
|
+
}, xt = {
|
|
2099
2365
|
id: "python",
|
|
2100
2366
|
name: {
|
|
2101
2367
|
[e.EN_US]: "Python"
|
|
@@ -2106,9 +2372,9 @@ const e = {
|
|
|
2106
2372
|
definition: {
|
|
2107
2373
|
[e.EN_US]: ""
|
|
2108
2374
|
},
|
|
2109
|
-
type: [],
|
|
2375
|
+
type: [i.language],
|
|
2110
2376
|
tags: []
|
|
2111
|
-
},
|
|
2377
|
+
}, Ot = {
|
|
2112
2378
|
id: "quickbooks",
|
|
2113
2379
|
name: {
|
|
2114
2380
|
[e.EN_US]: "QuickBooks"
|
|
@@ -2121,7 +2387,20 @@ const e = {
|
|
|
2121
2387
|
},
|
|
2122
2388
|
type: [],
|
|
2123
2389
|
tags: []
|
|
2124
|
-
},
|
|
2390
|
+
}, Ft = {
|
|
2391
|
+
id: "r",
|
|
2392
|
+
name: {
|
|
2393
|
+
[e.EN_US]: "R"
|
|
2394
|
+
},
|
|
2395
|
+
label: {
|
|
2396
|
+
[e.EN_US]: ""
|
|
2397
|
+
},
|
|
2398
|
+
definition: {
|
|
2399
|
+
[e.EN_US]: ""
|
|
2400
|
+
},
|
|
2401
|
+
type: [i.language],
|
|
2402
|
+
tags: []
|
|
2403
|
+
}, Pt = {
|
|
2125
2404
|
id: "react",
|
|
2126
2405
|
name: {
|
|
2127
2406
|
[e.EN_US]: "React"
|
|
@@ -2134,8 +2413,8 @@ const e = {
|
|
|
2134
2413
|
[e.EN_US]: "A JavaScript library for building component-based user interfaces.",
|
|
2135
2414
|
[e.DE_DE]: "Eine JavaScript-Bibliothek zum Erstellen komponentenbasierter Benutzeroberflächen."
|
|
2136
2415
|
},
|
|
2137
|
-
type: [
|
|
2138
|
-
tags: [
|
|
2416
|
+
type: [i.library],
|
|
2417
|
+
tags: [o.frontend, o.backend, o.javascript, o.open_source, o.ui_library],
|
|
2139
2418
|
links: {
|
|
2140
2419
|
website: "https://react.dev",
|
|
2141
2420
|
npm: "https://www.npmjs.com/package/react",
|
|
@@ -2143,9 +2422,9 @@ const e = {
|
|
|
2143
2422
|
wikipedia: "https://en.wikipedia.org/wiki/React_(software)"
|
|
2144
2423
|
},
|
|
2145
2424
|
sources: {
|
|
2146
|
-
definition:
|
|
2425
|
+
definition: Yn.official_website
|
|
2147
2426
|
}
|
|
2148
|
-
},
|
|
2427
|
+
}, Mt = {
|
|
2149
2428
|
id: "react_hook_form",
|
|
2150
2429
|
name: {
|
|
2151
2430
|
[e.EN_US]: "React Hook Form"
|
|
@@ -2158,7 +2437,7 @@ const e = {
|
|
|
2158
2437
|
},
|
|
2159
2438
|
type: [],
|
|
2160
2439
|
tags: []
|
|
2161
|
-
},
|
|
2440
|
+
}, Rt = {
|
|
2162
2441
|
id: "react_pdf",
|
|
2163
2442
|
name: {
|
|
2164
2443
|
[e.EN_US]: "React PDF"
|
|
@@ -2171,7 +2450,7 @@ const e = {
|
|
|
2171
2450
|
},
|
|
2172
2451
|
type: [],
|
|
2173
2452
|
tags: []
|
|
2174
|
-
},
|
|
2453
|
+
}, It = {
|
|
2175
2454
|
id: "react_testing_library",
|
|
2176
2455
|
name: {
|
|
2177
2456
|
[e.EN_US]: "React Testing Library"
|
|
@@ -2184,7 +2463,7 @@ const e = {
|
|
|
2184
2463
|
},
|
|
2185
2464
|
type: [],
|
|
2186
2465
|
tags: []
|
|
2187
|
-
},
|
|
2466
|
+
}, Jt = {
|
|
2188
2467
|
id: "redux",
|
|
2189
2468
|
name: {
|
|
2190
2469
|
[e.EN_US]: "Redux"
|
|
@@ -2197,7 +2476,7 @@ const e = {
|
|
|
2197
2476
|
},
|
|
2198
2477
|
type: [],
|
|
2199
2478
|
tags: []
|
|
2200
|
-
},
|
|
2479
|
+
}, Kt = {
|
|
2201
2480
|
id: "reflow_soldering",
|
|
2202
2481
|
name: {
|
|
2203
2482
|
[e.EN_US]: "Reflow Soldering"
|
|
@@ -2210,7 +2489,7 @@ const e = {
|
|
|
2210
2489
|
},
|
|
2211
2490
|
type: [],
|
|
2212
2491
|
tags: []
|
|
2213
|
-
},
|
|
2492
|
+
}, Wt = {
|
|
2214
2493
|
id: "resend",
|
|
2215
2494
|
name: {
|
|
2216
2495
|
[e.EN_US]: "Resend"
|
|
@@ -2223,7 +2502,7 @@ const e = {
|
|
|
2223
2502
|
},
|
|
2224
2503
|
type: [],
|
|
2225
2504
|
tags: []
|
|
2226
|
-
},
|
|
2505
|
+
}, qt = {
|
|
2227
2506
|
id: "rest_api",
|
|
2228
2507
|
name: {
|
|
2229
2508
|
[e.EN_US]: "REST API"
|
|
@@ -2236,7 +2515,7 @@ const e = {
|
|
|
2236
2515
|
},
|
|
2237
2516
|
type: [],
|
|
2238
2517
|
tags: []
|
|
2239
|
-
},
|
|
2518
|
+
}, Ht = {
|
|
2240
2519
|
id: "rsync",
|
|
2241
2520
|
name: {
|
|
2242
2521
|
[e.EN_US]: "rsync"
|
|
@@ -2247,12 +2526,40 @@ const e = {
|
|
|
2247
2526
|
definition: {
|
|
2248
2527
|
[e.EN_US]: ""
|
|
2249
2528
|
},
|
|
2250
|
-
type: [],
|
|
2529
|
+
type: [],
|
|
2530
|
+
tags: []
|
|
2531
|
+
}, Vt = {
|
|
2532
|
+
id: "ruby",
|
|
2533
|
+
name: {
|
|
2534
|
+
[e.EN_US]: "Ruby"
|
|
2535
|
+
},
|
|
2536
|
+
label: {
|
|
2537
|
+
[e.EN_US]: ""
|
|
2538
|
+
},
|
|
2539
|
+
definition: {
|
|
2540
|
+
[e.EN_US]: ""
|
|
2541
|
+
},
|
|
2542
|
+
type: [i.language],
|
|
2543
|
+
tags: []
|
|
2544
|
+
}, Qt = {
|
|
2545
|
+
id: "rust",
|
|
2546
|
+
name: {
|
|
2547
|
+
[e.EN_US]: "Rust"
|
|
2548
|
+
},
|
|
2549
|
+
label: {
|
|
2550
|
+
[e.EN_US]: ""
|
|
2551
|
+
},
|
|
2552
|
+
definition: {
|
|
2553
|
+
[e.EN_US]: ""
|
|
2554
|
+
},
|
|
2555
|
+
type: [i.language],
|
|
2251
2556
|
tags: []
|
|
2252
|
-
},
|
|
2557
|
+
}, Yt = {
|
|
2253
2558
|
id: "sanity",
|
|
2254
2559
|
name: {
|
|
2255
|
-
[e.EN_US]: "Sanity
|
|
2560
|
+
[e.EN_US]: "Sanity",
|
|
2561
|
+
[e.EN_GB]: e.EN_US,
|
|
2562
|
+
[e.DE_DE]: e.EN_US
|
|
2256
2563
|
},
|
|
2257
2564
|
label: {
|
|
2258
2565
|
[e.EN_US]: ""
|
|
@@ -2260,9 +2567,9 @@ const e = {
|
|
|
2260
2567
|
definition: {
|
|
2261
2568
|
[e.EN_US]: ""
|
|
2262
2569
|
},
|
|
2263
|
-
type: [],
|
|
2570
|
+
type: [i.cms],
|
|
2264
2571
|
tags: []
|
|
2265
|
-
},
|
|
2572
|
+
}, Zt = {
|
|
2266
2573
|
id: "sass",
|
|
2267
2574
|
name: {
|
|
2268
2575
|
[e.EN_US]: "SASS"
|
|
@@ -2275,7 +2582,20 @@ const e = {
|
|
|
2275
2582
|
},
|
|
2276
2583
|
type: [],
|
|
2277
2584
|
tags: []
|
|
2278
|
-
},
|
|
2585
|
+
}, $t = {
|
|
2586
|
+
id: "scala",
|
|
2587
|
+
name: {
|
|
2588
|
+
[e.EN_US]: "Scala"
|
|
2589
|
+
},
|
|
2590
|
+
label: {
|
|
2591
|
+
[e.EN_US]: ""
|
|
2592
|
+
},
|
|
2593
|
+
definition: {
|
|
2594
|
+
[e.EN_US]: ""
|
|
2595
|
+
},
|
|
2596
|
+
type: [i.language],
|
|
2597
|
+
tags: []
|
|
2598
|
+
}, Xt = {
|
|
2279
2599
|
id: "scrum",
|
|
2280
2600
|
name: {
|
|
2281
2601
|
[e.EN_US]: "Scrum"
|
|
@@ -2288,7 +2608,7 @@ const e = {
|
|
|
2288
2608
|
},
|
|
2289
2609
|
type: [],
|
|
2290
2610
|
tags: []
|
|
2291
|
-
},
|
|
2611
|
+
}, en = {
|
|
2292
2612
|
id: "sendgrid",
|
|
2293
2613
|
name: {
|
|
2294
2614
|
[e.EN_US]: "SendGrid"
|
|
@@ -2301,7 +2621,7 @@ const e = {
|
|
|
2301
2621
|
},
|
|
2302
2622
|
type: [],
|
|
2303
2623
|
tags: []
|
|
2304
|
-
},
|
|
2624
|
+
}, tn = {
|
|
2305
2625
|
id: "sentry",
|
|
2306
2626
|
name: {
|
|
2307
2627
|
[e.EN_US]: "Sentry"
|
|
@@ -2314,7 +2634,7 @@ const e = {
|
|
|
2314
2634
|
},
|
|
2315
2635
|
type: [],
|
|
2316
2636
|
tags: []
|
|
2317
|
-
},
|
|
2637
|
+
}, nn = {
|
|
2318
2638
|
id: "service_workers",
|
|
2319
2639
|
name: {
|
|
2320
2640
|
[e.EN_US]: "Service Workers"
|
|
@@ -2327,7 +2647,7 @@ const e = {
|
|
|
2327
2647
|
},
|
|
2328
2648
|
type: [],
|
|
2329
2649
|
tags: []
|
|
2330
|
-
},
|
|
2650
|
+
}, an = {
|
|
2331
2651
|
id: "shadcn",
|
|
2332
2652
|
name: {
|
|
2333
2653
|
[e.EN_US]: "Shadcn"
|
|
@@ -2340,7 +2660,7 @@ const e = {
|
|
|
2340
2660
|
},
|
|
2341
2661
|
type: [],
|
|
2342
2662
|
tags: []
|
|
2343
|
-
},
|
|
2663
|
+
}, sn = {
|
|
2344
2664
|
id: "smarty",
|
|
2345
2665
|
name: {
|
|
2346
2666
|
[e.EN_US]: "Smarty"
|
|
@@ -2353,7 +2673,7 @@ const e = {
|
|
|
2353
2673
|
},
|
|
2354
2674
|
type: [],
|
|
2355
2675
|
tags: []
|
|
2356
|
-
},
|
|
2676
|
+
}, _n = {
|
|
2357
2677
|
id: "snyk",
|
|
2358
2678
|
name: {
|
|
2359
2679
|
[e.EN_US]: "Snyk"
|
|
@@ -2366,7 +2686,7 @@ const e = {
|
|
|
2366
2686
|
},
|
|
2367
2687
|
type: [],
|
|
2368
2688
|
tags: []
|
|
2369
|
-
},
|
|
2689
|
+
}, on = {
|
|
2370
2690
|
id: "socket_io",
|
|
2371
2691
|
name: {
|
|
2372
2692
|
[e.EN_US]: "Socket.io"
|
|
@@ -2379,7 +2699,7 @@ const e = {
|
|
|
2379
2699
|
},
|
|
2380
2700
|
type: [],
|
|
2381
2701
|
tags: []
|
|
2382
|
-
},
|
|
2702
|
+
}, dn = {
|
|
2383
2703
|
id: "splunk",
|
|
2384
2704
|
name: {
|
|
2385
2705
|
[e.EN_US]: "Splunk"
|
|
@@ -2392,7 +2712,7 @@ const e = {
|
|
|
2392
2712
|
},
|
|
2393
2713
|
type: [],
|
|
2394
2714
|
tags: []
|
|
2395
|
-
},
|
|
2715
|
+
}, En = {
|
|
2396
2716
|
id: "sql",
|
|
2397
2717
|
name: {
|
|
2398
2718
|
[e.EN_US]: "SQL"
|
|
@@ -2403,9 +2723,9 @@ const e = {
|
|
|
2403
2723
|
definition: {
|
|
2404
2724
|
[e.EN_US]: ""
|
|
2405
2725
|
},
|
|
2406
|
-
type: [],
|
|
2726
|
+
type: [i.language],
|
|
2407
2727
|
tags: []
|
|
2408
|
-
},
|
|
2728
|
+
}, Sn = {
|
|
2409
2729
|
id: "sql_lite",
|
|
2410
2730
|
name: {
|
|
2411
2731
|
[e.EN_US]: "SQLite"
|
|
@@ -2418,7 +2738,7 @@ const e = {
|
|
|
2418
2738
|
},
|
|
2419
2739
|
type: [],
|
|
2420
2740
|
tags: []
|
|
2421
|
-
},
|
|
2741
|
+
}, ln = {
|
|
2422
2742
|
id: "ssh",
|
|
2423
2743
|
name: {
|
|
2424
2744
|
[e.EN_US]: "SSH"
|
|
@@ -2431,7 +2751,7 @@ const e = {
|
|
|
2431
2751
|
},
|
|
2432
2752
|
type: [],
|
|
2433
2753
|
tags: []
|
|
2434
|
-
},
|
|
2754
|
+
}, Nn = {
|
|
2435
2755
|
id: "storybook",
|
|
2436
2756
|
name: {
|
|
2437
2757
|
[e.EN_US]: "Storybook"
|
|
@@ -2444,7 +2764,7 @@ const e = {
|
|
|
2444
2764
|
},
|
|
2445
2765
|
type: [],
|
|
2446
2766
|
tags: []
|
|
2447
|
-
},
|
|
2767
|
+
}, Un = {
|
|
2448
2768
|
id: "stripe",
|
|
2449
2769
|
name: {
|
|
2450
2770
|
[e.EN_US]: "Stripe"
|
|
@@ -2457,7 +2777,7 @@ const e = {
|
|
|
2457
2777
|
},
|
|
2458
2778
|
type: [],
|
|
2459
2779
|
tags: []
|
|
2460
|
-
},
|
|
2780
|
+
}, cn = {
|
|
2461
2781
|
id: "styled_components",
|
|
2462
2782
|
name: {
|
|
2463
2783
|
[e.EN_US]: "Styled Components"
|
|
@@ -2470,7 +2790,7 @@ const e = {
|
|
|
2470
2790
|
},
|
|
2471
2791
|
type: [],
|
|
2472
2792
|
tags: []
|
|
2473
|
-
},
|
|
2793
|
+
}, rn = {
|
|
2474
2794
|
id: "sublime_text",
|
|
2475
2795
|
name: {
|
|
2476
2796
|
[e.EN_US]: "Sublime Text"
|
|
@@ -2483,7 +2803,7 @@ const e = {
|
|
|
2483
2803
|
},
|
|
2484
2804
|
type: [],
|
|
2485
2805
|
tags: []
|
|
2486
|
-
},
|
|
2806
|
+
}, gn = {
|
|
2487
2807
|
id: "supabase",
|
|
2488
2808
|
name: {
|
|
2489
2809
|
[e.EN_US]: "Supabase"
|
|
@@ -2496,7 +2816,7 @@ const e = {
|
|
|
2496
2816
|
},
|
|
2497
2817
|
type: [],
|
|
2498
2818
|
tags: []
|
|
2499
|
-
},
|
|
2819
|
+
}, mn = {
|
|
2500
2820
|
id: "svn",
|
|
2501
2821
|
name: {
|
|
2502
2822
|
[e.EN_US]: "SVN"
|
|
@@ -2509,7 +2829,20 @@ const e = {
|
|
|
2509
2829
|
},
|
|
2510
2830
|
type: [],
|
|
2511
2831
|
tags: []
|
|
2512
|
-
},
|
|
2832
|
+
}, pn = {
|
|
2833
|
+
id: "swift",
|
|
2834
|
+
name: {
|
|
2835
|
+
[e.EN_US]: "Swift"
|
|
2836
|
+
},
|
|
2837
|
+
label: {
|
|
2838
|
+
[e.EN_US]: ""
|
|
2839
|
+
},
|
|
2840
|
+
definition: {
|
|
2841
|
+
[e.EN_US]: ""
|
|
2842
|
+
},
|
|
2843
|
+
type: [i.language],
|
|
2844
|
+
tags: []
|
|
2845
|
+
}, bn = {
|
|
2513
2846
|
id: "tailwind",
|
|
2514
2847
|
name: {
|
|
2515
2848
|
[e.EN_US]: "Tailwind CSS"
|
|
@@ -2522,7 +2855,7 @@ const e = {
|
|
|
2522
2855
|
},
|
|
2523
2856
|
type: [],
|
|
2524
2857
|
tags: []
|
|
2525
|
-
},
|
|
2858
|
+
}, yn = {
|
|
2526
2859
|
id: "tanstack",
|
|
2527
2860
|
name: {
|
|
2528
2861
|
[e.EN_US]: "Tanstack"
|
|
@@ -2535,7 +2868,7 @@ const e = {
|
|
|
2535
2868
|
},
|
|
2536
2869
|
type: [],
|
|
2537
2870
|
tags: []
|
|
2538
|
-
},
|
|
2871
|
+
}, fn = {
|
|
2539
2872
|
id: "tanstack_query",
|
|
2540
2873
|
name: {
|
|
2541
2874
|
[e.EN_US]: "Tanstack Query"
|
|
@@ -2548,7 +2881,7 @@ const e = {
|
|
|
2548
2881
|
},
|
|
2549
2882
|
type: [],
|
|
2550
2883
|
tags: []
|
|
2551
|
-
},
|
|
2884
|
+
}, un = {
|
|
2552
2885
|
id: "templ",
|
|
2553
2886
|
name: {
|
|
2554
2887
|
[e.EN_US]: "Templ"
|
|
@@ -2561,7 +2894,7 @@ const e = {
|
|
|
2561
2894
|
},
|
|
2562
2895
|
type: [],
|
|
2563
2896
|
tags: []
|
|
2564
|
-
},
|
|
2897
|
+
}, hn = {
|
|
2565
2898
|
id: "terraform",
|
|
2566
2899
|
name: {
|
|
2567
2900
|
[e.EN_US]: "Terraform"
|
|
@@ -2574,7 +2907,7 @@ const e = {
|
|
|
2574
2907
|
},
|
|
2575
2908
|
type: [],
|
|
2576
2909
|
tags: []
|
|
2577
|
-
},
|
|
2910
|
+
}, kn = {
|
|
2578
2911
|
id: "trello",
|
|
2579
2912
|
name: {
|
|
2580
2913
|
[e.EN_US]: "Trello"
|
|
@@ -2587,7 +2920,7 @@ const e = {
|
|
|
2587
2920
|
},
|
|
2588
2921
|
type: [],
|
|
2589
2922
|
tags: []
|
|
2590
|
-
},
|
|
2923
|
+
}, Dn = {
|
|
2591
2924
|
id: "twig",
|
|
2592
2925
|
name: {
|
|
2593
2926
|
[e.EN_US]: "Twig"
|
|
@@ -2600,7 +2933,7 @@ const e = {
|
|
|
2600
2933
|
},
|
|
2601
2934
|
type: [],
|
|
2602
2935
|
tags: []
|
|
2603
|
-
},
|
|
2936
|
+
}, wn = {
|
|
2604
2937
|
id: "typescript",
|
|
2605
2938
|
name: {
|
|
2606
2939
|
[e.EN_US]: "TypeScript"
|
|
@@ -2615,15 +2948,15 @@ const e = {
|
|
|
2615
2948
|
[e.EN_GB]: e.EN_US,
|
|
2616
2949
|
[e.DE_DE]: "TypeScript ist eine stark typisierte Programmiersprache, die auf JavaScript aufbaut und Ihnen bei jeder Größenordnung bessere Werkzeuge bietet."
|
|
2617
2950
|
},
|
|
2618
|
-
type: [
|
|
2619
|
-
tags: [
|
|
2951
|
+
type: [i.language],
|
|
2952
|
+
tags: [o.frontend, o.backend, o.open_source, o.javascript],
|
|
2620
2953
|
links: {
|
|
2621
2954
|
website: "https://www.typescriptlang.org"
|
|
2622
2955
|
},
|
|
2623
2956
|
sources: {
|
|
2624
|
-
definition:
|
|
2957
|
+
definition: Yn.official_website
|
|
2625
2958
|
}
|
|
2626
|
-
},
|
|
2959
|
+
}, vn = {
|
|
2627
2960
|
id: "typesense",
|
|
2628
2961
|
name: {
|
|
2629
2962
|
[e.EN_US]: "Typesense"
|
|
@@ -2636,7 +2969,7 @@ const e = {
|
|
|
2636
2969
|
},
|
|
2637
2970
|
type: [],
|
|
2638
2971
|
tags: []
|
|
2639
|
-
},
|
|
2972
|
+
}, An = {
|
|
2640
2973
|
id: "vercel",
|
|
2641
2974
|
name: {
|
|
2642
2975
|
[e.EN_US]: "Vercel"
|
|
@@ -2649,7 +2982,7 @@ const e = {
|
|
|
2649
2982
|
},
|
|
2650
2983
|
type: [],
|
|
2651
2984
|
tags: []
|
|
2652
|
-
},
|
|
2985
|
+
}, Bn = {
|
|
2653
2986
|
id: "vim",
|
|
2654
2987
|
name: {
|
|
2655
2988
|
[e.EN_US]: "Vim"
|
|
@@ -2662,7 +2995,20 @@ const e = {
|
|
|
2662
2995
|
},
|
|
2663
2996
|
type: [],
|
|
2664
2997
|
tags: []
|
|
2665
|
-
},
|
|
2998
|
+
}, Ln = {
|
|
2999
|
+
id: "visual_basic",
|
|
3000
|
+
name: {
|
|
3001
|
+
[e.EN_US]: "Visual Basic"
|
|
3002
|
+
},
|
|
3003
|
+
label: {
|
|
3004
|
+
[e.EN_US]: ""
|
|
3005
|
+
},
|
|
3006
|
+
definition: {
|
|
3007
|
+
[e.EN_US]: ""
|
|
3008
|
+
},
|
|
3009
|
+
type: [i.language],
|
|
3010
|
+
tags: []
|
|
3011
|
+
}, jn = {
|
|
2666
3012
|
id: "vite",
|
|
2667
3013
|
name: {
|
|
2668
3014
|
[e.EN_US]: "Vite"
|
|
@@ -2675,7 +3021,7 @@ const e = {
|
|
|
2675
3021
|
},
|
|
2676
3022
|
type: [],
|
|
2677
3023
|
tags: []
|
|
2678
|
-
},
|
|
3024
|
+
}, Gn = {
|
|
2679
3025
|
id: "vitest",
|
|
2680
3026
|
name: {
|
|
2681
3027
|
[e.EN_US]: "Vitest"
|
|
@@ -2688,7 +3034,7 @@ const e = {
|
|
|
2688
3034
|
},
|
|
2689
3035
|
type: [],
|
|
2690
3036
|
tags: []
|
|
2691
|
-
},
|
|
3037
|
+
}, Cn = {
|
|
2692
3038
|
id: "vue_js",
|
|
2693
3039
|
name: {
|
|
2694
3040
|
[e.EN_US]: "Vue.js"
|
|
@@ -2701,7 +3047,7 @@ const e = {
|
|
|
2701
3047
|
},
|
|
2702
3048
|
type: [],
|
|
2703
3049
|
tags: []
|
|
2704
|
-
},
|
|
3050
|
+
}, Tn = {
|
|
2705
3051
|
id: "wdio",
|
|
2706
3052
|
name: {
|
|
2707
3053
|
[e.EN_US]: "WebdriverIO"
|
|
@@ -2714,7 +3060,7 @@ const e = {
|
|
|
2714
3060
|
},
|
|
2715
3061
|
type: [],
|
|
2716
3062
|
tags: []
|
|
2717
|
-
},
|
|
3063
|
+
}, zn = {
|
|
2718
3064
|
id: "web_forms",
|
|
2719
3065
|
name: {
|
|
2720
3066
|
[e.EN_US]: "Web Forms"
|
|
@@ -2727,7 +3073,7 @@ const e = {
|
|
|
2727
3073
|
},
|
|
2728
3074
|
type: [],
|
|
2729
3075
|
tags: []
|
|
2730
|
-
},
|
|
3076
|
+
}, xn = {
|
|
2731
3077
|
id: "web_workers",
|
|
2732
3078
|
name: {
|
|
2733
3079
|
[e.EN_US]: "Web Workers"
|
|
@@ -2740,7 +3086,7 @@ const e = {
|
|
|
2740
3086
|
},
|
|
2741
3087
|
type: [],
|
|
2742
3088
|
tags: []
|
|
2743
|
-
},
|
|
3089
|
+
}, On = {
|
|
2744
3090
|
id: "web3",
|
|
2745
3091
|
name: {
|
|
2746
3092
|
[e.EN_US]: "Web3"
|
|
@@ -2753,7 +3099,7 @@ const e = {
|
|
|
2753
3099
|
},
|
|
2754
3100
|
type: [],
|
|
2755
3101
|
tags: []
|
|
2756
|
-
},
|
|
3102
|
+
}, Fn = {
|
|
2757
3103
|
id: "webpack",
|
|
2758
3104
|
name: {
|
|
2759
3105
|
[e.EN_US]: "Webpack"
|
|
@@ -2766,7 +3112,7 @@ const e = {
|
|
|
2766
3112
|
},
|
|
2767
3113
|
type: [],
|
|
2768
3114
|
tags: []
|
|
2769
|
-
},
|
|
3115
|
+
}, Pn = {
|
|
2770
3116
|
id: "websockets",
|
|
2771
3117
|
name: {
|
|
2772
3118
|
[e.EN_US]: "WebSockets"
|
|
@@ -2779,7 +3125,7 @@ const e = {
|
|
|
2779
3125
|
},
|
|
2780
3126
|
type: [],
|
|
2781
3127
|
tags: []
|
|
2782
|
-
},
|
|
3128
|
+
}, Mn = {
|
|
2783
3129
|
id: "windows",
|
|
2784
3130
|
name: {
|
|
2785
3131
|
[e.EN_US]: "Windows"
|
|
@@ -2792,7 +3138,7 @@ const e = {
|
|
|
2792
3138
|
},
|
|
2793
3139
|
type: [],
|
|
2794
3140
|
tags: []
|
|
2795
|
-
},
|
|
3141
|
+
}, Rn = {
|
|
2796
3142
|
id: "winscp",
|
|
2797
3143
|
name: {
|
|
2798
3144
|
[e.EN_US]: "WinSCP"
|
|
@@ -2805,10 +3151,12 @@ const e = {
|
|
|
2805
3151
|
},
|
|
2806
3152
|
type: [],
|
|
2807
3153
|
tags: []
|
|
2808
|
-
},
|
|
3154
|
+
}, In = {
|
|
2809
3155
|
id: "wordpress",
|
|
2810
3156
|
name: {
|
|
2811
|
-
[e.EN_US]: "WordPress"
|
|
3157
|
+
[e.EN_US]: "WordPress",
|
|
3158
|
+
[e.EN_GB]: e.EN_US,
|
|
3159
|
+
[e.DE_DE]: e.EN_US
|
|
2812
3160
|
},
|
|
2813
3161
|
label: {
|
|
2814
3162
|
[e.EN_US]: ""
|
|
@@ -2816,9 +3164,9 @@ const e = {
|
|
|
2816
3164
|
definition: {
|
|
2817
3165
|
[e.EN_US]: ""
|
|
2818
3166
|
},
|
|
2819
|
-
type: [],
|
|
3167
|
+
type: [i.cms],
|
|
2820
3168
|
tags: []
|
|
2821
|
-
},
|
|
3169
|
+
}, Jn = {
|
|
2822
3170
|
id: "yarn",
|
|
2823
3171
|
name: {
|
|
2824
3172
|
[e.EN_US]: "Yarn"
|
|
@@ -2831,7 +3179,7 @@ const e = {
|
|
|
2831
3179
|
},
|
|
2832
3180
|
type: [],
|
|
2833
3181
|
tags: []
|
|
2834
|
-
},
|
|
3182
|
+
}, Kn = {
|
|
2835
3183
|
id: "zephyr",
|
|
2836
3184
|
name: {
|
|
2837
3185
|
[e.EN_US]: "Zephyr"
|
|
@@ -2844,7 +3192,20 @@ const e = {
|
|
|
2844
3192
|
},
|
|
2845
3193
|
type: [],
|
|
2846
3194
|
tags: []
|
|
2847
|
-
},
|
|
3195
|
+
}, Wn = {
|
|
3196
|
+
id: "zig",
|
|
3197
|
+
name: {
|
|
3198
|
+
[e.EN_US]: "Zig"
|
|
3199
|
+
},
|
|
3200
|
+
label: {
|
|
3201
|
+
[e.EN_US]: ""
|
|
3202
|
+
},
|
|
3203
|
+
definition: {
|
|
3204
|
+
[e.EN_US]: ""
|
|
3205
|
+
},
|
|
3206
|
+
type: [i.language],
|
|
3207
|
+
tags: []
|
|
3208
|
+
}, qn = {
|
|
2848
3209
|
id: "zod",
|
|
2849
3210
|
name: {
|
|
2850
3211
|
[e.EN_US]: "Zod"
|
|
@@ -2858,33 +3219,29 @@ const e = {
|
|
|
2858
3219
|
type: [],
|
|
2859
3220
|
tags: []
|
|
2860
3221
|
}, U = {
|
|
2861
|
-
[
|
|
2862
|
-
[
|
|
2863
|
-
[
|
|
2864
|
-
[v.id]: v,
|
|
2865
|
-
[C.id]: C,
|
|
2866
|
-
[B.id]: B,
|
|
2867
|
-
[T.id]: T,
|
|
2868
|
-
[G.id]: G,
|
|
2869
|
-
[x.id]: x,
|
|
2870
|
-
[q.id]: q,
|
|
3222
|
+
[P.id]: P,
|
|
3223
|
+
[M.id]: M,
|
|
3224
|
+
[R.id]: R,
|
|
2871
3225
|
[I.id]: I,
|
|
2872
|
-
[
|
|
3226
|
+
[J.id]: J,
|
|
2873
3227
|
[K.id]: K,
|
|
2874
|
-
[Q.id]: Q,
|
|
2875
3228
|
[V.id]: V,
|
|
3229
|
+
[W.id]: W,
|
|
3230
|
+
[q.id]: q,
|
|
3231
|
+
[H.id]: H,
|
|
3232
|
+
[Q.id]: Q,
|
|
2876
3233
|
[Y.id]: Y,
|
|
2877
3234
|
[Z.id]: Z,
|
|
2878
|
-
[X.id]: X,
|
|
2879
3235
|
[$.id]: $,
|
|
3236
|
+
[X.id]: X,
|
|
2880
3237
|
[ee.id]: ee,
|
|
2881
3238
|
[ie.id]: ie,
|
|
2882
3239
|
[te.id]: te,
|
|
2883
3240
|
[ne.id]: ne,
|
|
2884
3241
|
[ae.id]: ae,
|
|
2885
3242
|
[se.id]: se,
|
|
2886
|
-
[oe.id]: oe,
|
|
2887
3243
|
[_e.id]: _e,
|
|
3244
|
+
[oe.id]: oe,
|
|
2888
3245
|
[de.id]: de,
|
|
2889
3246
|
[Ee.id]: Ee,
|
|
2890
3247
|
[Se.id]: Se,
|
|
@@ -2893,52 +3250,52 @@ const e = {
|
|
|
2893
3250
|
[Ue.id]: Ue,
|
|
2894
3251
|
[ce.id]: ce,
|
|
2895
3252
|
[re.id]: re,
|
|
2896
|
-
[pe.id]: pe,
|
|
2897
|
-
[me.id]: me,
|
|
2898
3253
|
[ge.id]: ge,
|
|
3254
|
+
[me.id]: me,
|
|
3255
|
+
[pe.id]: pe,
|
|
2899
3256
|
[be.id]: be,
|
|
2900
|
-
[fe.id]: fe,
|
|
2901
3257
|
[ye.id]: ye,
|
|
3258
|
+
[fe.id]: fe,
|
|
2902
3259
|
[ue.id]: ue,
|
|
2903
|
-
[ke.id]: ke,
|
|
2904
3260
|
[he.id]: he,
|
|
2905
|
-
[
|
|
2906
|
-
[Le.id]: Le,
|
|
3261
|
+
[ke.id]: ke,
|
|
2907
3262
|
[De.id]: De,
|
|
3263
|
+
[we.id]: we,
|
|
3264
|
+
[ve.id]: ve,
|
|
2908
3265
|
[Ae.id]: Ae,
|
|
3266
|
+
[Be.id]: Be,
|
|
3267
|
+
[Le.id]: Le,
|
|
2909
3268
|
[je.id]: je,
|
|
2910
|
-
[
|
|
3269
|
+
[Ge.id]: Ge,
|
|
2911
3270
|
[Ce.id]: Ce,
|
|
2912
|
-
[Be.id]: Be,
|
|
2913
3271
|
[Te.id]: Te,
|
|
2914
|
-
[Ge.id]: Ge,
|
|
2915
|
-
[xe.id]: xe,
|
|
2916
3272
|
[ze.id]: ze,
|
|
2917
|
-
[
|
|
3273
|
+
[xe.id]: xe,
|
|
2918
3274
|
[Oe.id]: Oe,
|
|
2919
|
-
[
|
|
3275
|
+
[Fe.id]: Fe,
|
|
2920
3276
|
[Pe.id]: Pe,
|
|
3277
|
+
[Me.id]: Me,
|
|
2921
3278
|
[Re.id]: Re,
|
|
2922
|
-
[
|
|
3279
|
+
[Ie.id]: Ie,
|
|
2923
3280
|
[Je.id]: Je,
|
|
3281
|
+
[Ke.id]: Ke,
|
|
3282
|
+
[We.id]: We,
|
|
2924
3283
|
[qe.id]: qe,
|
|
2925
|
-
[Ie.id]: Ie,
|
|
2926
3284
|
[He.id]: He,
|
|
2927
|
-
[Ke.id]: Ke,
|
|
2928
|
-
[Qe.id]: Qe,
|
|
2929
3285
|
[Ve.id]: Ve,
|
|
2930
3286
|
[Ye.id]: Ye,
|
|
2931
3287
|
[Ze.id]: Ze,
|
|
2932
|
-
[Xe.id]: Xe,
|
|
2933
3288
|
[$e.id]: $e,
|
|
3289
|
+
[Xe.id]: Xe,
|
|
2934
3290
|
[ei.id]: ei,
|
|
2935
3291
|
[ii.id]: ii,
|
|
2936
3292
|
[ti.id]: ti,
|
|
2937
3293
|
[ni.id]: ni,
|
|
3294
|
+
[Qe.id]: Qe,
|
|
2938
3295
|
[ai.id]: ai,
|
|
2939
3296
|
[si.id]: si,
|
|
2940
|
-
[oi.id]: oi,
|
|
2941
3297
|
[_i.id]: _i,
|
|
3298
|
+
[oi.id]: oi,
|
|
2942
3299
|
[di.id]: di,
|
|
2943
3300
|
[Ei.id]: Ei,
|
|
2944
3301
|
[Si.id]: Si,
|
|
@@ -2947,52 +3304,52 @@ const e = {
|
|
|
2947
3304
|
[Ui.id]: Ui,
|
|
2948
3305
|
[ci.id]: ci,
|
|
2949
3306
|
[ri.id]: ri,
|
|
2950
|
-
[pi.id]: pi,
|
|
2951
|
-
[mi.id]: mi,
|
|
2952
3307
|
[gi.id]: gi,
|
|
3308
|
+
[mi.id]: mi,
|
|
3309
|
+
[pi.id]: pi,
|
|
2953
3310
|
[bi.id]: bi,
|
|
2954
|
-
[fi.id]: fi,
|
|
2955
3311
|
[yi.id]: yi,
|
|
3312
|
+
[fi.id]: fi,
|
|
2956
3313
|
[ui.id]: ui,
|
|
2957
|
-
[ki.id]: ki,
|
|
2958
3314
|
[hi.id]: hi,
|
|
2959
|
-
[
|
|
2960
|
-
[Li.id]: Li,
|
|
3315
|
+
[ki.id]: ki,
|
|
2961
3316
|
[Di.id]: Di,
|
|
3317
|
+
[wi.id]: wi,
|
|
3318
|
+
[vi.id]: vi,
|
|
2962
3319
|
[Ai.id]: Ai,
|
|
3320
|
+
[Bi.id]: Bi,
|
|
3321
|
+
[Li.id]: Li,
|
|
2963
3322
|
[ji.id]: ji,
|
|
2964
|
-
[
|
|
3323
|
+
[Gi.id]: Gi,
|
|
2965
3324
|
[Ci.id]: Ci,
|
|
2966
|
-
[Bi.id]: Bi,
|
|
2967
3325
|
[Ti.id]: Ti,
|
|
2968
|
-
[Gi.id]: Gi,
|
|
2969
|
-
[xi.id]: xi,
|
|
2970
3326
|
[zi.id]: zi,
|
|
2971
|
-
[
|
|
3327
|
+
[xi.id]: xi,
|
|
2972
3328
|
[Oi.id]: Oi,
|
|
2973
|
-
[
|
|
3329
|
+
[Fi.id]: Fi,
|
|
2974
3330
|
[Pi.id]: Pi,
|
|
3331
|
+
[Mi.id]: Mi,
|
|
2975
3332
|
[Ri.id]: Ri,
|
|
2976
|
-
[
|
|
3333
|
+
[Ii.id]: Ii,
|
|
2977
3334
|
[Ji.id]: Ji,
|
|
3335
|
+
[Ki.id]: Ki,
|
|
3336
|
+
[Wi.id]: Wi,
|
|
2978
3337
|
[qi.id]: qi,
|
|
2979
|
-
[Ii.id]: Ii,
|
|
2980
3338
|
[Hi.id]: Hi,
|
|
2981
|
-
[Ki.id]: Ki,
|
|
2982
|
-
[Qi.id]: Qi,
|
|
2983
3339
|
[Vi.id]: Vi,
|
|
3340
|
+
[Qi.id]: Qi,
|
|
2984
3341
|
[Yi.id]: Yi,
|
|
2985
3342
|
[Zi.id]: Zi,
|
|
2986
|
-
[Xi.id]: Xi,
|
|
2987
3343
|
[$i.id]: $i,
|
|
3344
|
+
[Xi.id]: Xi,
|
|
2988
3345
|
[et.id]: et,
|
|
2989
3346
|
[it.id]: it,
|
|
2990
3347
|
[tt.id]: tt,
|
|
2991
3348
|
[nt.id]: nt,
|
|
2992
3349
|
[at.id]: at,
|
|
2993
3350
|
[st.id]: st,
|
|
2994
|
-
[ot.id]: ot,
|
|
2995
3351
|
[_t.id]: _t,
|
|
3352
|
+
[ot.id]: ot,
|
|
2996
3353
|
[dt.id]: dt,
|
|
2997
3354
|
[Et.id]: Et,
|
|
2998
3355
|
[St.id]: St,
|
|
@@ -3001,130 +3358,157 @@ const e = {
|
|
|
3001
3358
|
[Ut.id]: Ut,
|
|
3002
3359
|
[ct.id]: ct,
|
|
3003
3360
|
[rt.id]: rt,
|
|
3004
|
-
[pt.id]: pt,
|
|
3005
|
-
[mt.id]: mt,
|
|
3006
3361
|
[gt.id]: gt,
|
|
3362
|
+
[mt.id]: mt,
|
|
3363
|
+
[pt.id]: pt,
|
|
3007
3364
|
[bt.id]: bt,
|
|
3008
|
-
[ft.id]: ft,
|
|
3009
3365
|
[yt.id]: yt,
|
|
3366
|
+
[ft.id]: ft,
|
|
3010
3367
|
[ut.id]: ut,
|
|
3011
|
-
[kt.id]: kt,
|
|
3012
3368
|
[ht.id]: ht,
|
|
3013
|
-
[
|
|
3014
|
-
[Lt.id]: Lt,
|
|
3369
|
+
[kt.id]: kt,
|
|
3015
3370
|
[Dt.id]: Dt,
|
|
3371
|
+
[wt.id]: wt,
|
|
3372
|
+
[vt.id]: vt,
|
|
3016
3373
|
[At.id]: At,
|
|
3374
|
+
[Bt.id]: Bt,
|
|
3375
|
+
[Lt.id]: Lt,
|
|
3017
3376
|
[jt.id]: jt,
|
|
3018
|
-
[
|
|
3377
|
+
[Gt.id]: Gt,
|
|
3019
3378
|
[Ct.id]: Ct,
|
|
3020
|
-
[Bt.id]: Bt,
|
|
3021
3379
|
[Tt.id]: Tt,
|
|
3022
|
-
[Gt.id]: Gt,
|
|
3023
|
-
[xt.id]: xt,
|
|
3024
3380
|
[zt.id]: zt,
|
|
3025
|
-
[
|
|
3381
|
+
[xt.id]: xt,
|
|
3026
3382
|
[Ot.id]: Ot,
|
|
3027
|
-
[
|
|
3383
|
+
[Ft.id]: Ft,
|
|
3028
3384
|
[Pt.id]: Pt,
|
|
3385
|
+
[Mt.id]: Mt,
|
|
3029
3386
|
[Rt.id]: Rt,
|
|
3030
|
-
[
|
|
3387
|
+
[It.id]: It,
|
|
3031
3388
|
[Jt.id]: Jt,
|
|
3389
|
+
[Kt.id]: Kt,
|
|
3390
|
+
[Wt.id]: Wt,
|
|
3032
3391
|
[qt.id]: qt,
|
|
3033
|
-
[It.id]: It,
|
|
3034
3392
|
[Ht.id]: Ht,
|
|
3035
|
-
[Kt.id]: Kt,
|
|
3036
|
-
[Qt.id]: Qt,
|
|
3037
3393
|
[Vt.id]: Vt,
|
|
3394
|
+
[Qt.id]: Qt,
|
|
3038
3395
|
[Yt.id]: Yt,
|
|
3039
3396
|
[Zt.id]: Zt,
|
|
3040
|
-
[Xt.id]: Xt,
|
|
3041
3397
|
[$t.id]: $t,
|
|
3398
|
+
[Xt.id]: Xt,
|
|
3042
3399
|
[en.id]: en,
|
|
3043
3400
|
[tn.id]: tn,
|
|
3044
3401
|
[nn.id]: nn,
|
|
3045
3402
|
[an.id]: an,
|
|
3046
3403
|
[sn.id]: sn,
|
|
3047
|
-
[on.id]: on,
|
|
3048
3404
|
[_n.id]: _n,
|
|
3405
|
+
[on.id]: on,
|
|
3049
3406
|
[dn.id]: dn,
|
|
3050
3407
|
[En.id]: En,
|
|
3051
|
-
[Nn.id]: Nn,
|
|
3052
3408
|
[Sn.id]: Sn,
|
|
3053
3409
|
[ln.id]: ln,
|
|
3410
|
+
[Nn.id]: Nn,
|
|
3054
3411
|
[Un.id]: Un,
|
|
3055
3412
|
[cn.id]: cn,
|
|
3056
3413
|
[rn.id]: rn,
|
|
3057
|
-
[pn.id]: pn,
|
|
3058
|
-
[mn.id]: mn,
|
|
3059
3414
|
[gn.id]: gn,
|
|
3415
|
+
[mn.id]: mn,
|
|
3416
|
+
[pn.id]: pn,
|
|
3060
3417
|
[bn.id]: bn,
|
|
3061
|
-
[
|
|
3418
|
+
[yn.id]: yn,
|
|
3419
|
+
[fn.id]: fn,
|
|
3420
|
+
[un.id]: un,
|
|
3421
|
+
[hn.id]: hn,
|
|
3422
|
+
[kn.id]: kn,
|
|
3423
|
+
[Dn.id]: Dn,
|
|
3424
|
+
[wn.id]: wn,
|
|
3425
|
+
[vn.id]: vn,
|
|
3426
|
+
[An.id]: An,
|
|
3427
|
+
[Bn.id]: Bn,
|
|
3428
|
+
[Ln.id]: Ln,
|
|
3429
|
+
[jn.id]: jn,
|
|
3430
|
+
[Gn.id]: Gn,
|
|
3431
|
+
[Cn.id]: Cn,
|
|
3432
|
+
[Tn.id]: Tn,
|
|
3433
|
+
[On.id]: On,
|
|
3434
|
+
[zn.id]: zn,
|
|
3435
|
+
[xn.id]: xn,
|
|
3436
|
+
[Fn.id]: Fn,
|
|
3437
|
+
[Pn.id]: Pn,
|
|
3438
|
+
[Mn.id]: Mn,
|
|
3439
|
+
[Rn.id]: Rn,
|
|
3440
|
+
[In.id]: In,
|
|
3441
|
+
[Jn.id]: Jn,
|
|
3442
|
+
[Kn.id]: Kn,
|
|
3443
|
+
[Wn.id]: Wn,
|
|
3444
|
+
[qn.id]: qn
|
|
3062
3445
|
};
|
|
3063
|
-
|
|
3064
|
-
const
|
|
3446
|
+
l({ obj: U, keys: ["name", "label", "definition"], useFallback: !1 });
|
|
3447
|
+
const d = {
|
|
3065
3448
|
DEFAULT_LOCALE: e.EN_US,
|
|
3066
3449
|
USE_FALLBACK: !0
|
|
3067
3450
|
};
|
|
3068
|
-
function
|
|
3069
|
-
id:
|
|
3070
|
-
localized:
|
|
3071
|
-
locale:
|
|
3072
|
-
useFallback:
|
|
3451
|
+
function Xn({
|
|
3452
|
+
id: n,
|
|
3453
|
+
localized: a = !0,
|
|
3454
|
+
locale: t = d.DEFAULT_LOCALE,
|
|
3455
|
+
useFallback: s = d.USE_FALLBACK
|
|
3073
3456
|
}) {
|
|
3074
|
-
const _ =
|
|
3075
|
-
return
|
|
3457
|
+
const _ = l({ obj: U, keys: ["name", "altName", "label", "definition"], useFallback: s })[n];
|
|
3458
|
+
return a ? {
|
|
3076
3459
|
..._,
|
|
3077
|
-
name: N({ obj: _.name, locale:
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
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 }))
|
|
3082
3466
|
} : _;
|
|
3083
3467
|
}
|
|
3084
|
-
function
|
|
3085
|
-
localized:
|
|
3086
|
-
locale:
|
|
3087
|
-
useFallback:
|
|
3468
|
+
function na({
|
|
3469
|
+
localized: n = !0,
|
|
3470
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
3471
|
+
useFallback: t = d.USE_FALLBACK
|
|
3088
3472
|
} = {}) {
|
|
3089
|
-
const
|
|
3090
|
-
return
|
|
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;
|
|
3091
3475
|
}
|
|
3092
|
-
function
|
|
3093
|
-
localized:
|
|
3094
|
-
locale:
|
|
3095
|
-
useFallback:
|
|
3476
|
+
function aa({
|
|
3477
|
+
localized: n = !0,
|
|
3478
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
3479
|
+
useFallback: t = d.USE_FALLBACK
|
|
3096
3480
|
} = {}) {
|
|
3097
|
-
const
|
|
3098
|
-
if (!
|
|
3099
|
-
return
|
|
3100
|
-
const
|
|
3101
|
-
for (const [_,
|
|
3102
|
-
const
|
|
3103
|
-
|
|
3481
|
+
const s = l({ obj: U, keys: ["name", "altName", "label", "definition"], useFallback: t });
|
|
3482
|
+
if (!n)
|
|
3483
|
+
return s;
|
|
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;
|
|
3104
3488
|
}
|
|
3105
|
-
return
|
|
3489
|
+
return E;
|
|
3106
3490
|
}
|
|
3107
|
-
function
|
|
3108
|
-
localized:
|
|
3109
|
-
locale:
|
|
3110
|
-
useFallback:
|
|
3491
|
+
function sa({
|
|
3492
|
+
localized: n = !0,
|
|
3493
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
3494
|
+
useFallback: t = d.USE_FALLBACK
|
|
3111
3495
|
} = {}) {
|
|
3112
|
-
const
|
|
3113
|
-
return
|
|
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;
|
|
3114
3498
|
}
|
|
3115
|
-
function
|
|
3116
|
-
localized:
|
|
3117
|
-
locale:
|
|
3118
|
-
useFallback:
|
|
3499
|
+
function _a({
|
|
3500
|
+
localized: n = !0,
|
|
3501
|
+
locale: a = d.DEFAULT_LOCALE,
|
|
3502
|
+
useFallback: t = d.USE_FALLBACK
|
|
3119
3503
|
} = {}) {
|
|
3120
|
-
const
|
|
3121
|
-
return
|
|
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;
|
|
3122
3506
|
}
|
|
3123
3507
|
export {
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3508
|
+
aa as getDict,
|
|
3509
|
+
_a as getTags,
|
|
3510
|
+
Xn as getTerm,
|
|
3511
|
+
na as getTerms,
|
|
3512
|
+
sa as getTypes
|
|
3129
3513
|
};
|
|
3130
3514
|
//# sourceMappingURL=index.js.map
|