dev-dict 0.9.1 → 0.10.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/__tests__/tags.test.d.ts +2 -0
- package/dist/__tests__/tags.test.d.ts.map +1 -0
- package/dist/__tests__/terms.test.d.ts +2 -0
- package/dist/__tests__/terms.test.d.ts.map +1 -0
- package/dist/__tests__/types.test.d.ts +2 -0
- package/dist/__tests__/types.test.d.ts.map +1 -0
- package/dist/data/tags/backend.d.ts +1 -1
- package/dist/data/tags/frontend.d.ts +1 -1
- package/dist/data/tags/index.d.ts +76 -12
- package/dist/data/tags/index.d.ts.map +1 -1
- package/dist/data/tags/javascript.d.ts +1 -1
- package/dist/data/tags/kanban.d.ts +10 -0
- package/dist/data/tags/kanban.d.ts.map +1 -0
- package/dist/data/tags/open_source.d.ts +1 -1
- package/dist/data/tags/project_management.d.ts +10 -0
- package/dist/data/tags/project_management.d.ts.map +1 -0
- package/dist/data/tags/qa.d.ts +1 -1
- package/dist/data/tags/scrum.d.ts +10 -0
- package/dist/data/tags/scrum.d.ts.map +1 -0
- package/dist/data/tags/software_development.d.ts +10 -0
- package/dist/data/tags/software_development.d.ts.map +1 -0
- package/dist/data/tags/testing.d.ts +1 -1
- package/dist/data/terms/agile.d.ts +67 -4
- package/dist/data/terms/agile.d.ts.map +1 -1
- package/dist/data/terms/e2e.d.ts +2 -2
- package/dist/data/terms/index.d.ts +162 -36
- package/dist/data/terms/index.d.ts.map +1 -1
- package/dist/data/terms/javascript.d.ts +3 -3
- package/dist/data/terms/node_js.d.ts +1 -1
- package/dist/data/terms/react.d.ts +4 -4
- package/dist/data/terms/typescript.d.ts +4 -4
- package/dist/dev-dict.min.js +1 -1
- package/dist/dev-dict.min.js.map +1 -1
- package/dist/helpers-i56sLJez.js +87 -0
- package/dist/helpers-i56sLJez.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +18 -17
- package/dist/index.js.map +1 -1
- package/dist/tags-entry.d.ts +4 -0
- package/dist/tags-entry.d.ts.map +1 -1
- package/dist/tags-entry.js +52 -20
- package/dist/tags-entry.js.map +1 -1
- package/dist/{terms-entry-BsDjmqhr.js → terms-entry-CvCnHqL5.js} +489 -472
- package/dist/terms-entry-CvCnHqL5.js.map +1 -0
- package/dist/terms-entry.d.ts +2 -2
- package/dist/terms-entry.d.ts.map +1 -1
- package/dist/terms-entry.js +2 -2
- package/dist/types/index.d.ts +15 -11
- package/dist/types/index.d.ts.map +1 -1
- package/dist/umd.d.ts.map +1 -1
- package/dist/utils/helpers.d.ts.map +1 -1
- package/dist/utils-entry.js +2 -2
- package/package.json +8 -4
- package/dist/helpers-D13_Q8CF.js +0 -80
- package/dist/helpers-D13_Q8CF.js.map +0 -1
- package/dist/terms-entry-BsDjmqhr.js.map +0 -1
|
@@ -78,15 +78,78 @@ export declare const RAW_TERMS: {
|
|
|
78
78
|
readonly id: "agile";
|
|
79
79
|
readonly name: {
|
|
80
80
|
readonly "en-US": "Agile";
|
|
81
|
+
readonly "en-GB": "en-US";
|
|
82
|
+
readonly "de-DE": "en-US";
|
|
81
83
|
};
|
|
82
84
|
readonly label: {
|
|
83
|
-
readonly "en-US": "";
|
|
85
|
+
readonly "en-US": "Methodology";
|
|
86
|
+
readonly "en-GB": "en-US";
|
|
87
|
+
readonly "de-DE": "Methodik";
|
|
84
88
|
};
|
|
85
89
|
readonly definition: {
|
|
86
|
-
readonly "en-US": "";
|
|
90
|
+
readonly "en-US": "Agile is a software development methodology that emphasizes iterative progress, collaboration, and flexibility. It promotes adaptive planning, evolutionary development, early delivery, and continuous improvement, encouraging rapid and flexible response to change through cross-functional teams working in short cycles called sprints.";
|
|
91
|
+
readonly "en-GB": "Agile is a software development methodology that emphasises iterative progress, collaboration, and flexibility. It promotes adaptive planning, evolutionary development, early delivery, and continuous improvement, encouraging rapid and flexible response to change through cross-functional teams working in short cycles called sprints.";
|
|
92
|
+
readonly "de-DE": "Agile ist eine Softwareentwicklungsmethodik, die iterative Fortschritte, Zusammenarbeit und Flexibilität betont. Sie fördert adaptive Planung, evolutionäre Entwicklung, frühzeitige Lieferung und kontinuierliche Verbesserung und ermutigt zu einer schnellen und flexiblen Reaktion auf Veränderungen durch funktionsübergreifende Teams, die in kurzen Zyklen, sogenannten Sprints, arbeiten.";
|
|
93
|
+
};
|
|
94
|
+
readonly type: [{
|
|
95
|
+
readonly id: "methodology";
|
|
96
|
+
readonly name: {
|
|
97
|
+
readonly "en-US": "Methodology";
|
|
98
|
+
readonly "en-GB": "en-US";
|
|
99
|
+
readonly "de-DE": "Methodik";
|
|
100
|
+
};
|
|
101
|
+
}];
|
|
102
|
+
readonly tags: [{
|
|
103
|
+
readonly id: "software_development";
|
|
104
|
+
readonly name: {
|
|
105
|
+
readonly "en-US": "Software Development";
|
|
106
|
+
readonly "en-GB": "en-US";
|
|
107
|
+
readonly "de-DE": "Softwareentwicklung";
|
|
108
|
+
};
|
|
109
|
+
}, {
|
|
110
|
+
readonly id: "project_management";
|
|
111
|
+
readonly name: {
|
|
112
|
+
readonly "en-US": "Project Management";
|
|
113
|
+
readonly "en-GB": "en-US";
|
|
114
|
+
readonly "de-DE": "Projektmanagement";
|
|
115
|
+
};
|
|
116
|
+
}, {
|
|
117
|
+
readonly id: "scrum";
|
|
118
|
+
readonly name: {
|
|
119
|
+
readonly "en-US": "Scrum";
|
|
120
|
+
readonly "en-GB": "en-US";
|
|
121
|
+
readonly "de-DE": "en-US";
|
|
122
|
+
};
|
|
123
|
+
}, {
|
|
124
|
+
readonly id: "kanban";
|
|
125
|
+
readonly name: {
|
|
126
|
+
readonly "en-US": "Kanban";
|
|
127
|
+
readonly "en-GB": "en-US";
|
|
128
|
+
readonly "de-DE": "en-US";
|
|
129
|
+
};
|
|
130
|
+
}];
|
|
131
|
+
readonly links: {
|
|
132
|
+
readonly website: "https://agilemanifesto.org";
|
|
133
|
+
readonly wikipedia: "https://en.wikipedia.org/wiki/Agile_software_development";
|
|
134
|
+
};
|
|
135
|
+
readonly sources: {
|
|
136
|
+
readonly label: [{
|
|
137
|
+
readonly id: "community";
|
|
138
|
+
readonly name: {
|
|
139
|
+
readonly "en-US": "Community";
|
|
140
|
+
readonly "en-GB": "en-US";
|
|
141
|
+
readonly "de-DE": "Gemeinschaft";
|
|
142
|
+
};
|
|
143
|
+
}];
|
|
144
|
+
readonly definition: [{
|
|
145
|
+
readonly id: "ai_generated";
|
|
146
|
+
readonly name: {
|
|
147
|
+
readonly "en-US": "AI Generated";
|
|
148
|
+
readonly "en-GB": "en-US";
|
|
149
|
+
readonly "de-DE": "KI-generiert";
|
|
150
|
+
};
|
|
151
|
+
}];
|
|
87
152
|
};
|
|
88
|
-
readonly type: [];
|
|
89
|
-
readonly tags: [];
|
|
90
153
|
};
|
|
91
154
|
readonly ai: {
|
|
92
155
|
readonly id: "ai";
|
|
@@ -979,7 +1042,7 @@ export declare const RAW_TERMS: {
|
|
|
979
1042
|
readonly name: {
|
|
980
1043
|
readonly "en-US": "Testing";
|
|
981
1044
|
readonly "en-GB": "en-US";
|
|
982
|
-
readonly "de-DE": "
|
|
1045
|
+
readonly "de-DE": "en-US";
|
|
983
1046
|
};
|
|
984
1047
|
}, {
|
|
985
1048
|
readonly id: "automation";
|
|
@@ -993,7 +1056,7 @@ export declare const RAW_TERMS: {
|
|
|
993
1056
|
readonly name: {
|
|
994
1057
|
readonly "en-US": "QA";
|
|
995
1058
|
readonly "en-GB": "en-US";
|
|
996
|
-
readonly "de-DE": "
|
|
1059
|
+
readonly "de-DE": "en-US";
|
|
997
1060
|
};
|
|
998
1061
|
}, {
|
|
999
1062
|
readonly id: "e2e";
|
|
@@ -1719,21 +1782,21 @@ export declare const RAW_TERMS: {
|
|
|
1719
1782
|
readonly name: {
|
|
1720
1783
|
readonly "en-US": "Frontend";
|
|
1721
1784
|
readonly "en-GB": "en-US";
|
|
1722
|
-
readonly "de-DE": "
|
|
1785
|
+
readonly "de-DE": "en-US";
|
|
1723
1786
|
};
|
|
1724
1787
|
}, {
|
|
1725
1788
|
readonly id: "backend";
|
|
1726
1789
|
readonly name: {
|
|
1727
1790
|
readonly "en-US": "Backend";
|
|
1728
1791
|
readonly "en-GB": "en-US";
|
|
1729
|
-
readonly "de-DE": "
|
|
1792
|
+
readonly "de-DE": "en-US";
|
|
1730
1793
|
};
|
|
1731
1794
|
}, {
|
|
1732
1795
|
readonly id: "open_source";
|
|
1733
1796
|
readonly name: {
|
|
1734
1797
|
readonly "en-US": "Open Source";
|
|
1735
1798
|
readonly "en-GB": "en-US";
|
|
1736
|
-
readonly "de-DE": "
|
|
1799
|
+
readonly "de-DE": "en-US";
|
|
1737
1800
|
};
|
|
1738
1801
|
}];
|
|
1739
1802
|
readonly links: {
|
|
@@ -2301,7 +2364,7 @@ export declare const RAW_TERMS: {
|
|
|
2301
2364
|
readonly name: {
|
|
2302
2365
|
readonly "en-US": "Backend";
|
|
2303
2366
|
readonly "en-GB": "en-US";
|
|
2304
|
-
readonly "de-DE": "
|
|
2367
|
+
readonly "de-DE": "en-US";
|
|
2305
2368
|
};
|
|
2306
2369
|
}];
|
|
2307
2370
|
readonly links: {
|
|
@@ -2688,28 +2751,28 @@ export declare const RAW_TERMS: {
|
|
|
2688
2751
|
readonly name: {
|
|
2689
2752
|
readonly "en-US": "Frontend";
|
|
2690
2753
|
readonly "en-GB": "en-US";
|
|
2691
|
-
readonly "de-DE": "
|
|
2754
|
+
readonly "de-DE": "en-US";
|
|
2692
2755
|
};
|
|
2693
2756
|
}, {
|
|
2694
2757
|
readonly id: "backend";
|
|
2695
2758
|
readonly name: {
|
|
2696
2759
|
readonly "en-US": "Backend";
|
|
2697
2760
|
readonly "en-GB": "en-US";
|
|
2698
|
-
readonly "de-DE": "
|
|
2761
|
+
readonly "de-DE": "en-US";
|
|
2699
2762
|
};
|
|
2700
2763
|
}, {
|
|
2701
2764
|
readonly id: "javascript";
|
|
2702
2765
|
readonly name: {
|
|
2703
2766
|
readonly "en-US": "JavaScript";
|
|
2704
2767
|
readonly "en-GB": "en-US";
|
|
2705
|
-
readonly "de-DE": "
|
|
2768
|
+
readonly "de-DE": "en-US";
|
|
2706
2769
|
};
|
|
2707
2770
|
}, {
|
|
2708
2771
|
readonly id: "open_source";
|
|
2709
2772
|
readonly name: {
|
|
2710
2773
|
readonly "en-US": "Open Source";
|
|
2711
2774
|
readonly "en-GB": "en-US";
|
|
2712
|
-
readonly "de-DE": "
|
|
2775
|
+
readonly "de-DE": "en-US";
|
|
2713
2776
|
};
|
|
2714
2777
|
}, {
|
|
2715
2778
|
readonly id: "ui_library";
|
|
@@ -3364,28 +3427,28 @@ export declare const RAW_TERMS: {
|
|
|
3364
3427
|
readonly name: {
|
|
3365
3428
|
readonly "en-US": "Frontend";
|
|
3366
3429
|
readonly "en-GB": "en-US";
|
|
3367
|
-
readonly "de-DE": "
|
|
3430
|
+
readonly "de-DE": "en-US";
|
|
3368
3431
|
};
|
|
3369
3432
|
}, {
|
|
3370
3433
|
readonly id: "backend";
|
|
3371
3434
|
readonly name: {
|
|
3372
3435
|
readonly "en-US": "Backend";
|
|
3373
3436
|
readonly "en-GB": "en-US";
|
|
3374
|
-
readonly "de-DE": "
|
|
3437
|
+
readonly "de-DE": "en-US";
|
|
3375
3438
|
};
|
|
3376
3439
|
}, {
|
|
3377
3440
|
readonly id: "open_source";
|
|
3378
3441
|
readonly name: {
|
|
3379
3442
|
readonly "en-US": "Open Source";
|
|
3380
3443
|
readonly "en-GB": "en-US";
|
|
3381
|
-
readonly "de-DE": "
|
|
3444
|
+
readonly "de-DE": "en-US";
|
|
3382
3445
|
};
|
|
3383
3446
|
}, {
|
|
3384
3447
|
readonly id: "javascript";
|
|
3385
3448
|
readonly name: {
|
|
3386
3449
|
readonly "en-US": "JavaScript";
|
|
3387
3450
|
readonly "en-GB": "en-US";
|
|
3388
|
-
readonly "de-DE": "
|
|
3451
|
+
readonly "de-DE": "en-US";
|
|
3389
3452
|
};
|
|
3390
3453
|
}];
|
|
3391
3454
|
readonly links: {
|
|
@@ -3794,15 +3857,78 @@ export declare const TERMS: {
|
|
|
3794
3857
|
readonly id: "agile";
|
|
3795
3858
|
readonly name: {
|
|
3796
3859
|
readonly "en-US": "Agile";
|
|
3860
|
+
readonly "en-GB": "en-US";
|
|
3861
|
+
readonly "de-DE": "en-US";
|
|
3797
3862
|
};
|
|
3798
3863
|
readonly label: {
|
|
3799
|
-
readonly "en-US": "";
|
|
3864
|
+
readonly "en-US": "Methodology";
|
|
3865
|
+
readonly "en-GB": "en-US";
|
|
3866
|
+
readonly "de-DE": "Methodik";
|
|
3800
3867
|
};
|
|
3801
3868
|
readonly definition: {
|
|
3802
|
-
readonly "en-US": "";
|
|
3869
|
+
readonly "en-US": "Agile is a software development methodology that emphasizes iterative progress, collaboration, and flexibility. It promotes adaptive planning, evolutionary development, early delivery, and continuous improvement, encouraging rapid and flexible response to change through cross-functional teams working in short cycles called sprints.";
|
|
3870
|
+
readonly "en-GB": "Agile is a software development methodology that emphasises iterative progress, collaboration, and flexibility. It promotes adaptive planning, evolutionary development, early delivery, and continuous improvement, encouraging rapid and flexible response to change through cross-functional teams working in short cycles called sprints.";
|
|
3871
|
+
readonly "de-DE": "Agile ist eine Softwareentwicklungsmethodik, die iterative Fortschritte, Zusammenarbeit und Flexibilität betont. Sie fördert adaptive Planung, evolutionäre Entwicklung, frühzeitige Lieferung und kontinuierliche Verbesserung und ermutigt zu einer schnellen und flexiblen Reaktion auf Veränderungen durch funktionsübergreifende Teams, die in kurzen Zyklen, sogenannten Sprints, arbeiten.";
|
|
3872
|
+
};
|
|
3873
|
+
readonly type: [{
|
|
3874
|
+
readonly id: "methodology";
|
|
3875
|
+
readonly name: {
|
|
3876
|
+
readonly "en-US": "Methodology";
|
|
3877
|
+
readonly "en-GB": "en-US";
|
|
3878
|
+
readonly "de-DE": "Methodik";
|
|
3879
|
+
};
|
|
3880
|
+
}];
|
|
3881
|
+
readonly tags: [{
|
|
3882
|
+
readonly id: "software_development";
|
|
3883
|
+
readonly name: {
|
|
3884
|
+
readonly "en-US": "Software Development";
|
|
3885
|
+
readonly "en-GB": "en-US";
|
|
3886
|
+
readonly "de-DE": "Softwareentwicklung";
|
|
3887
|
+
};
|
|
3888
|
+
}, {
|
|
3889
|
+
readonly id: "project_management";
|
|
3890
|
+
readonly name: {
|
|
3891
|
+
readonly "en-US": "Project Management";
|
|
3892
|
+
readonly "en-GB": "en-US";
|
|
3893
|
+
readonly "de-DE": "Projektmanagement";
|
|
3894
|
+
};
|
|
3895
|
+
}, {
|
|
3896
|
+
readonly id: "scrum";
|
|
3897
|
+
readonly name: {
|
|
3898
|
+
readonly "en-US": "Scrum";
|
|
3899
|
+
readonly "en-GB": "en-US";
|
|
3900
|
+
readonly "de-DE": "en-US";
|
|
3901
|
+
};
|
|
3902
|
+
}, {
|
|
3903
|
+
readonly id: "kanban";
|
|
3904
|
+
readonly name: {
|
|
3905
|
+
readonly "en-US": "Kanban";
|
|
3906
|
+
readonly "en-GB": "en-US";
|
|
3907
|
+
readonly "de-DE": "en-US";
|
|
3908
|
+
};
|
|
3909
|
+
}];
|
|
3910
|
+
readonly links: {
|
|
3911
|
+
readonly website: "https://agilemanifesto.org";
|
|
3912
|
+
readonly wikipedia: "https://en.wikipedia.org/wiki/Agile_software_development";
|
|
3913
|
+
};
|
|
3914
|
+
readonly sources: {
|
|
3915
|
+
readonly label: [{
|
|
3916
|
+
readonly id: "community";
|
|
3917
|
+
readonly name: {
|
|
3918
|
+
readonly "en-US": "Community";
|
|
3919
|
+
readonly "en-GB": "en-US";
|
|
3920
|
+
readonly "de-DE": "Gemeinschaft";
|
|
3921
|
+
};
|
|
3922
|
+
}];
|
|
3923
|
+
readonly definition: [{
|
|
3924
|
+
readonly id: "ai_generated";
|
|
3925
|
+
readonly name: {
|
|
3926
|
+
readonly "en-US": "AI Generated";
|
|
3927
|
+
readonly "en-GB": "en-US";
|
|
3928
|
+
readonly "de-DE": "KI-generiert";
|
|
3929
|
+
};
|
|
3930
|
+
}];
|
|
3803
3931
|
};
|
|
3804
|
-
readonly type: [];
|
|
3805
|
-
readonly tags: [];
|
|
3806
3932
|
};
|
|
3807
3933
|
readonly ai: {
|
|
3808
3934
|
readonly id: "ai";
|
|
@@ -4695,7 +4821,7 @@ export declare const TERMS: {
|
|
|
4695
4821
|
readonly name: {
|
|
4696
4822
|
readonly "en-US": "Testing";
|
|
4697
4823
|
readonly "en-GB": "en-US";
|
|
4698
|
-
readonly "de-DE": "
|
|
4824
|
+
readonly "de-DE": "en-US";
|
|
4699
4825
|
};
|
|
4700
4826
|
}, {
|
|
4701
4827
|
readonly id: "automation";
|
|
@@ -4709,7 +4835,7 @@ export declare const TERMS: {
|
|
|
4709
4835
|
readonly name: {
|
|
4710
4836
|
readonly "en-US": "QA";
|
|
4711
4837
|
readonly "en-GB": "en-US";
|
|
4712
|
-
readonly "de-DE": "
|
|
4838
|
+
readonly "de-DE": "en-US";
|
|
4713
4839
|
};
|
|
4714
4840
|
}, {
|
|
4715
4841
|
readonly id: "e2e";
|
|
@@ -5435,21 +5561,21 @@ export declare const TERMS: {
|
|
|
5435
5561
|
readonly name: {
|
|
5436
5562
|
readonly "en-US": "Frontend";
|
|
5437
5563
|
readonly "en-GB": "en-US";
|
|
5438
|
-
readonly "de-DE": "
|
|
5564
|
+
readonly "de-DE": "en-US";
|
|
5439
5565
|
};
|
|
5440
5566
|
}, {
|
|
5441
5567
|
readonly id: "backend";
|
|
5442
5568
|
readonly name: {
|
|
5443
5569
|
readonly "en-US": "Backend";
|
|
5444
5570
|
readonly "en-GB": "en-US";
|
|
5445
|
-
readonly "de-DE": "
|
|
5571
|
+
readonly "de-DE": "en-US";
|
|
5446
5572
|
};
|
|
5447
5573
|
}, {
|
|
5448
5574
|
readonly id: "open_source";
|
|
5449
5575
|
readonly name: {
|
|
5450
5576
|
readonly "en-US": "Open Source";
|
|
5451
5577
|
readonly "en-GB": "en-US";
|
|
5452
|
-
readonly "de-DE": "
|
|
5578
|
+
readonly "de-DE": "en-US";
|
|
5453
5579
|
};
|
|
5454
5580
|
}];
|
|
5455
5581
|
readonly links: {
|
|
@@ -6017,7 +6143,7 @@ export declare const TERMS: {
|
|
|
6017
6143
|
readonly name: {
|
|
6018
6144
|
readonly "en-US": "Backend";
|
|
6019
6145
|
readonly "en-GB": "en-US";
|
|
6020
|
-
readonly "de-DE": "
|
|
6146
|
+
readonly "de-DE": "en-US";
|
|
6021
6147
|
};
|
|
6022
6148
|
}];
|
|
6023
6149
|
readonly links: {
|
|
@@ -6404,28 +6530,28 @@ export declare const TERMS: {
|
|
|
6404
6530
|
readonly name: {
|
|
6405
6531
|
readonly "en-US": "Frontend";
|
|
6406
6532
|
readonly "en-GB": "en-US";
|
|
6407
|
-
readonly "de-DE": "
|
|
6533
|
+
readonly "de-DE": "en-US";
|
|
6408
6534
|
};
|
|
6409
6535
|
}, {
|
|
6410
6536
|
readonly id: "backend";
|
|
6411
6537
|
readonly name: {
|
|
6412
6538
|
readonly "en-US": "Backend";
|
|
6413
6539
|
readonly "en-GB": "en-US";
|
|
6414
|
-
readonly "de-DE": "
|
|
6540
|
+
readonly "de-DE": "en-US";
|
|
6415
6541
|
};
|
|
6416
6542
|
}, {
|
|
6417
6543
|
readonly id: "javascript";
|
|
6418
6544
|
readonly name: {
|
|
6419
6545
|
readonly "en-US": "JavaScript";
|
|
6420
6546
|
readonly "en-GB": "en-US";
|
|
6421
|
-
readonly "de-DE": "
|
|
6547
|
+
readonly "de-DE": "en-US";
|
|
6422
6548
|
};
|
|
6423
6549
|
}, {
|
|
6424
6550
|
readonly id: "open_source";
|
|
6425
6551
|
readonly name: {
|
|
6426
6552
|
readonly "en-US": "Open Source";
|
|
6427
6553
|
readonly "en-GB": "en-US";
|
|
6428
|
-
readonly "de-DE": "
|
|
6554
|
+
readonly "de-DE": "en-US";
|
|
6429
6555
|
};
|
|
6430
6556
|
}, {
|
|
6431
6557
|
readonly id: "ui_library";
|
|
@@ -7080,28 +7206,28 @@ export declare const TERMS: {
|
|
|
7080
7206
|
readonly name: {
|
|
7081
7207
|
readonly "en-US": "Frontend";
|
|
7082
7208
|
readonly "en-GB": "en-US";
|
|
7083
|
-
readonly "de-DE": "
|
|
7209
|
+
readonly "de-DE": "en-US";
|
|
7084
7210
|
};
|
|
7085
7211
|
}, {
|
|
7086
7212
|
readonly id: "backend";
|
|
7087
7213
|
readonly name: {
|
|
7088
7214
|
readonly "en-US": "Backend";
|
|
7089
7215
|
readonly "en-GB": "en-US";
|
|
7090
|
-
readonly "de-DE": "
|
|
7216
|
+
readonly "de-DE": "en-US";
|
|
7091
7217
|
};
|
|
7092
7218
|
}, {
|
|
7093
7219
|
readonly id: "open_source";
|
|
7094
7220
|
readonly name: {
|
|
7095
7221
|
readonly "en-US": "Open Source";
|
|
7096
7222
|
readonly "en-GB": "en-US";
|
|
7097
|
-
readonly "de-DE": "
|
|
7223
|
+
readonly "de-DE": "en-US";
|
|
7098
7224
|
};
|
|
7099
7225
|
}, {
|
|
7100
7226
|
readonly id: "javascript";
|
|
7101
7227
|
readonly name: {
|
|
7102
7228
|
readonly "en-US": "JavaScript";
|
|
7103
7229
|
readonly "en-GB": "en-US";
|
|
7104
|
-
readonly "de-DE": "
|
|
7230
|
+
readonly "de-DE": "en-US";
|
|
7105
7231
|
};
|
|
7106
7232
|
}];
|
|
7107
7233
|
readonly links: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/data/terms/index.ts"],"names":[],"mappings":"AAkOA,eAAO,MAAM,SAAS
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/data/terms/index.ts"],"names":[],"mappings":"AAkOA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+NZ,CAAA;AAEV,eAAO,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAkG,CAAA"}
|
|
@@ -23,21 +23,21 @@ declare const _default: {
|
|
|
23
23
|
readonly name: {
|
|
24
24
|
readonly "en-US": "Frontend";
|
|
25
25
|
readonly "en-GB": "en-US";
|
|
26
|
-
readonly "de-DE": "
|
|
26
|
+
readonly "de-DE": "en-US";
|
|
27
27
|
};
|
|
28
28
|
}, {
|
|
29
29
|
readonly id: "backend";
|
|
30
30
|
readonly name: {
|
|
31
31
|
readonly "en-US": "Backend";
|
|
32
32
|
readonly "en-GB": "en-US";
|
|
33
|
-
readonly "de-DE": "
|
|
33
|
+
readonly "de-DE": "en-US";
|
|
34
34
|
};
|
|
35
35
|
}, {
|
|
36
36
|
readonly id: "open_source";
|
|
37
37
|
readonly name: {
|
|
38
38
|
readonly "en-US": "Open Source";
|
|
39
39
|
readonly "en-GB": "en-US";
|
|
40
|
-
readonly "de-DE": "
|
|
40
|
+
readonly "de-DE": "en-US";
|
|
41
41
|
};
|
|
42
42
|
}];
|
|
43
43
|
readonly links: {
|
|
@@ -28,28 +28,28 @@ declare const _default: {
|
|
|
28
28
|
readonly name: {
|
|
29
29
|
readonly "en-US": "Frontend";
|
|
30
30
|
readonly "en-GB": "en-US";
|
|
31
|
-
readonly "de-DE": "
|
|
31
|
+
readonly "de-DE": "en-US";
|
|
32
32
|
};
|
|
33
33
|
}, {
|
|
34
34
|
readonly id: "backend";
|
|
35
35
|
readonly name: {
|
|
36
36
|
readonly "en-US": "Backend";
|
|
37
37
|
readonly "en-GB": "en-US";
|
|
38
|
-
readonly "de-DE": "
|
|
38
|
+
readonly "de-DE": "en-US";
|
|
39
39
|
};
|
|
40
40
|
}, {
|
|
41
41
|
readonly id: "javascript";
|
|
42
42
|
readonly name: {
|
|
43
43
|
readonly "en-US": "JavaScript";
|
|
44
44
|
readonly "en-GB": "en-US";
|
|
45
|
-
readonly "de-DE": "
|
|
45
|
+
readonly "de-DE": "en-US";
|
|
46
46
|
};
|
|
47
47
|
}, {
|
|
48
48
|
readonly id: "open_source";
|
|
49
49
|
readonly name: {
|
|
50
50
|
readonly "en-US": "Open Source";
|
|
51
51
|
readonly "en-GB": "en-US";
|
|
52
|
-
readonly "de-DE": "
|
|
52
|
+
readonly "de-DE": "en-US";
|
|
53
53
|
};
|
|
54
54
|
}, {
|
|
55
55
|
readonly id: "ui_library";
|
|
@@ -28,28 +28,28 @@ declare const _default: {
|
|
|
28
28
|
readonly name: {
|
|
29
29
|
readonly "en-US": "Frontend";
|
|
30
30
|
readonly "en-GB": "en-US";
|
|
31
|
-
readonly "de-DE": "
|
|
31
|
+
readonly "de-DE": "en-US";
|
|
32
32
|
};
|
|
33
33
|
}, {
|
|
34
34
|
readonly id: "backend";
|
|
35
35
|
readonly name: {
|
|
36
36
|
readonly "en-US": "Backend";
|
|
37
37
|
readonly "en-GB": "en-US";
|
|
38
|
-
readonly "de-DE": "
|
|
38
|
+
readonly "de-DE": "en-US";
|
|
39
39
|
};
|
|
40
40
|
}, {
|
|
41
41
|
readonly id: "open_source";
|
|
42
42
|
readonly name: {
|
|
43
43
|
readonly "en-US": "Open Source";
|
|
44
44
|
readonly "en-GB": "en-US";
|
|
45
|
-
readonly "de-DE": "
|
|
45
|
+
readonly "de-DE": "en-US";
|
|
46
46
|
};
|
|
47
47
|
}, {
|
|
48
48
|
readonly id: "javascript";
|
|
49
49
|
readonly name: {
|
|
50
50
|
readonly "en-US": "JavaScript";
|
|
51
51
|
readonly "en-GB": "en-US";
|
|
52
|
-
readonly "de-DE": "
|
|
52
|
+
readonly "de-DE": "en-US";
|
|
53
53
|
};
|
|
54
54
|
}];
|
|
55
55
|
readonly links: {
|