@abyss-project/commons-front-core 1.0.36 → 1.0.38

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.
@@ -17,6 +17,7 @@ type Props = {
17
17
  handleUnStarProject: () => Promise<void>;
18
18
  user: IUser | null;
19
19
  classes: Record<string, string>;
20
+ actions?: React.ReactNode;
20
21
  };
21
22
  declare const _default: React.JSXElementConstructor<Omit<Props & {
22
23
  children?: React.ReactNode;
@@ -3,6 +3,210 @@ import { ReactNode } from 'react';
3
3
  import { UserLanguage } from '@abyss-project/main';
4
4
  export declare const translations: {
5
5
  fr: {
6
+ common: {
7
+ notifications: {
8
+ ABYSS: {
9
+ "user-credit-purchase": {
10
+ title: string;
11
+ content: string;
12
+ };
13
+ "user-ticket-response": {
14
+ title: string;
15
+ content: string;
16
+ };
17
+ "invite-user-project": {
18
+ title: string;
19
+ content: string;
20
+ };
21
+ "project-set-ownership": {
22
+ title: string;
23
+ content: string;
24
+ };
25
+ "user-subscription-no-funds-auto-renew-disabled": {
26
+ title: string;
27
+ content: string;
28
+ };
29
+ "user-subscription-auto-renew-disabled": {
30
+ title: string;
31
+ content: string;
32
+ };
33
+ "user-subscription-auto-renew-enabled": {
34
+ title: string;
35
+ content: string;
36
+ };
37
+ "user-subscription-expiration": {
38
+ title: string;
39
+ content: string;
40
+ };
41
+ "user-subscription-expiration-without-auto-renew": {
42
+ title: string;
43
+ content: string;
44
+ };
45
+ "user-subscription-renew-success": {
46
+ title: string;
47
+ content: string;
48
+ };
49
+ "user-subscription-auto-renew-success": {
50
+ title: string;
51
+ content: string;
52
+ };
53
+ "user-subscription-create": {
54
+ title: string;
55
+ content: string;
56
+ };
57
+ "user-subscription-create-without-auto-renew": {
58
+ title: string;
59
+ content: string;
60
+ };
61
+ "project-subscription-no-funds-auto-renew-disabled": {
62
+ title: string;
63
+ content: string;
64
+ };
65
+ "project-subscription-auto-renew-disabled": {
66
+ title: string;
67
+ content: string;
68
+ };
69
+ "project-subscription-auto-renew-enabled": {
70
+ title: string;
71
+ content: string;
72
+ };
73
+ "project-subscription-expiration": {
74
+ title: string;
75
+ content: string;
76
+ };
77
+ "project-subscription-expiration-without-auto-renew": {
78
+ title: string;
79
+ content: string;
80
+ };
81
+ "project-subscription-renew-success": {
82
+ title: string;
83
+ content: string;
84
+ };
85
+ "project-subscription-auto-renew-success": {
86
+ title: string;
87
+ content: string;
88
+ };
89
+ "project-subscription-create": {
90
+ title: string;
91
+ content: string;
92
+ };
93
+ "project-subscription-create-without-auto-renew": {
94
+ title: string;
95
+ content: string;
96
+ };
97
+ };
98
+ ABYSS_CLOUD: {
99
+ "create-cloud-share": {
100
+ title: string;
101
+ content: string;
102
+ };
103
+ "delete-cloud-share": {
104
+ title: string;
105
+ content: string;
106
+ };
107
+ "create-cloud": {
108
+ title: string;
109
+ content: string;
110
+ };
111
+ "delete-cloud": {
112
+ title: string;
113
+ content: string;
114
+ };
115
+ "admin-create-cloud": {
116
+ title: string;
117
+ content: string;
118
+ };
119
+ "admin-delete-cloud": {
120
+ title: string;
121
+ content: string;
122
+ };
123
+ "join-cloud-share": {
124
+ title: string;
125
+ content: string;
126
+ };
127
+ "decline-cloud-share": {
128
+ title: string;
129
+ content: string;
130
+ };
131
+ "leave-cloud-share": {
132
+ title: string;
133
+ content: string;
134
+ };
135
+ };
136
+ ABYSS_STORAGE: {
137
+ "webhook-undeliverable": {
138
+ title: string;
139
+ content: string;
140
+ };
141
+ "webhook-undeliverable-disable": {
142
+ title: string;
143
+ content: string;
144
+ };
145
+ };
146
+ ABYSS_MONITOR: {
147
+ "cron-task-failed": {
148
+ title: string;
149
+ content: string;
150
+ };
151
+ "cron-task-disabled": {
152
+ title: string;
153
+ content: string;
154
+ };
155
+ };
156
+ ABYSS_MEMORIES: {
157
+ "invite-event": {
158
+ title: string;
159
+ content: string;
160
+ };
161
+ "change-owner-event": {
162
+ title: string;
163
+ content: string;
164
+ };
165
+ "create-poll-event": {
166
+ title: string;
167
+ content: string;
168
+ };
169
+ };
170
+ ABYSS_BANKING: {
171
+ "bank-connection-success": {
172
+ title: string;
173
+ content: string;
174
+ };
175
+ "bank-connection-expire": {
176
+ title: string;
177
+ content: string;
178
+ };
179
+ };
180
+ ABYSS_SPOTLIGHT: {
181
+ "spotlight-project-new-post": {
182
+ title: string;
183
+ content: string;
184
+ };
185
+ };
186
+ ABYSS_FORM: {
187
+ "form-submission-completed": {
188
+ title: string;
189
+ content: string;
190
+ };
191
+ "form-webhook-undeliverable": {
192
+ title: string;
193
+ content: string;
194
+ };
195
+ "form-webhook-undeliverable-disable": {
196
+ title: string;
197
+ content: string;
198
+ };
199
+ "form-daily-submission-limit-reached": {
200
+ title: string;
201
+ content: string;
202
+ };
203
+ "form-submission-limit-reached": {
204
+ title: string;
205
+ content: string;
206
+ };
207
+ };
208
+ };
209
+ };
6
210
  general: {
7
211
  'unknown-error': string;
8
212
  'not-implemented-yet': string;
@@ -312,6 +516,210 @@ export declare const translations: {
312
516
  };
313
517
  };
314
518
  en: {
519
+ common: {
520
+ notifications: {
521
+ ABYSS: {
522
+ "user-credit-purchase": {
523
+ title: string;
524
+ content: string;
525
+ };
526
+ "user-ticket-response": {
527
+ title: string;
528
+ content: string;
529
+ };
530
+ "invite-user-project": {
531
+ title: string;
532
+ content: string;
533
+ };
534
+ "project-set-ownership": {
535
+ title: string;
536
+ content: string;
537
+ };
538
+ "user-subscription-no-funds-auto-renew-disabled": {
539
+ title: string;
540
+ content: string;
541
+ };
542
+ "user-subscription-auto-renew-disabled": {
543
+ title: string;
544
+ content: string;
545
+ };
546
+ "user-subscription-auto-renew-enabled": {
547
+ title: string;
548
+ content: string;
549
+ };
550
+ "user-subscription-expiration": {
551
+ title: string;
552
+ content: string;
553
+ };
554
+ "user-subscription-expiration-without-auto-renew": {
555
+ title: string;
556
+ content: string;
557
+ };
558
+ "user-subscription-renew-success": {
559
+ title: string;
560
+ content: string;
561
+ };
562
+ "user-subscription-auto-renew-success": {
563
+ title: string;
564
+ content: string;
565
+ };
566
+ "user-subscription-create": {
567
+ title: string;
568
+ content: string;
569
+ };
570
+ "user-subscription-create-without-auto-renew": {
571
+ title: string;
572
+ content: string;
573
+ };
574
+ "project-subscription-no-funds-auto-renew-disabled": {
575
+ title: string;
576
+ content: string;
577
+ };
578
+ "project-subscription-auto-renew-disabled": {
579
+ title: string;
580
+ content: string;
581
+ };
582
+ "project-subscription-auto-renew-enabled": {
583
+ title: string;
584
+ content: string;
585
+ };
586
+ "project-subscription-expiration": {
587
+ title: string;
588
+ content: string;
589
+ };
590
+ "project-subscription-expiration-without-auto-renew": {
591
+ title: string;
592
+ content: string;
593
+ };
594
+ "project-subscription-renew-success": {
595
+ title: string;
596
+ content: string;
597
+ };
598
+ "project-subscription-auto-renew-success": {
599
+ title: string;
600
+ content: string;
601
+ };
602
+ "project-subscription-create": {
603
+ title: string;
604
+ content: string;
605
+ };
606
+ "project-subscription-create-without-auto-renew": {
607
+ title: string;
608
+ content: string;
609
+ };
610
+ };
611
+ ABYSS_CLOUD: {
612
+ "create-cloud-share": {
613
+ title: string;
614
+ content: string;
615
+ };
616
+ "delete-cloud-share": {
617
+ title: string;
618
+ content: string;
619
+ };
620
+ "create-cloud": {
621
+ title: string;
622
+ content: string;
623
+ };
624
+ "delete-cloud": {
625
+ title: string;
626
+ content: string;
627
+ };
628
+ "admin-create-cloud": {
629
+ title: string;
630
+ content: string;
631
+ };
632
+ "admin-delete-cloud": {
633
+ title: string;
634
+ content: string;
635
+ };
636
+ "join-cloud-share": {
637
+ title: string;
638
+ content: string;
639
+ };
640
+ "decline-cloud-share": {
641
+ title: string;
642
+ content: string;
643
+ };
644
+ "leave-cloud-share": {
645
+ title: string;
646
+ content: string;
647
+ };
648
+ };
649
+ ABYSS_STORAGE: {
650
+ "webhook-undeliverable": {
651
+ title: string;
652
+ content: string;
653
+ };
654
+ "webhook-undeliverable-disable": {
655
+ title: string;
656
+ content: string;
657
+ };
658
+ };
659
+ ABYSS_MONITOR: {
660
+ "cron-task-failed": {
661
+ title: string;
662
+ content: string;
663
+ };
664
+ "cron-task-disabled": {
665
+ title: string;
666
+ content: string;
667
+ };
668
+ };
669
+ ABYSS_MEMORIES: {
670
+ "invite-event": {
671
+ title: string;
672
+ content: string;
673
+ };
674
+ "change-owner-event": {
675
+ title: string;
676
+ content: string;
677
+ };
678
+ "create-poll-event": {
679
+ title: string;
680
+ content: string;
681
+ };
682
+ };
683
+ ABYSS_BANKING: {
684
+ "bank-connection-success": {
685
+ title: string;
686
+ content: string;
687
+ };
688
+ "bank-connection-expire": {
689
+ title: string;
690
+ content: string;
691
+ };
692
+ };
693
+ ABYSS_SPOTLIGHT: {
694
+ "spotlight-project-new-post": {
695
+ title: string;
696
+ content: string;
697
+ };
698
+ };
699
+ ABYSS_FORM: {
700
+ "form-submission-completed": {
701
+ title: string;
702
+ content: string;
703
+ };
704
+ "form-webhook-undeliverable": {
705
+ title: string;
706
+ content: string;
707
+ };
708
+ "form-webhook-undeliverable-disable": {
709
+ title: string;
710
+ content: string;
711
+ };
712
+ "form-daily-submission-limit-reached": {
713
+ title: string;
714
+ content: string;
715
+ };
716
+ "form-submission-limit-reached": {
717
+ title: string;
718
+ content: string;
719
+ };
720
+ };
721
+ };
722
+ };
315
723
  general: {
316
724
  'unknown-error': string;
317
725
  'not-implemented-yet': string;