-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsubscriptions.ts
More file actions
998 lines (997 loc) · 36.5 KB
/
subscriptions.ts
File metadata and controls
998 lines (997 loc) · 36.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
type SubscriptionType =
| "regular"
| "dual-vaa"
| "dual-membership"
| "dual-goech"
| "associate";
type TContributionClassLocalization = {
locale: "de" | "en";
name: string;
description: string;
};
type TContributionClassOptionLocalization = {
locale: "de" | "en";
name: string;
description: string;
benefits?: { name: string; description: string }[];
};
type TContributionClassOption = {
type: SubscriptionType;
amount: number;
localization: TContributionClassOptionLocalization[];
firstYearFree?: boolean;
};
type TContributionClass = {
id: number;
localization: TContributionClassLocalization[];
options: TContributionClassOption[];
};
type TPartnerOrganizationLocalization = {
locale: string;
name: string;
};
type TPartnerOrganization = {
id: number;
localization: TPartnerOrganizationLocalization[];
};
type TSubscriptions = {
contributionClasses: TContributionClass[];
partnerOrganizations: TPartnerOrganization[];
};
export const subscriptions: TSubscriptions = {
contributionClasses: [
{
id: 1,
localization: [
{
locale: "de",
name: "Studentische Mitglieder",
description:
"<p>Der studentische Status kann bis zum Abschluss der Promotion jedoch maximal bis zur Vollendung des 31. Lebensjahres in Anspruch genommen werden. In begründeten Einzelfällen kann auf Antrag der Status über das 31. Lebensjahr hinaus gewährt werden. Der Status wird nur bis zum Eintritt in das Berufsleben bzw. bis zum Abschluss der Promotion gewährt. Ein berufsbegleitendes Studium bzw. ein zweites, berufsqualifizierendes Studium begründet nicht den Anspruch einer studentischen Mitgliedschaft. Dem Antrag auf studentische Mitgliedschaft ist der Studentenausweis beizufügen.</p>",
},
{
locale: "en",
name: "Student members",
description:
"<p>The student status can be utilised until the completion of the doctorate, but at most until the age of 31. In justified individual cases, status can be granted beyond the age of 31 upon application. The status is only granted until entry into professional life or until completion of the doctorate. Part-time studies or a second, professionally qualifying degree programme do not justify the entitlement to student membership. The student ID card must be enclosed with the application for student membership.</p>",
},
],
options: [
{
type: "regular",
amount: 30,
firstYearFree: true,
localization: [
{
locale: "de",
name: "Reguläre Mitgliedschaft",
description:
"<p>Sie genießen alle Vorzüge einer ordentlichen GDCh-Mitgliedschaft</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>Die Mitgliederzeitschrift der GDCh erscheint monatlich und informiert über aktuelle Entwicklungen in der Chemie und in der GDCh. Postalisch und online.</p>",
},
{
name: "GDCh-Veranstaltungen",
description:
"<p>Teilnahme an GDCh-Veranstaltungen zu vergünstigten Konditionen.</p>",
},
{
name: "GDCh-Netzwerk",
description:
"<p>Lernen Sie andere Chemie-Freunde kennen und tauschen Sie sich mit Experten aus.</p>",
},
],
},
{
locale: "en",
name: "Regular membership",
description:
"<p>You enjoy all the benefits of a full GDCh membership</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>The GDCh membership magazine appears monthly and informs about current developments in chemistry and in the GDCh. By post and online.</p>",
},
{
name: "GDCh events",
description:
"<p>Participation in GDCh events at reduced conditions.</p>",
},
{
name: "GDCh network",
description:
"<p>Get to know other chemistry friends and exchange ideas with experts.</p>",
},
],
},
],
},
{
type: "dual-vaa",
amount: 30,
firstYearFree: true,
localization: [
{
locale: "de",
name: "GDCh/VAA-Doppelmitgliedschaft",
description:
"<p>Die Option enthält automatisch die Mitgliedschaft im VAA. Der hier ausgewiesene Beitrag ist der GDCh-Anteil. Die Mitgliedschaft für Studierende ist im VAA kostenfrei.</p>",
benefits: [
{
name: "Zwei zum Preis von einem",
description:
"<p>Werden Sie zu attraktiven Konditionen Mitglied außerdem Mitglied im VAA – Fach- und Führungskräfte Chemie</p>",
},
{
name: "Alle Vorteile der regulären Mitgliedschaft",
description:
"<p>Profitieren Sie von den „Nachrichten aus der Chemie“, Veranstaltungen und unserem Netzwerk</p>",
},
],
},
{
locale: "en",
name: "GDCh/VAA dual membership",
description:
"<p>The option automatically includes membership in the VAA. The contribution shown here is the GDCh part. Membership for students is free of charge in the VAA.</p>",
benefits: [
{
name: "Two for the price of one",
description:
"<p>Join also the “VAA - Chemistry Managers” at attractive conditions</p>",
},
{
name: "All the benefits of regular membership",
description:
"<p>Benefit from the 'Nachrichten aus der Chemie', events and our network</p>",
},
],
},
],
},
],
},
{
id: 2,
localization: [
{
locale: "de",
name: "Ordentliches Mitglied",
description:
"<p>Ordentliche Mitglieder sind: In der Chemie und angrenzenden Gebieten Tätige sowie andere an den chemischen und molekularen Wissenschaften interessierte Personen des In- und Auslands.</p>",
},
{
locale: "en",
name: "Ordinary member",
description:
"<p>Ordinary members are: those working in chemistry and related areas as well as other people at home and abroad interested in chemical and molecular sciences.</p>",
},
],
options: [
{
type: "regular",
amount: 140,
localization: [
{
locale: "de",
name: "Reguläre Mitgliedschaft",
description:
"<p>Sie genießen alle Vorzüge einer ordentlichen GDCh-Mitgliedschaft</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>Die Mitgliederzeitschrift der GDCh erscheint monatlich und informiert über aktuelle Entwicklungen in der Chemie und in der GDCh. Postalisch und online.</p>",
},
{
name: "GDCh-Veranstaltungen",
description:
"<p>Teilnahme an GDCh-Veranstaltungen zu vergünstigten Konditionen.</p>",
},
{
name: "GDCh-Netzwerk",
description:
"<p>Lernen Sie andere Chemie-Freunde kennen und tauschen Sie sich mit Experten aus.</p>",
},
],
},
{
locale: "en",
name: "Regular membership",
description:
"<p>You enjoy all the benefits of a full GDCh membership</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>The GDCh membership magazine appears monthly and informs about current developments in chemistry and in the GDCh. By post and online.</p>",
},
{
name: "GDCh events",
description:
"<p>Participation in GDCh events at reduced conditions.</p>",
},
{
name: "GDCh network",
description:
"<p>Get to know other chemistry friends and exchange ideas with experts.</p>",
},
],
},
],
},
{
type: "dual-vaa",
amount: 100,
localization: [
{
locale: "de",
name: "GDCh/VAA-Doppelmitgliedschaft",
description:
"<p>Die Option enthält automatisch die Mitgliedschaft im VAA. Antrag nur möglich in den ersten 5 Jahren nach Eintritt in das Berufsleben. Der hier ausgewiesene Beitrag ist nur der GDCh-Anteil.</p>",
benefits: [
{
name: "Zwei zum Preis von einem",
description:
"<p>Werden Sie zu attraktiven Konditionen Mitglied außerdem Mitglied im VAA – Fach- und Führungskräfte Chemie</p>",
},
{
name: "Alle Vorteile der regulären Mitgliedschaft",
description:
"<p>Profitieren Sie von den „Nachrichten aus der Chemie“, Veranstaltungen und unserem Netzwerk</p>",
},
],
},
{
locale: "en",
name: "GDCh/VAA dual membership",
description:
"<p>The option automatically includes membership in the VAA. Application only possible in the first 5 years after starting working life. The contribution shown here is only the GDCh part.</p>",
benefits: [
{
name: "Two for the price of one",
description:
"<p>Join also the “VAA - Chemistry Managers” at attractive conditions</p>",
},
{
name: "All the benefits of regular membership",
description:
"<p>Benefit from the 'Nachrichten aus der Chemie', events and our network</p>",
},
],
},
],
},
{
type: "dual-membership",
amount: 110,
localization: [
{
locale: "de",
name: "Doppelmitgliedschaft",
description:
"<p>Diese Beitragskategorie gilt für Personen, die sowohl der Gesellschaft Deutscher Chemiker als auch einer Partnergesellschaft angehören.</p>",
benefits: [
{
name: "Gemeinsam mehr erreichen",
description:
"<p>Ihr Engagement in einer Partnergesellschaft der GDCh wird mit einem Preisvorteil belohnt.</p>",
},
{
name: "Alle Vorteile der regulären Mitgliedschaft",
description:
"<p>Profitieren Sie von den „Nachrichten aus der Chemie“, Veranstaltungen und unserem Netzwerk</p>",
},
],
},
{
locale: "en",
name: "Dual membership",
description:
"<p>This contribution category applies to persons who are members of both the German Chemical Society and a partner society.</p>",
benefits: [
{
name: "Achieve more together",
description:
"<p>Your commitment to a partner society of the GDCh is rewarded with a price advantage.</p>",
},
{
name: "All the benefits of regular membership",
description:
"<p>Benefit from the 'Nachrichten aus der Chemie', events and our network</p>",
},
],
},
],
},
{
type: "dual-goech",
amount: 70,
localization: [
{
locale: "de",
name: "Ordentliches Doppelmitglied GÖCH",
description:
"<p>Unser spezielles Angebot für Mitglieder der Österreichischen Chemischen Gesellschaft (GÖCH) mit Wohnsitz in Österreich. Beim ausgewiesenen Preis handelt es sich nur um den GDCh-Anteil.</p>",
benefits: [
{
name: "Bestes Angebot im deutschsprachigen Raum",
description:
"<p>Holen Sie das Optimum aus Ihrer Mitgliedschaft in der GÖCH heraus.</p>",
},
{
name: "Alle Vorteile der regulären Mitgliedschaft",
description:
"<p>Profitieren Sie von den „Nachrichten aus der Chemie“, Veranstaltungen und unserem Netzwerk</p>",
},
],
},
{
locale: "en",
name: "Ordinary double members GÖCH",
description:
"<p>Our special offer for members of the Austrian Chemical Society (GÖCH) residing in Austria. The price shown is only the GDCh part.</p>",
benefits: [
{
name: "Best offer in the German-speaking area",
description:
"<p>Get the most out of your membership in the GÖCH.</p>",
},
{
name: "All the benefits of regular membership",
description:
"<p>Benefit from the 'Nachrichten aus der Chemie', events and our network</p>",
},
],
},
],
},
],
},
{
id: 3,
localization: [
{
locale: "de",
name: "Mitglied im Ruhestand",
description:
"<p>Ab Vollendung des 58. Lebensjahres bei Vorruhestand</p>",
},
{
locale: "en",
name: "Retired member",
description:
"<p>From the age of 58 in the case of early retirement</p>",
},
],
options: [
{
type: "regular",
amount: 70,
localization: [
{
locale: "de",
name: "Reguläre Mitgliedschaft",
description:
"<p>Sie genießen alle Vorzüge einer ordentlichen GDCh-Mitgliedschaft</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>Die Mitgliederzeitschrift der GDCh erscheint monatlich und informiert über aktuelle Entwicklungen in der Chemie und in der GDCh. Postalisch und online.</p>",
},
{
name: "GDCh-Veranstaltungen",
description:
"<p>Teilnahme an GDCh-Veranstaltungen zu vergünstigten Konditionen.</p>",
},
{
name: "GDCh-Netzwerk",
description:
"<p>Lernen Sie andere Chemie-Freunde kennen und tauschen Sie sich mit Experten aus.</p>",
},
],
},
{
locale: "en",
name: "Regular membership",
description:
"<p>You enjoy all the benefits of a full GDCh membership</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>The GDCh membership magazine appears monthly and informs about current developments in chemistry and in the GDCh. By post and online.</p>",
},
{
name: "GDCh events",
description:
"<p>Participation in GDCh events at reduced conditions.</p>",
},
{
name: "GDCh network",
description:
"<p>Get to know other chemistry friends and exchange ideas with experts.</p>",
},
],
},
],
},
],
},
{
id: 4,
localization: [
{
locale: "de",
name: "Stellungslose ordentliche Mitglieder",
description:
"<p>(auf Antrag) Bitte eine Bescheinigung der Agentur für Arbeit beifügen.<br> Das erste Jahr der Stellungslosigkeit ist beitragsfrei.</p>",
},
{
locale: "en",
name: "Unemployed ordinary members",
description:
"<p>(upon application) Please enclose a certificate from the Employment Agency.<br> The first year of unemployment is free of contributions.</p>",
},
],
options: [
{
type: "regular",
amount: 30,
firstYearFree: true,
localization: [
{
locale: "de",
name: "Reguläre Mitgliedschaft",
description:
"<p>Sie genießen alle Vorzüge einer ordentlichen GDCh-Mitgliedschaft</p>",
benefits: [
{
name: "Karriereservice",
description:
"<p>Unser Karriereservice versorgt Sie mit Informationen zum Arbeitsmarkt, Stellenanzeigen und Gehaltsinformationen.</p>",
},
{
name: "GDCh-Netzwerk",
description:
"<p>Lernen Sie andere Chemie-Freunde kennen und tauschen Sie sich mit Experten aus.</p>",
},
],
},
{
locale: "en",
name: "Regular membership",
description:
"<p>You enjoy all the benefits of a full GDCh membership</p>",
benefits: [
{
name: "Career service",
description:
"<p>Our career service provides you with information on the job market, job advertisements and salary information.</p>",
},
{
name: "GDCh network",
description:
"<p>Get to know other chemistry friends and exchange ideas with experts.</p>",
},
],
},
],
},
],
},
{
id: 5,
localization: [
{
locale: "de",
name: "Jungmitglied",
description:
"<p>Als Jungmitglieder werden geführt: ordentliche GDCh-Mitglieder bis drei Jahre nach erfolgter Promotion bzw. bei nicht promovierten Kollegen/Kolleginnen bis drei Jahre nach Eintritt in das Berufsleben. Anträge auf Führung als Jungmitglied sind an die GDCh-Geschäftsstelle mit Angabe des Promotionsdatums bzw. des Beginns der Berufstätigkeit zu richten.</p>",
},
{
locale: "en",
name: "Young member",
description:
"<p>The following are listed as young members: full GDCh members up to three years after completing their doctorate or, for colleagues who do not have a doctorate, up to three years after entering professional life. Applications for leadership as a young member should be sent to the GDCh Office, stating the date of the doctorate or the start of professional activity.</p>",
},
],
options: [
{
type: "regular",
amount: 70,
localization: [
{
locale: "de",
name: "Reguläre Mitgliedschaft",
description:
"<p>Sie genießen alle Vorzüge einer ordentlichen GDCh-Mitgliedschaft</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>Die Mitgliederzeitschrift der GDCh erscheint monatlich und informiert über aktuelle Entwicklungen in der Chemie und in der GDCh. Postalisch und online.</p>",
},
{
name: "GDCh-Veranstaltungen",
description:
"<p>Teilnahme an GDCh-Veranstaltungen zu vergünstigten Konditionen.</p>",
},
{
name: "GDCh-Netzwerk",
description:
"<p>Lernen Sie andere Chemie-Freunde kennen und tauschen Sie sich mit Experten aus.</p>",
},
],
},
{
locale: "en",
name: "Regular membership",
description:
"<p>You enjoy all the benefits of a full GDCh membership</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>The GDCh membership magazine appears monthly and informs about current developments in chemistry and in the GDCh. By post and online.</p>",
},
{
name: "GDCh events",
description:
"<p>Participation in GDCh events at reduced conditions.</p>",
},
{
name: "GDCh network",
description:
"<p>Get to know other chemistry friends and exchange ideas with experts.</p>",
},
],
},
],
},
{
type: "dual-vaa",
amount: 50,
localization: [
{
locale: "de",
name: "GDCh/VAA-Doppelmitgliedschaft",
description:
"<p>Die Option enthält automatisch die Mitgliedschaft im VAA. Antrag nur möglich in den ersten 5 Jahren nach Eintritt in das Berufsleben. Der hier ausgewiesene Beitrag ist nur der GDCh-Anteil.</p>",
benefits: [
{
name: "Zwei zum Preis von einem",
description:
"<p>Werden Sie zu attraktiven Konditionen Mitglied außerdem Mitglied im VAA – Fach- und Führungskräfte Chemie</p>",
},
{
name: "Alle Vorteile der regulären Mitgliedschaft",
description:
"<p>Profitieren Sie von den „Nachrichten aus der Chemie“, Veranstaltungen und unserem Netzwerk</p>",
},
],
},
{
locale: "en",
name: "GDCh/VAA dual membership",
description:
"<p>The option automatically includes membership in the VAA. Application only possible in the first 5 years after starting working life. The contribution shown here is only the GDCh part.</p>",
benefits: [
{
name: "Two for the price of one",
description:
"<p>Join also the “VAA - Chemistry Managers” at attractive conditions</p>",
},
{
name: "All the benefits of regular membership",
description:
"<p>Benefit from the 'Nachrichten aus der Chemie', events and our network</p>",
},
],
},
],
},
],
},
{
id: 6,
localization: [
{
locale: "de",
name: "Mitglieder in der Ausbildung",
description:
"<p>Dieser Status gilt für andere an den chemischen und molekularen Wissenschaften interessierten Personen, die sich in beruflicher oder schulischer Ausbildung befinden, d.h. nicht als Student an einer Hochschule eingeschrieben sind. Dem Antrag ist ein Ausbildungsnachweis beizufügen.</p>",
},
{
locale: "en",
name: "Members in Training",
description:
"<p>This status applies to other persons interested in the chemical and molecular sciences who are in professional or academic training, ie not enrolled as a student in a university. Proof of education must be attached to the application.</p>",
},
],
options: [
{
type: "regular",
amount: 30,
firstYearFree: true,
localization: [
{
locale: "de",
name: "Reguläre Mitgliedschaft",
description:
"<p>Sie genießen alle Vorzüge einer ordentlichen GDCh-Mitgliedschaft</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>Die Mitgliederzeitschrift der GDCh erscheint monatlich und informiert über aktuelle Entwicklungen in der Chemie und in der GDCh. Postalisch und online.</p>",
},
{
name: "GDCh-Veranstaltungen",
description:
"<p>Teilnahme an GDCh-Veranstaltungen zu vergünstigten Konditionen.</p>",
},
{
name: "GDCh-Netzwerk",
description:
"<p>Lernen Sie andere Chemie-Freunde kennen und tauschen Sie sich mit Experten aus.</p>",
},
],
},
{
locale: "en",
name: "Regular membership",
description:
"<p>You enjoy all the benefits of a full GDCh membership</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>The GDCh membership magazine appears monthly and informs about current developments in chemistry and in the GDCh. By post and online.</p>",
},
{
name: "GDCh events",
description:
"<p>Participation in GDCh events at reduced conditions.</p>",
},
{
name: "GDCh network",
description:
"<p>Get to know other chemistry friends and exchange ideas with experts.</p>",
},
],
},
],
},
],
},
{
id: 7,
localization: [
{
locale: "de",
name: "Assoziierte Mitglieder",
description:
"<p>Personen des In- und Auslands, deren Ausbildung nicht aus dem Bereich der Chemie und angrenzender Gebiete stammt und/oder die keine Tätigkeit in diesem Bereich ausüben und die nur an der Mitarbeit in einer der Fachgruppen und/oder der Sektionen der Gesellschaft interessiert sind.</p>",
},
{
locale: "en",
name: "Associate Members",
description:
"<p>People from Germany and abroad whose training does not come from the field of chemistry and related areas and/or who do not work in this field and who are only interested in working in one of the Divisions and/or the sections of society are interested.</p>",
},
],
options: [
{
type: "associate",
amount: 40,
localization: [
{
locale: "de",
name: "Assoziierte Mitgliedschaft",
description: "",
benefits: [
{
name: "Fachgruppe",
description:
"<p>Erhalten Sie vollen Zugriff auf das Leistungsspektrum einer Fachgruppe.</p>",
},
{
name: "Online-Zugang",
description:
"<p>Online-Zugang zu den Nachrichten aus der Chemie und weiteren GDCh-Publikationen.</p>",
},
{
name: "GDCh-Netzwerk",
description:
"<p>Lernen Sie andere Chemie-Freunde kennen und tauschen Sie sich mit Experten aus.</p>",
},
],
},
{
locale: "en",
name: "Associate membership",
description: "",
benefits: [
{
name: "Division",
description:
"<p>Get full access to the range of services of a division.</p>",
},
{
name: "Online access",
description:
"<p>Online access to the “Nachrichten aus der Chemie” and other GDCh publications.</p>",
},
{
name: "GDCh network",
description:
"<p>Get to know other chemistry friends and exchange ideas with experts.</p>",
},
],
},
],
},
],
},
{
id: 8,
localization: [
{
locale: "de",
name: "Mitglied International",
description:
"<p>Personen, die im Ausland leben und bis dato nur Mitglied in einer anderen chemischen Fachgesellschaft im Ausland sind, zu der die GDCh freundschaftliche Beziehungen pflegt, können auf Antrag den Status eines Mitglieds International erwerben. Gleiches gilt für ausländische Personen, die im Rahmen einer Arbeitnehmerentsendung vorübergehend in Deutschland leben.</p>",
},
{
locale: "en",
name: "Member International",
description:
"<p>People who live abroad and are currently only members of another chemical society abroad with which the GDCh maintains friendly relations can apply to acquire the status of an international member. The same applies to foreign nationals who are temporarily living in Germany as part of a secondment.</p>",
},
],
options: [
{
type: "regular",
amount: 90,
localization: [
{
locale: "de",
name: "Reguläre Mitgliedschaft",
description:
"<p>Sie genießen alle Vorzüge einer ordentlichen GDCh-Mitgliedschaft</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>Die Mitgliederzeitschrift der GDCh erscheint monatlich und informiert über aktuelle Entwicklungen in der Chemie und in der GDCh. Postalisch und online.</p>",
},
{
name: "GDCh-Veranstaltungen",
description:
"<p>Teilnahme an GDCh-Veranstaltungen zu vergünstigten Konditionen.</p>",
},
{
name: "GDCh-Netzwerk",
description:
"<p>Lernen Sie andere Chemie-Freunde kennen und tauschen Sie sich mit Experten aus.</p>",
},
],
},
{
locale: "en",
name: "Regular membership",
description:
"<p>You enjoy all the benefits of a full GDCh membership</p>",
benefits: [
{
name: "Nachrichten aus der Chemie",
description:
"<p>The GDCh membership magazine appears monthly and informs about current developments in chemistry and in the GDCh. By post and online.</p>",
},
{
name: "GDCh events",
description:
"<p>Participation in GDCh events at reduced conditions.</p>",
},
{
name: "GDCh network",
description:
"<p>Get to know other chemistry friends and exchange ideas with experts.</p>",
},
],
},
],
},
],
},
],
partnerOrganizations: [
{
id: 1,
localization: [
{
locale: "de",
name: "Deutsche Bunsen-Gesellschaft für Physikalische Chemie e.V. (DBG)",
},
{
locale: "en",
name: "German Bunsen Society for Physical Chemistry e.V. (DBG)",
},
],
},
{
id: 2,
localization: [
{
locale: "de",
name: "Gesellschaft für Chemische Technik und Biotechnologie e.V. (DECHEMA)",
},
{
locale: "en",
name: "Society for Chemical Engineering and Biotechnology e.V. (DECHEMA)",
},
],
},
{
id: 3,
localization: [
{
locale: "de",
name: "Deutsche Gesellschaft für Galvano- und Oberflächentechnik e.V. (DGO)",
},
{
locale: "en",
name: "German Society for Electroplating and Surface Technology e.V. (DGO)",
},
],
},
{
id: 4,
localization: [
{
locale: "de",
name: "Gesellschaft für Toxikologische und Forensische Chemie (GTFCh)",
},
{
locale: "en",
name: "Society for Toxicological and Forensic Chemistry (GTFCh)",
},
],
},
{
id: 5,
localization: [
{
locale: "de",
name: "Deutsche Glastechnische Gesellschaft e.V. (DGG)",
},
{ locale: "en", name: "German Glass Technology Society e.V. (DGG)" },
],
},
{
id: 6,
localization: [
{
locale: "de",
name: "Deutsche Physikalische Gesellschaft e.V. (DPG)",
},
{ locale: "en", name: "German Physical Society e.V. (DPG)" },
],
},
{
id: 7,
localization: [
{ locale: "de", name: "Kerntechnische Gesellschaft e.V. (KTG)" },
{ locale: "en", name: "Nuclear Technology Society e.V. (KTG)" },
],
},
{
id: 8,
localization: [
{
locale: "de",
name: "Deutsche Vereinigung des Gas- und Wasserfaches e.V. (DVGW)",
},
{ locale: "en", name: "German Gas and Water Association (DVGW)" },
],
},
{
id: 9,
localization: [
{ locale: "de", name: "Stahlinstitut (VDEh)" },
{ locale: "en", name: "Steel Institute (VDEh)" },
],
},
{
id: 10,
localization: [
{
locale: "de",
name: "Deutsche Vereinigung für Wasserwirtschaft, Abwasser und Abfall (DWA) e.V.",
},
{
locale: "en",
name: "German Association for Water Management, Sewage and Waste (DWA) e.V.",
},
],
},
{
id: 11,
localization: [
{
locale: "de",
name: "Verband der Elektrotechnik, Elektronik und Informationstechnik e.V. (VDE)",
},
{
locale: "en",
name: "Association of Electrical Engineering, Electronics and Information Technology (VDE)",
},
],
},
{
id: 12,
localization: [
{
locale: "de",
name: "Deutsche Wissenschaftliche Gesellschaft für nachhaltige Energieträger, Mobilität und Kohlenstoffkreisläufe e.V. (DGMK)",
},
{
locale: "en",
name: "German Scientific Society for Sustainable Energy Sources, Mobility and Carbon Cycles (DGMK)",
},
],
},
{
id: 13,
localization: [
{
locale: "de",
name: "Verein Deutscher Gießereifachleute e.V. (VDG)",
},
{
locale: "en",
name: "Association of German Foundry Specialists (VDG)",
},
],
},
{
id: 14,
localization: [
{
locale: "de",
name: "Gesellschaft für Metallurgen und Bergleute e.V. (GDMB)",
},
{
locale: "en",
name: "Society for Metallurgists and Miners (GDMB)",
},
],
},
{
id: 15,
localization: [
{ locale: "de", name: "Verein Deutscher Ingenieure (VDI)" },
{ locale: "en", name: "Association of German Engineers (VDI)" },
],
},
{
id: 16,
localization: [
{
locale: "de",
name: "Gesellschaft für Biochemie und Molekularbiologie (GBM)",
},
{
locale: "en",
name: "Society for Biochemistry and Molecular Biology (GBM)",
},
],
},
],
};