@engagently/types 7.1.2 → 7.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/lib/api/enums.d.ts +5 -0
- package/dist/i18n/i18n.d.ts +516 -8
- package/package.json +1 -1
|
@@ -20,6 +20,7 @@ export declare enum DsmCommentaryReportReason {
|
|
|
20
20
|
}
|
|
21
21
|
export declare enum DsmFeatureName {
|
|
22
22
|
Comment = "COMMENT",
|
|
23
|
+
CommentaryImageUpload = "COMMENTARY_IMAGE_UPLOAD",
|
|
23
24
|
CommentaryRead = "COMMENTARY_READ",
|
|
24
25
|
Ignore = "IGNORE",
|
|
25
26
|
InstantContext = "INSTANT_CONTEXT",
|
|
@@ -93,6 +94,10 @@ export declare enum ExmQuestionType {
|
|
|
93
94
|
Grid = "GRID",
|
|
94
95
|
Slider = "SLIDER"
|
|
95
96
|
}
|
|
97
|
+
export declare enum ImageStatus {
|
|
98
|
+
Expired = "expired",
|
|
99
|
+
Pending = "pending"
|
|
100
|
+
}
|
|
96
101
|
export declare enum PageStatus {
|
|
97
102
|
Empty = "EMPTY",
|
|
98
103
|
Full = "FULL",
|
package/dist/i18n/i18n.d.ts
CHANGED
|
@@ -20,22 +20,28 @@ export declare const defaultResources: {
|
|
|
20
20
|
close: string;
|
|
21
21
|
continue: string;
|
|
22
22
|
confirm: string;
|
|
23
|
+
discard: string;
|
|
23
24
|
"open-discussion": string;
|
|
24
25
|
"go-to-discussion": string;
|
|
25
26
|
na: string;
|
|
27
|
+
next: string;
|
|
26
28
|
save: string;
|
|
27
29
|
edit: string;
|
|
28
30
|
send: string;
|
|
29
31
|
"show-all-comments": string;
|
|
30
32
|
view: string;
|
|
33
|
+
"click-or-drop-image": string;
|
|
34
|
+
ok: string;
|
|
31
35
|
};
|
|
32
36
|
and: string;
|
|
37
|
+
category: string;
|
|
33
38
|
comment: string;
|
|
34
39
|
"comment-in-thread": string;
|
|
35
40
|
comment_other: string;
|
|
36
41
|
commentary: string;
|
|
37
42
|
commentary_other: string;
|
|
38
43
|
confirm: string;
|
|
44
|
+
"contact-details": string;
|
|
39
45
|
"copy-to-clipboard": string;
|
|
40
46
|
"date-and-time": string;
|
|
41
47
|
edited: string;
|
|
@@ -60,9 +66,9 @@ export declare const defaultResources: {
|
|
|
60
66
|
"shared-argument": string;
|
|
61
67
|
"shared-reply": string;
|
|
62
68
|
user: {
|
|
63
|
-
bio: string;
|
|
64
69
|
name: string;
|
|
65
|
-
|
|
70
|
+
email: string;
|
|
71
|
+
"email-confirmation": string;
|
|
66
72
|
};
|
|
67
73
|
vote: string;
|
|
68
74
|
vote_other: string;
|
|
@@ -147,6 +153,21 @@ export declare const defaultResources: {
|
|
|
147
153
|
message: string;
|
|
148
154
|
title: string;
|
|
149
155
|
};
|
|
156
|
+
"moderate-hint": {
|
|
157
|
+
description: string;
|
|
158
|
+
cta: string;
|
|
159
|
+
};
|
|
160
|
+
};
|
|
161
|
+
attachments: {
|
|
162
|
+
"image-status": {
|
|
163
|
+
expired: string;
|
|
164
|
+
pending: string;
|
|
165
|
+
};
|
|
166
|
+
"image-crop-hint": string;
|
|
167
|
+
"image-invalid-aspect-ratio": string;
|
|
168
|
+
"image-size-warning": string;
|
|
169
|
+
"image-not-supported": string;
|
|
170
|
+
"image-too-large": string;
|
|
150
171
|
};
|
|
151
172
|
"comment-as": string;
|
|
152
173
|
"commentary-actions": {
|
|
@@ -170,6 +191,8 @@ export declare const defaultResources: {
|
|
|
170
191
|
action: string;
|
|
171
192
|
title: string;
|
|
172
193
|
"justification-description": string;
|
|
194
|
+
"contact-me-confirmation": string;
|
|
195
|
+
"dsa-confirmation": string;
|
|
173
196
|
reasons: {
|
|
174
197
|
OTHER: string;
|
|
175
198
|
SPAM: string;
|
|
@@ -186,6 +209,97 @@ export declare const defaultResources: {
|
|
|
186
209
|
BEHAVIOUR: string;
|
|
187
210
|
};
|
|
188
211
|
submitted: string;
|
|
212
|
+
dsa: {
|
|
213
|
+
"select-main-category": string;
|
|
214
|
+
"select-sub-category": string;
|
|
215
|
+
"report-target-title": string;
|
|
216
|
+
"report-target": {
|
|
217
|
+
PERSON: string;
|
|
218
|
+
INSTITUTION: string;
|
|
219
|
+
TRUSTED_FLAGGER: string;
|
|
220
|
+
};
|
|
221
|
+
"main-category": {
|
|
222
|
+
ANIMAL_WELFARE: string;
|
|
223
|
+
CONSUMER_INFORMATION_VIOLATIONS: string;
|
|
224
|
+
CYBER_VIOLENCE: string;
|
|
225
|
+
CYBER_VIOLENCE_AGAINST_WOMEN: string;
|
|
226
|
+
DATA_PROTECTION_AND_PRIVACY_VIOLATIONS: string;
|
|
227
|
+
ILLEGAL_STATEMENTS_OR_HARMFUL_SPEECH: string;
|
|
228
|
+
INTELLECTUAL_PROPERTY_VIOLATIONS: string;
|
|
229
|
+
NEGATIVE_IMPACT_ON_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
230
|
+
CHILD_AND_YOUTH_PROTECTION: string;
|
|
231
|
+
THREAT_TO_PUBLIC_SAFETY: string;
|
|
232
|
+
DECEPTION_AND_OR_FRAUD: string;
|
|
233
|
+
SELF_HARM: string;
|
|
234
|
+
UNSAFE_NONCOMPLIANT_OR_PROHIBITED_PRODUCTS: string;
|
|
235
|
+
VIOLENCE: string;
|
|
236
|
+
OTHER: string;
|
|
237
|
+
};
|
|
238
|
+
"sub-category": {
|
|
239
|
+
ANIMAL_CRUELTY: string;
|
|
240
|
+
ILLEGAL_SALE_OF_ANIMALS: string;
|
|
241
|
+
HIDDEN_ADVERTISING_OR_COMMERCIAL_COMMUNICATION: string;
|
|
242
|
+
INSUFFICIENT_INFORMATION_ABOUT_TRADERS: string;
|
|
243
|
+
MISLEADING_INFORMATION_ABOUT_GOODS_AND_SERVICES: string;
|
|
244
|
+
MISLEADING_INFORMATION_ABOUT_CONSUMER_RIGHTS: string;
|
|
245
|
+
NON_COMPLIANCE_WITH_PRICING_REGULATIONS: string;
|
|
246
|
+
ONLINE_BULLYING_AND_INTIMIDATION: string;
|
|
247
|
+
CYBER_HARASSMENT: string;
|
|
248
|
+
INCITEMENT_TO_VIOLENCE_OR_HATRED_ONLINE: string;
|
|
249
|
+
CYBERSTALKING: string;
|
|
250
|
+
NON_CONSENSUAL_SHARING_OF_INTIMATE_MATERIAL: string;
|
|
251
|
+
NON_CONSENSUAL_SHARING_OF_DEEPFAKE_MATERIAL: string;
|
|
252
|
+
ONLINE_BULLYING_AND_INTIMIDATION_OF_GIRLS: string;
|
|
253
|
+
CYBERBULLYING_AGAINST_WOMEN: string;
|
|
254
|
+
CYBERSTALKING_AGAINST_WOMEN: string;
|
|
255
|
+
GENDER_SPECIFIC_DISINFORMATION: string;
|
|
256
|
+
ILLEGAL_INCITEMENT_TO_VIOLENCE_AND_HATRED_AGAINST_WOMEN: string;
|
|
257
|
+
NON_CONSENSUAL_SHARING_OF_INTIMATE_MATERIAL_AGAINST_WOMEN: string;
|
|
258
|
+
NON_CONSENSUAL_SHARING_OF_DEEPFAKE_MATERIAL_AGAINST_WOMEN: string;
|
|
259
|
+
BIOMETRIC_DATA_PROTECTION_VIOLATION: string;
|
|
260
|
+
DATA_FALSIFICATION: string;
|
|
261
|
+
MISSING_BASIS_FOR_DATA_PROCESSING: string;
|
|
262
|
+
RIGHT_TO_BE_FORGOTTEN: string;
|
|
263
|
+
DEFAMATION: string;
|
|
264
|
+
DISCRIMINATION: string;
|
|
265
|
+
ILLEGAL_INCITEMENT_TO_VIOLENCE_AND_HATRED_BASED_ON_PROTECTED_CHARACTERISTICS: string;
|
|
266
|
+
COPYRIGHT_VIOLATIONS: string;
|
|
267
|
+
DESIGN_RIGHTS_VIOLATIONS: string;
|
|
268
|
+
GEOGRAPHICAL_INDICATIONS_VIOLATIONS: string;
|
|
269
|
+
PATENT_VIOLATIONS: string;
|
|
270
|
+
TRADE_SECRET_VIOLATIONS: string;
|
|
271
|
+
TRADEMARK_VIOLATIONS: string;
|
|
272
|
+
MISINFORMATION_DISINFORMATION_AND_FOREIGN_INFORMATION_MANIPULATION: string;
|
|
273
|
+
VIOLATION_OF_EU_LAW_REGARDING_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
274
|
+
VIOLATION_OF_NATIONAL_LAW_REGARDING_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
275
|
+
AGE_SPECIFIC_RESTRICTIONS_FOR_MINORS: string;
|
|
276
|
+
DEPICTIONS_OF_CHILD_SEXUAL_ABUSE: string;
|
|
277
|
+
DEPICTIONS_OF_CHILD_SEXUAL_ABUSE_DEEPFAKE: string;
|
|
278
|
+
GROOMING_OF_MINORS: string;
|
|
279
|
+
DANGEROUS_CHALLENGES: string;
|
|
280
|
+
ILLEGAL_ORGANIZATIONS: string;
|
|
281
|
+
RISK_OF_ENVIRONMENTAL_DAMAGE: string;
|
|
282
|
+
RISK_TO_PUBLIC_HEALTH: string;
|
|
283
|
+
TERRORIST_CONTENT: string;
|
|
284
|
+
IDENTITY_FRAUD_OR_ACCOUNT_TAKEOVER: string;
|
|
285
|
+
FAKE_ACCOUNTS: string;
|
|
286
|
+
FAKE_LISTINGS: string;
|
|
287
|
+
FAKE_USER_REVIEWS: string;
|
|
288
|
+
PHISHING: string;
|
|
289
|
+
PYRAMID_SCHEMES: string;
|
|
290
|
+
CONTENT_PROMOTING_EATING_DISORDERS: string;
|
|
291
|
+
SELF_MUTILATION: string;
|
|
292
|
+
SUICIDE: string;
|
|
293
|
+
PROHIBITED_OR_RESTRICTED_PRODUCTS: string;
|
|
294
|
+
UNSAFE_OR_NONCOMPLIANT_PRODUCTS: string;
|
|
295
|
+
INCITEMENT_TO_VIOLENCE: string;
|
|
296
|
+
GENERAL_CALLS_OR_INCITEMENT_TO_VIOLENCE_AND_OR_HATRED: string;
|
|
297
|
+
HUMAN_EXPLOITATION: string;
|
|
298
|
+
HUMAN_TRAFFICKING: string;
|
|
299
|
+
TRAFFICKING_OF_WOMEN_AND_GIRLS: string;
|
|
300
|
+
OTHER: string;
|
|
301
|
+
};
|
|
302
|
+
};
|
|
189
303
|
};
|
|
190
304
|
reaction: {
|
|
191
305
|
REACTION1: string;
|
|
@@ -253,6 +367,7 @@ export declare const defaultResources: {
|
|
|
253
367
|
emojis: string;
|
|
254
368
|
italic: string;
|
|
255
369
|
underline: string;
|
|
370
|
+
image: string;
|
|
256
371
|
};
|
|
257
372
|
"view-mode": string;
|
|
258
373
|
"view-modes": {
|
|
@@ -320,6 +435,9 @@ export declare const defaultResources: {
|
|
|
320
435
|
COMMENTARY_READ: {
|
|
321
436
|
"call-to-action": string;
|
|
322
437
|
};
|
|
438
|
+
COMMENTARY_IMAGE_UPLOAD: {
|
|
439
|
+
"call-to-action": string;
|
|
440
|
+
};
|
|
323
441
|
INSTANT_CONTEXT: {
|
|
324
442
|
"call-to-action": string;
|
|
325
443
|
};
|
|
@@ -348,6 +466,15 @@ export declare const defaultResources: {
|
|
|
348
466
|
"call-to-action": string;
|
|
349
467
|
};
|
|
350
468
|
};
|
|
469
|
+
readonly forms: {
|
|
470
|
+
validation: {
|
|
471
|
+
required: string;
|
|
472
|
+
"email-invalid": string;
|
|
473
|
+
"email-no-match": string;
|
|
474
|
+
"min-length": string;
|
|
475
|
+
"checkbox-required": string;
|
|
476
|
+
};
|
|
477
|
+
};
|
|
351
478
|
readonly interpolation: {
|
|
352
479
|
comment: string;
|
|
353
480
|
"comment-do": string;
|
|
@@ -475,22 +602,28 @@ export declare const defaultResources: {
|
|
|
475
602
|
close: string;
|
|
476
603
|
continue: string;
|
|
477
604
|
confirm: string;
|
|
605
|
+
discard: string;
|
|
478
606
|
"open-discussion": string;
|
|
479
607
|
"go-to-discussion": string;
|
|
480
608
|
na: string;
|
|
609
|
+
next: string;
|
|
481
610
|
save: string;
|
|
482
611
|
edit: string;
|
|
483
612
|
send: string;
|
|
484
613
|
"show-all-comments": string;
|
|
485
614
|
view: string;
|
|
615
|
+
"click-or-drop-image": string;
|
|
616
|
+
ok: string;
|
|
486
617
|
};
|
|
487
618
|
and: string;
|
|
619
|
+
category: string;
|
|
488
620
|
comment: string;
|
|
489
621
|
"comment-in-thread": string;
|
|
490
622
|
comment_other: string;
|
|
491
623
|
commentary: string;
|
|
492
624
|
commentary_other: string;
|
|
493
625
|
confirm: string;
|
|
626
|
+
"contact-details": string;
|
|
494
627
|
"copy-to-clipboard": string;
|
|
495
628
|
"date-and-time": string;
|
|
496
629
|
edited: string;
|
|
@@ -515,9 +648,9 @@ export declare const defaultResources: {
|
|
|
515
648
|
"shared-argument": string;
|
|
516
649
|
"shared-reply": string;
|
|
517
650
|
user: {
|
|
518
|
-
bio: string;
|
|
519
651
|
name: string;
|
|
520
|
-
|
|
652
|
+
email: string;
|
|
653
|
+
"email-confirmation": string;
|
|
521
654
|
};
|
|
522
655
|
vote: string;
|
|
523
656
|
vote_other: string;
|
|
@@ -602,6 +735,21 @@ export declare const defaultResources: {
|
|
|
602
735
|
message: string;
|
|
603
736
|
title: string;
|
|
604
737
|
};
|
|
738
|
+
"moderate-hint": {
|
|
739
|
+
description: string;
|
|
740
|
+
cta: string;
|
|
741
|
+
};
|
|
742
|
+
};
|
|
743
|
+
attachments: {
|
|
744
|
+
"image-status": {
|
|
745
|
+
expired: string;
|
|
746
|
+
pending: string;
|
|
747
|
+
};
|
|
748
|
+
"image-crop-hint": string;
|
|
749
|
+
"image-invalid-aspect-ratio": string;
|
|
750
|
+
"image-size-warning": string;
|
|
751
|
+
"image-not-supported": string;
|
|
752
|
+
"image-too-large": string;
|
|
605
753
|
};
|
|
606
754
|
"comment-as": string;
|
|
607
755
|
"commentary-actions": {
|
|
@@ -625,6 +773,8 @@ export declare const defaultResources: {
|
|
|
625
773
|
action: string;
|
|
626
774
|
title: string;
|
|
627
775
|
"justification-description": string;
|
|
776
|
+
"contact-me-confirmation": string;
|
|
777
|
+
"dsa-confirmation": string;
|
|
628
778
|
reasons: {
|
|
629
779
|
OTHER: string;
|
|
630
780
|
SPAM: string;
|
|
@@ -641,6 +791,97 @@ export declare const defaultResources: {
|
|
|
641
791
|
BEHAVIOUR: string;
|
|
642
792
|
};
|
|
643
793
|
submitted: string;
|
|
794
|
+
dsa: {
|
|
795
|
+
"select-main-category": string;
|
|
796
|
+
"select-sub-category": string;
|
|
797
|
+
"report-target-title": string;
|
|
798
|
+
"report-target": {
|
|
799
|
+
PERSON: string;
|
|
800
|
+
INSTITUTION: string;
|
|
801
|
+
TRUSTED_FLAGGER: string;
|
|
802
|
+
};
|
|
803
|
+
"main-category": {
|
|
804
|
+
ANIMAL_WELFARE: string;
|
|
805
|
+
CONSUMER_INFORMATION_VIOLATIONS: string;
|
|
806
|
+
CYBER_VIOLENCE: string;
|
|
807
|
+
CYBER_VIOLENCE_AGAINST_WOMEN: string;
|
|
808
|
+
DATA_PROTECTION_AND_PRIVACY_VIOLATIONS: string;
|
|
809
|
+
ILLEGAL_STATEMENTS_OR_HARMFUL_SPEECH: string;
|
|
810
|
+
INTELLECTUAL_PROPERTY_VIOLATIONS: string;
|
|
811
|
+
NEGATIVE_IMPACT_ON_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
812
|
+
CHILD_AND_YOUTH_PROTECTION: string;
|
|
813
|
+
THREAT_TO_PUBLIC_SAFETY: string;
|
|
814
|
+
DECEPTION_AND_OR_FRAUD: string;
|
|
815
|
+
SELF_HARM: string;
|
|
816
|
+
UNSAFE_NONCOMPLIANT_OR_PROHIBITED_PRODUCTS: string;
|
|
817
|
+
VIOLENCE: string;
|
|
818
|
+
OTHER: string;
|
|
819
|
+
};
|
|
820
|
+
"sub-category": {
|
|
821
|
+
ANIMAL_CRUELTY: string;
|
|
822
|
+
ILLEGAL_SALE_OF_ANIMALS: string;
|
|
823
|
+
HIDDEN_ADVERTISING_OR_COMMERCIAL_COMMUNICATION: string;
|
|
824
|
+
INSUFFICIENT_INFORMATION_ABOUT_TRADERS: string;
|
|
825
|
+
MISLEADING_INFORMATION_ABOUT_GOODS_AND_SERVICES: string;
|
|
826
|
+
MISLEADING_INFORMATION_ABOUT_CONSUMER_RIGHTS: string;
|
|
827
|
+
NON_COMPLIANCE_WITH_PRICING_REGULATIONS: string;
|
|
828
|
+
ONLINE_BULLYING_AND_INTIMIDATION: string;
|
|
829
|
+
CYBER_HARASSMENT: string;
|
|
830
|
+
INCITEMENT_TO_VIOLENCE_OR_HATRED_ONLINE: string;
|
|
831
|
+
CYBERSTALKING: string;
|
|
832
|
+
NON_CONSENSUAL_SHARING_OF_INTIMATE_MATERIAL: string;
|
|
833
|
+
NON_CONSENSUAL_SHARING_OF_DEEPFAKE_MATERIAL: string;
|
|
834
|
+
ONLINE_BULLYING_AND_INTIMIDATION_OF_GIRLS: string;
|
|
835
|
+
CYBERBULLYING_AGAINST_WOMEN: string;
|
|
836
|
+
CYBERSTALKING_AGAINST_WOMEN: string;
|
|
837
|
+
GENDER_SPECIFIC_DISINFORMATION: string;
|
|
838
|
+
ILLEGAL_INCITEMENT_TO_VIOLENCE_AND_HATRED_AGAINST_WOMEN: string;
|
|
839
|
+
NON_CONSENSUAL_SHARING_OF_INTIMATE_MATERIAL_AGAINST_WOMEN: string;
|
|
840
|
+
NON_CONSENSUAL_SHARING_OF_DEEPFAKE_MATERIAL_AGAINST_WOMEN: string;
|
|
841
|
+
BIOMETRIC_DATA_PROTECTION_VIOLATION: string;
|
|
842
|
+
DATA_FALSIFICATION: string;
|
|
843
|
+
MISSING_BASIS_FOR_DATA_PROCESSING: string;
|
|
844
|
+
RIGHT_TO_BE_FORGOTTEN: string;
|
|
845
|
+
DEFAMATION: string;
|
|
846
|
+
DISCRIMINATION: string;
|
|
847
|
+
ILLEGAL_INCITEMENT_TO_VIOLENCE_AND_HATRED_BASED_ON_PROTECTED_CHARACTERISTICS: string;
|
|
848
|
+
COPYRIGHT_VIOLATIONS: string;
|
|
849
|
+
DESIGN_RIGHTS_VIOLATIONS: string;
|
|
850
|
+
GEOGRAPHICAL_INDICATIONS_VIOLATIONS: string;
|
|
851
|
+
PATENT_VIOLATIONS: string;
|
|
852
|
+
TRADE_SECRET_VIOLATIONS: string;
|
|
853
|
+
TRADEMARK_VIOLATIONS: string;
|
|
854
|
+
MISINFORMATION_DISINFORMATION_AND_FOREIGN_INFORMATION_MANIPULATION: string;
|
|
855
|
+
VIOLATION_OF_EU_LAW_REGARDING_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
856
|
+
VIOLATION_OF_NATIONAL_LAW_REGARDING_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
857
|
+
AGE_SPECIFIC_RESTRICTIONS_FOR_MINORS: string;
|
|
858
|
+
DEPICTIONS_OF_CHILD_SEXUAL_ABUSE: string;
|
|
859
|
+
DEPICTIONS_OF_CHILD_SEXUAL_ABUSE_DEEPFAKE: string;
|
|
860
|
+
GROOMING_OF_MINORS: string;
|
|
861
|
+
DANGEROUS_CHALLENGES: string;
|
|
862
|
+
ILLEGAL_ORGANIZATIONS: string;
|
|
863
|
+
RISK_OF_ENVIRONMENTAL_DAMAGE: string;
|
|
864
|
+
RISK_TO_PUBLIC_HEALTH: string;
|
|
865
|
+
TERRORIST_CONTENT: string;
|
|
866
|
+
IDENTITY_FRAUD_OR_ACCOUNT_TAKEOVER: string;
|
|
867
|
+
FAKE_ACCOUNTS: string;
|
|
868
|
+
FAKE_LISTINGS: string;
|
|
869
|
+
FAKE_USER_REVIEWS: string;
|
|
870
|
+
PHISHING: string;
|
|
871
|
+
PYRAMID_SCHEMES: string;
|
|
872
|
+
CONTENT_PROMOTING_EATING_DISORDERS: string;
|
|
873
|
+
SELF_MUTILATION: string;
|
|
874
|
+
SUICIDE: string;
|
|
875
|
+
PROHIBITED_OR_RESTRICTED_PRODUCTS: string;
|
|
876
|
+
UNSAFE_OR_NONCOMPLIANT_PRODUCTS: string;
|
|
877
|
+
INCITEMENT_TO_VIOLENCE: string;
|
|
878
|
+
GENERAL_CALLS_OR_INCITEMENT_TO_VIOLENCE_AND_OR_HATRED: string;
|
|
879
|
+
HUMAN_EXPLOITATION: string;
|
|
880
|
+
HUMAN_TRAFFICKING: string;
|
|
881
|
+
TRAFFICKING_OF_WOMEN_AND_GIRLS: string;
|
|
882
|
+
OTHER: string;
|
|
883
|
+
};
|
|
884
|
+
};
|
|
644
885
|
};
|
|
645
886
|
reaction: {
|
|
646
887
|
REACTION1: string;
|
|
@@ -708,6 +949,7 @@ export declare const defaultResources: {
|
|
|
708
949
|
emojis: string;
|
|
709
950
|
italic: string;
|
|
710
951
|
underline: string;
|
|
952
|
+
image: string;
|
|
711
953
|
};
|
|
712
954
|
"view-mode": string;
|
|
713
955
|
"view-modes": {
|
|
@@ -774,6 +1016,9 @@ export declare const defaultResources: {
|
|
|
774
1016
|
COMMENTARY_READ: {
|
|
775
1017
|
"call-to-action": string;
|
|
776
1018
|
};
|
|
1019
|
+
COMMENTARY_IMAGE_UPLOAD: {
|
|
1020
|
+
"call-to-action": string;
|
|
1021
|
+
};
|
|
777
1022
|
INSTANT_CONTEXT: {
|
|
778
1023
|
"call-to-action": string;
|
|
779
1024
|
};
|
|
@@ -802,6 +1047,15 @@ export declare const defaultResources: {
|
|
|
802
1047
|
"call-to-action": string;
|
|
803
1048
|
};
|
|
804
1049
|
};
|
|
1050
|
+
readonly forms: {
|
|
1051
|
+
validation: {
|
|
1052
|
+
required: string;
|
|
1053
|
+
"email-invalid": string;
|
|
1054
|
+
"email-no-match": string;
|
|
1055
|
+
"min-length": string;
|
|
1056
|
+
"checkbox-required": string;
|
|
1057
|
+
};
|
|
1058
|
+
};
|
|
805
1059
|
readonly interpolation: {
|
|
806
1060
|
comment: string;
|
|
807
1061
|
"comment-do": string;
|
|
@@ -931,22 +1185,28 @@ declare const resources: {
|
|
|
931
1185
|
close: string;
|
|
932
1186
|
continue: string;
|
|
933
1187
|
confirm: string;
|
|
1188
|
+
discard: string;
|
|
934
1189
|
"open-discussion": string;
|
|
935
1190
|
"go-to-discussion": string;
|
|
936
1191
|
na: string;
|
|
1192
|
+
next: string;
|
|
937
1193
|
save: string;
|
|
938
1194
|
edit: string;
|
|
939
1195
|
send: string;
|
|
940
1196
|
"show-all-comments": string;
|
|
941
1197
|
view: string;
|
|
1198
|
+
"click-or-drop-image": string;
|
|
1199
|
+
ok: string;
|
|
942
1200
|
};
|
|
943
1201
|
and: string;
|
|
1202
|
+
category: string;
|
|
944
1203
|
comment: string;
|
|
945
1204
|
"comment-in-thread": string;
|
|
946
1205
|
comment_other: string;
|
|
947
1206
|
commentary: string;
|
|
948
1207
|
commentary_other: string;
|
|
949
1208
|
confirm: string;
|
|
1209
|
+
"contact-details": string;
|
|
950
1210
|
"copy-to-clipboard": string;
|
|
951
1211
|
"date-and-time": string;
|
|
952
1212
|
edited: string;
|
|
@@ -971,9 +1231,9 @@ declare const resources: {
|
|
|
971
1231
|
"shared-argument": string;
|
|
972
1232
|
"shared-reply": string;
|
|
973
1233
|
user: {
|
|
974
|
-
bio: string;
|
|
975
1234
|
name: string;
|
|
976
|
-
|
|
1235
|
+
email: string;
|
|
1236
|
+
"email-confirmation": string;
|
|
977
1237
|
};
|
|
978
1238
|
vote: string;
|
|
979
1239
|
vote_other: string;
|
|
@@ -1058,6 +1318,21 @@ declare const resources: {
|
|
|
1058
1318
|
message: string;
|
|
1059
1319
|
title: string;
|
|
1060
1320
|
};
|
|
1321
|
+
"moderate-hint": {
|
|
1322
|
+
description: string;
|
|
1323
|
+
cta: string;
|
|
1324
|
+
};
|
|
1325
|
+
};
|
|
1326
|
+
attachments: {
|
|
1327
|
+
"image-status": {
|
|
1328
|
+
expired: string;
|
|
1329
|
+
pending: string;
|
|
1330
|
+
};
|
|
1331
|
+
"image-crop-hint": string;
|
|
1332
|
+
"image-invalid-aspect-ratio": string;
|
|
1333
|
+
"image-size-warning": string;
|
|
1334
|
+
"image-not-supported": string;
|
|
1335
|
+
"image-too-large": string;
|
|
1061
1336
|
};
|
|
1062
1337
|
"comment-as": string;
|
|
1063
1338
|
"commentary-actions": {
|
|
@@ -1081,6 +1356,8 @@ declare const resources: {
|
|
|
1081
1356
|
action: string;
|
|
1082
1357
|
title: string;
|
|
1083
1358
|
"justification-description": string;
|
|
1359
|
+
"contact-me-confirmation": string;
|
|
1360
|
+
"dsa-confirmation": string;
|
|
1084
1361
|
reasons: {
|
|
1085
1362
|
OTHER: string;
|
|
1086
1363
|
SPAM: string;
|
|
@@ -1097,6 +1374,97 @@ declare const resources: {
|
|
|
1097
1374
|
BEHAVIOUR: string;
|
|
1098
1375
|
};
|
|
1099
1376
|
submitted: string;
|
|
1377
|
+
dsa: {
|
|
1378
|
+
"select-main-category": string;
|
|
1379
|
+
"select-sub-category": string;
|
|
1380
|
+
"report-target-title": string;
|
|
1381
|
+
"report-target": {
|
|
1382
|
+
PERSON: string;
|
|
1383
|
+
INSTITUTION: string;
|
|
1384
|
+
TRUSTED_FLAGGER: string;
|
|
1385
|
+
};
|
|
1386
|
+
"main-category": {
|
|
1387
|
+
ANIMAL_WELFARE: string;
|
|
1388
|
+
CONSUMER_INFORMATION_VIOLATIONS: string;
|
|
1389
|
+
CYBER_VIOLENCE: string;
|
|
1390
|
+
CYBER_VIOLENCE_AGAINST_WOMEN: string;
|
|
1391
|
+
DATA_PROTECTION_AND_PRIVACY_VIOLATIONS: string;
|
|
1392
|
+
ILLEGAL_STATEMENTS_OR_HARMFUL_SPEECH: string;
|
|
1393
|
+
INTELLECTUAL_PROPERTY_VIOLATIONS: string;
|
|
1394
|
+
NEGATIVE_IMPACT_ON_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
1395
|
+
CHILD_AND_YOUTH_PROTECTION: string;
|
|
1396
|
+
THREAT_TO_PUBLIC_SAFETY: string;
|
|
1397
|
+
DECEPTION_AND_OR_FRAUD: string;
|
|
1398
|
+
SELF_HARM: string;
|
|
1399
|
+
UNSAFE_NONCOMPLIANT_OR_PROHIBITED_PRODUCTS: string;
|
|
1400
|
+
VIOLENCE: string;
|
|
1401
|
+
OTHER: string;
|
|
1402
|
+
};
|
|
1403
|
+
"sub-category": {
|
|
1404
|
+
ANIMAL_CRUELTY: string;
|
|
1405
|
+
ILLEGAL_SALE_OF_ANIMALS: string;
|
|
1406
|
+
HIDDEN_ADVERTISING_OR_COMMERCIAL_COMMUNICATION: string;
|
|
1407
|
+
INSUFFICIENT_INFORMATION_ABOUT_TRADERS: string;
|
|
1408
|
+
MISLEADING_INFORMATION_ABOUT_GOODS_AND_SERVICES: string;
|
|
1409
|
+
MISLEADING_INFORMATION_ABOUT_CONSUMER_RIGHTS: string;
|
|
1410
|
+
NON_COMPLIANCE_WITH_PRICING_REGULATIONS: string;
|
|
1411
|
+
ONLINE_BULLYING_AND_INTIMIDATION: string;
|
|
1412
|
+
CYBER_HARASSMENT: string;
|
|
1413
|
+
INCITEMENT_TO_VIOLENCE_OR_HATRED_ONLINE: string;
|
|
1414
|
+
CYBERSTALKING: string;
|
|
1415
|
+
NON_CONSENSUAL_SHARING_OF_INTIMATE_MATERIAL: string;
|
|
1416
|
+
NON_CONSENSUAL_SHARING_OF_DEEPFAKE_MATERIAL: string;
|
|
1417
|
+
ONLINE_BULLYING_AND_INTIMIDATION_OF_GIRLS: string;
|
|
1418
|
+
CYBERBULLYING_AGAINST_WOMEN: string;
|
|
1419
|
+
CYBERSTALKING_AGAINST_WOMEN: string;
|
|
1420
|
+
GENDER_SPECIFIC_DISINFORMATION: string;
|
|
1421
|
+
ILLEGAL_INCITEMENT_TO_VIOLENCE_AND_HATRED_AGAINST_WOMEN: string;
|
|
1422
|
+
NON_CONSENSUAL_SHARING_OF_INTIMATE_MATERIAL_AGAINST_WOMEN: string;
|
|
1423
|
+
NON_CONSENSUAL_SHARING_OF_DEEPFAKE_MATERIAL_AGAINST_WOMEN: string;
|
|
1424
|
+
BIOMETRIC_DATA_PROTECTION_VIOLATION: string;
|
|
1425
|
+
DATA_FALSIFICATION: string;
|
|
1426
|
+
MISSING_BASIS_FOR_DATA_PROCESSING: string;
|
|
1427
|
+
RIGHT_TO_BE_FORGOTTEN: string;
|
|
1428
|
+
DEFAMATION: string;
|
|
1429
|
+
DISCRIMINATION: string;
|
|
1430
|
+
ILLEGAL_INCITEMENT_TO_VIOLENCE_AND_HATRED_BASED_ON_PROTECTED_CHARACTERISTICS: string;
|
|
1431
|
+
COPYRIGHT_VIOLATIONS: string;
|
|
1432
|
+
DESIGN_RIGHTS_VIOLATIONS: string;
|
|
1433
|
+
GEOGRAPHICAL_INDICATIONS_VIOLATIONS: string;
|
|
1434
|
+
PATENT_VIOLATIONS: string;
|
|
1435
|
+
TRADE_SECRET_VIOLATIONS: string;
|
|
1436
|
+
TRADEMARK_VIOLATIONS: string;
|
|
1437
|
+
MISINFORMATION_DISINFORMATION_AND_FOREIGN_INFORMATION_MANIPULATION: string;
|
|
1438
|
+
VIOLATION_OF_EU_LAW_REGARDING_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
1439
|
+
VIOLATION_OF_NATIONAL_LAW_REGARDING_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
1440
|
+
AGE_SPECIFIC_RESTRICTIONS_FOR_MINORS: string;
|
|
1441
|
+
DEPICTIONS_OF_CHILD_SEXUAL_ABUSE: string;
|
|
1442
|
+
DEPICTIONS_OF_CHILD_SEXUAL_ABUSE_DEEPFAKE: string;
|
|
1443
|
+
GROOMING_OF_MINORS: string;
|
|
1444
|
+
DANGEROUS_CHALLENGES: string;
|
|
1445
|
+
ILLEGAL_ORGANIZATIONS: string;
|
|
1446
|
+
RISK_OF_ENVIRONMENTAL_DAMAGE: string;
|
|
1447
|
+
RISK_TO_PUBLIC_HEALTH: string;
|
|
1448
|
+
TERRORIST_CONTENT: string;
|
|
1449
|
+
IDENTITY_FRAUD_OR_ACCOUNT_TAKEOVER: string;
|
|
1450
|
+
FAKE_ACCOUNTS: string;
|
|
1451
|
+
FAKE_LISTINGS: string;
|
|
1452
|
+
FAKE_USER_REVIEWS: string;
|
|
1453
|
+
PHISHING: string;
|
|
1454
|
+
PYRAMID_SCHEMES: string;
|
|
1455
|
+
CONTENT_PROMOTING_EATING_DISORDERS: string;
|
|
1456
|
+
SELF_MUTILATION: string;
|
|
1457
|
+
SUICIDE: string;
|
|
1458
|
+
PROHIBITED_OR_RESTRICTED_PRODUCTS: string;
|
|
1459
|
+
UNSAFE_OR_NONCOMPLIANT_PRODUCTS: string;
|
|
1460
|
+
INCITEMENT_TO_VIOLENCE: string;
|
|
1461
|
+
GENERAL_CALLS_OR_INCITEMENT_TO_VIOLENCE_AND_OR_HATRED: string;
|
|
1462
|
+
HUMAN_EXPLOITATION: string;
|
|
1463
|
+
HUMAN_TRAFFICKING: string;
|
|
1464
|
+
TRAFFICKING_OF_WOMEN_AND_GIRLS: string;
|
|
1465
|
+
OTHER: string;
|
|
1466
|
+
};
|
|
1467
|
+
};
|
|
1100
1468
|
};
|
|
1101
1469
|
reaction: {
|
|
1102
1470
|
REACTION1: string;
|
|
@@ -1164,6 +1532,7 @@ declare const resources: {
|
|
|
1164
1532
|
emojis: string;
|
|
1165
1533
|
italic: string;
|
|
1166
1534
|
underline: string;
|
|
1535
|
+
image: string;
|
|
1167
1536
|
};
|
|
1168
1537
|
"view-mode": string;
|
|
1169
1538
|
"view-modes": {
|
|
@@ -1231,6 +1600,9 @@ declare const resources: {
|
|
|
1231
1600
|
COMMENTARY_READ: {
|
|
1232
1601
|
"call-to-action": string;
|
|
1233
1602
|
};
|
|
1603
|
+
COMMENTARY_IMAGE_UPLOAD: {
|
|
1604
|
+
"call-to-action": string;
|
|
1605
|
+
};
|
|
1234
1606
|
INSTANT_CONTEXT: {
|
|
1235
1607
|
"call-to-action": string;
|
|
1236
1608
|
};
|
|
@@ -1259,6 +1631,15 @@ declare const resources: {
|
|
|
1259
1631
|
"call-to-action": string;
|
|
1260
1632
|
};
|
|
1261
1633
|
};
|
|
1634
|
+
readonly forms: {
|
|
1635
|
+
validation: {
|
|
1636
|
+
required: string;
|
|
1637
|
+
"email-invalid": string;
|
|
1638
|
+
"email-no-match": string;
|
|
1639
|
+
"min-length": string;
|
|
1640
|
+
"checkbox-required": string;
|
|
1641
|
+
};
|
|
1642
|
+
};
|
|
1262
1643
|
readonly interpolation: {
|
|
1263
1644
|
comment: string;
|
|
1264
1645
|
"comment-do": string;
|
|
@@ -1386,22 +1767,28 @@ declare const resources: {
|
|
|
1386
1767
|
close: string;
|
|
1387
1768
|
continue: string;
|
|
1388
1769
|
confirm: string;
|
|
1770
|
+
discard: string;
|
|
1389
1771
|
"open-discussion": string;
|
|
1390
1772
|
"go-to-discussion": string;
|
|
1391
1773
|
na: string;
|
|
1774
|
+
next: string;
|
|
1392
1775
|
save: string;
|
|
1393
1776
|
edit: string;
|
|
1394
1777
|
send: string;
|
|
1395
1778
|
"show-all-comments": string;
|
|
1396
1779
|
view: string;
|
|
1780
|
+
"click-or-drop-image": string;
|
|
1781
|
+
ok: string;
|
|
1397
1782
|
};
|
|
1398
1783
|
and: string;
|
|
1784
|
+
category: string;
|
|
1399
1785
|
comment: string;
|
|
1400
1786
|
"comment-in-thread": string;
|
|
1401
1787
|
comment_other: string;
|
|
1402
1788
|
commentary: string;
|
|
1403
1789
|
commentary_other: string;
|
|
1404
1790
|
confirm: string;
|
|
1791
|
+
"contact-details": string;
|
|
1405
1792
|
"copy-to-clipboard": string;
|
|
1406
1793
|
"date-and-time": string;
|
|
1407
1794
|
edited: string;
|
|
@@ -1426,9 +1813,9 @@ declare const resources: {
|
|
|
1426
1813
|
"shared-argument": string;
|
|
1427
1814
|
"shared-reply": string;
|
|
1428
1815
|
user: {
|
|
1429
|
-
bio: string;
|
|
1430
1816
|
name: string;
|
|
1431
|
-
|
|
1817
|
+
email: string;
|
|
1818
|
+
"email-confirmation": string;
|
|
1432
1819
|
};
|
|
1433
1820
|
vote: string;
|
|
1434
1821
|
vote_other: string;
|
|
@@ -1513,6 +1900,21 @@ declare const resources: {
|
|
|
1513
1900
|
message: string;
|
|
1514
1901
|
title: string;
|
|
1515
1902
|
};
|
|
1903
|
+
"moderate-hint": {
|
|
1904
|
+
description: string;
|
|
1905
|
+
cta: string;
|
|
1906
|
+
};
|
|
1907
|
+
};
|
|
1908
|
+
attachments: {
|
|
1909
|
+
"image-status": {
|
|
1910
|
+
expired: string;
|
|
1911
|
+
pending: string;
|
|
1912
|
+
};
|
|
1913
|
+
"image-crop-hint": string;
|
|
1914
|
+
"image-invalid-aspect-ratio": string;
|
|
1915
|
+
"image-size-warning": string;
|
|
1916
|
+
"image-not-supported": string;
|
|
1917
|
+
"image-too-large": string;
|
|
1516
1918
|
};
|
|
1517
1919
|
"comment-as": string;
|
|
1518
1920
|
"commentary-actions": {
|
|
@@ -1536,6 +1938,8 @@ declare const resources: {
|
|
|
1536
1938
|
action: string;
|
|
1537
1939
|
title: string;
|
|
1538
1940
|
"justification-description": string;
|
|
1941
|
+
"contact-me-confirmation": string;
|
|
1942
|
+
"dsa-confirmation": string;
|
|
1539
1943
|
reasons: {
|
|
1540
1944
|
OTHER: string;
|
|
1541
1945
|
SPAM: string;
|
|
@@ -1552,6 +1956,97 @@ declare const resources: {
|
|
|
1552
1956
|
BEHAVIOUR: string;
|
|
1553
1957
|
};
|
|
1554
1958
|
submitted: string;
|
|
1959
|
+
dsa: {
|
|
1960
|
+
"select-main-category": string;
|
|
1961
|
+
"select-sub-category": string;
|
|
1962
|
+
"report-target-title": string;
|
|
1963
|
+
"report-target": {
|
|
1964
|
+
PERSON: string;
|
|
1965
|
+
INSTITUTION: string;
|
|
1966
|
+
TRUSTED_FLAGGER: string;
|
|
1967
|
+
};
|
|
1968
|
+
"main-category": {
|
|
1969
|
+
ANIMAL_WELFARE: string;
|
|
1970
|
+
CONSUMER_INFORMATION_VIOLATIONS: string;
|
|
1971
|
+
CYBER_VIOLENCE: string;
|
|
1972
|
+
CYBER_VIOLENCE_AGAINST_WOMEN: string;
|
|
1973
|
+
DATA_PROTECTION_AND_PRIVACY_VIOLATIONS: string;
|
|
1974
|
+
ILLEGAL_STATEMENTS_OR_HARMFUL_SPEECH: string;
|
|
1975
|
+
INTELLECTUAL_PROPERTY_VIOLATIONS: string;
|
|
1976
|
+
NEGATIVE_IMPACT_ON_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
1977
|
+
CHILD_AND_YOUTH_PROTECTION: string;
|
|
1978
|
+
THREAT_TO_PUBLIC_SAFETY: string;
|
|
1979
|
+
DECEPTION_AND_OR_FRAUD: string;
|
|
1980
|
+
SELF_HARM: string;
|
|
1981
|
+
UNSAFE_NONCOMPLIANT_OR_PROHIBITED_PRODUCTS: string;
|
|
1982
|
+
VIOLENCE: string;
|
|
1983
|
+
OTHER: string;
|
|
1984
|
+
};
|
|
1985
|
+
"sub-category": {
|
|
1986
|
+
ANIMAL_CRUELTY: string;
|
|
1987
|
+
ILLEGAL_SALE_OF_ANIMALS: string;
|
|
1988
|
+
HIDDEN_ADVERTISING_OR_COMMERCIAL_COMMUNICATION: string;
|
|
1989
|
+
INSUFFICIENT_INFORMATION_ABOUT_TRADERS: string;
|
|
1990
|
+
MISLEADING_INFORMATION_ABOUT_GOODS_AND_SERVICES: string;
|
|
1991
|
+
MISLEADING_INFORMATION_ABOUT_CONSUMER_RIGHTS: string;
|
|
1992
|
+
NON_COMPLIANCE_WITH_PRICING_REGULATIONS: string;
|
|
1993
|
+
ONLINE_BULLYING_AND_INTIMIDATION: string;
|
|
1994
|
+
CYBER_HARASSMENT: string;
|
|
1995
|
+
INCITEMENT_TO_VIOLENCE_OR_HATRED_ONLINE: string;
|
|
1996
|
+
CYBERSTALKING: string;
|
|
1997
|
+
NON_CONSENSUAL_SHARING_OF_INTIMATE_MATERIAL: string;
|
|
1998
|
+
NON_CONSENSUAL_SHARING_OF_DEEPFAKE_MATERIAL: string;
|
|
1999
|
+
ONLINE_BULLYING_AND_INTIMIDATION_OF_GIRLS: string;
|
|
2000
|
+
CYBERBULLYING_AGAINST_WOMEN: string;
|
|
2001
|
+
CYBERSTALKING_AGAINST_WOMEN: string;
|
|
2002
|
+
GENDER_SPECIFIC_DISINFORMATION: string;
|
|
2003
|
+
ILLEGAL_INCITEMENT_TO_VIOLENCE_AND_HATRED_AGAINST_WOMEN: string;
|
|
2004
|
+
NON_CONSENSUAL_SHARING_OF_INTIMATE_MATERIAL_AGAINST_WOMEN: string;
|
|
2005
|
+
NON_CONSENSUAL_SHARING_OF_DEEPFAKE_MATERIAL_AGAINST_WOMEN: string;
|
|
2006
|
+
BIOMETRIC_DATA_PROTECTION_VIOLATION: string;
|
|
2007
|
+
DATA_FALSIFICATION: string;
|
|
2008
|
+
MISSING_BASIS_FOR_DATA_PROCESSING: string;
|
|
2009
|
+
RIGHT_TO_BE_FORGOTTEN: string;
|
|
2010
|
+
DEFAMATION: string;
|
|
2011
|
+
DISCRIMINATION: string;
|
|
2012
|
+
ILLEGAL_INCITEMENT_TO_VIOLENCE_AND_HATRED_BASED_ON_PROTECTED_CHARACTERISTICS: string;
|
|
2013
|
+
COPYRIGHT_VIOLATIONS: string;
|
|
2014
|
+
DESIGN_RIGHTS_VIOLATIONS: string;
|
|
2015
|
+
GEOGRAPHICAL_INDICATIONS_VIOLATIONS: string;
|
|
2016
|
+
PATENT_VIOLATIONS: string;
|
|
2017
|
+
TRADE_SECRET_VIOLATIONS: string;
|
|
2018
|
+
TRADEMARK_VIOLATIONS: string;
|
|
2019
|
+
MISINFORMATION_DISINFORMATION_AND_FOREIGN_INFORMATION_MANIPULATION: string;
|
|
2020
|
+
VIOLATION_OF_EU_LAW_REGARDING_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
2021
|
+
VIOLATION_OF_NATIONAL_LAW_REGARDING_PUBLIC_DISCOURSE_OR_ELECTIONS: string;
|
|
2022
|
+
AGE_SPECIFIC_RESTRICTIONS_FOR_MINORS: string;
|
|
2023
|
+
DEPICTIONS_OF_CHILD_SEXUAL_ABUSE: string;
|
|
2024
|
+
DEPICTIONS_OF_CHILD_SEXUAL_ABUSE_DEEPFAKE: string;
|
|
2025
|
+
GROOMING_OF_MINORS: string;
|
|
2026
|
+
DANGEROUS_CHALLENGES: string;
|
|
2027
|
+
ILLEGAL_ORGANIZATIONS: string;
|
|
2028
|
+
RISK_OF_ENVIRONMENTAL_DAMAGE: string;
|
|
2029
|
+
RISK_TO_PUBLIC_HEALTH: string;
|
|
2030
|
+
TERRORIST_CONTENT: string;
|
|
2031
|
+
IDENTITY_FRAUD_OR_ACCOUNT_TAKEOVER: string;
|
|
2032
|
+
FAKE_ACCOUNTS: string;
|
|
2033
|
+
FAKE_LISTINGS: string;
|
|
2034
|
+
FAKE_USER_REVIEWS: string;
|
|
2035
|
+
PHISHING: string;
|
|
2036
|
+
PYRAMID_SCHEMES: string;
|
|
2037
|
+
CONTENT_PROMOTING_EATING_DISORDERS: string;
|
|
2038
|
+
SELF_MUTILATION: string;
|
|
2039
|
+
SUICIDE: string;
|
|
2040
|
+
PROHIBITED_OR_RESTRICTED_PRODUCTS: string;
|
|
2041
|
+
UNSAFE_OR_NONCOMPLIANT_PRODUCTS: string;
|
|
2042
|
+
INCITEMENT_TO_VIOLENCE: string;
|
|
2043
|
+
GENERAL_CALLS_OR_INCITEMENT_TO_VIOLENCE_AND_OR_HATRED: string;
|
|
2044
|
+
HUMAN_EXPLOITATION: string;
|
|
2045
|
+
HUMAN_TRAFFICKING: string;
|
|
2046
|
+
TRAFFICKING_OF_WOMEN_AND_GIRLS: string;
|
|
2047
|
+
OTHER: string;
|
|
2048
|
+
};
|
|
2049
|
+
};
|
|
1555
2050
|
};
|
|
1556
2051
|
reaction: {
|
|
1557
2052
|
REACTION1: string;
|
|
@@ -1619,6 +2114,7 @@ declare const resources: {
|
|
|
1619
2114
|
emojis: string;
|
|
1620
2115
|
italic: string;
|
|
1621
2116
|
underline: string;
|
|
2117
|
+
image: string;
|
|
1622
2118
|
};
|
|
1623
2119
|
"view-mode": string;
|
|
1624
2120
|
"view-modes": {
|
|
@@ -1685,6 +2181,9 @@ declare const resources: {
|
|
|
1685
2181
|
COMMENTARY_READ: {
|
|
1686
2182
|
"call-to-action": string;
|
|
1687
2183
|
};
|
|
2184
|
+
COMMENTARY_IMAGE_UPLOAD: {
|
|
2185
|
+
"call-to-action": string;
|
|
2186
|
+
};
|
|
1688
2187
|
INSTANT_CONTEXT: {
|
|
1689
2188
|
"call-to-action": string;
|
|
1690
2189
|
};
|
|
@@ -1713,6 +2212,15 @@ declare const resources: {
|
|
|
1713
2212
|
"call-to-action": string;
|
|
1714
2213
|
};
|
|
1715
2214
|
};
|
|
2215
|
+
readonly forms: {
|
|
2216
|
+
validation: {
|
|
2217
|
+
required: string;
|
|
2218
|
+
"email-invalid": string;
|
|
2219
|
+
"email-no-match": string;
|
|
2220
|
+
"min-length": string;
|
|
2221
|
+
"checkbox-required": string;
|
|
2222
|
+
};
|
|
2223
|
+
};
|
|
1716
2224
|
readonly interpolation: {
|
|
1717
2225
|
comment: string;
|
|
1718
2226
|
"comment-do": string;
|