forked from OpenStackweb/summit-admin
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathen.json
More file actions
4425 lines (4425 loc) · 180 KB
/
Copy pathen.json
File metadata and controls
4425 lines (4425 loc) · 180 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
999
1000
{
"errors": {
"user_not_authz": "Hold on. Your user is not authorized!.",
"user_not_set": "Hold on. Can not get any valid user.",
"session_expired": "Hold on. Your session expired!.",
"empty_list": "there not are any {item} that match your criteria.",
"server_error": "There was a problem with our server, please contact admin.",
"empty_list_schedule_events": "Please select a Day and a Location ...",
"not_allowed": "You are not allowed here, please login with another user to access this page.",
"not_found": "Not Found!",
"entity_not_found": "The entity you are looking for was not found.",
"maximum_files": "Maximum number of files has been reached",
"payment_profile_not_found_title": "Payment Profile not found",
"payment_profile_not_found": "Missing payment profile for summit {{summitName}}. Please contact support.",
"invoice_generation": "Invoice could not be generated. Please contact support."
},
"general": {
"summit": "Event",
"select_summit": "Select an Event...",
"speakers": "Speakers",
"speaker": "Speaker",
"attendees": "Attendees",
"attendee": "Attendee",
"summit_event": "Event",
"presentation": "Presentation",
"presentations": "Presentations",
"email": "Email",
"name": "Name",
"description": "Description",
"file": "File",
"logo": "Logo",
"secondary_logo": "Secondary Logo",
"full_name": "Full Name",
"first_name": "First Name",
"last_name": "Last Name",
"member": "Member",
"members": "Members",
"event": "Activity",
"activities": "Activities",
"group": "Group",
"yes": "Yes",
"no": "No",
"edit": "Edit",
"add": "Add",
"clear": "Clear",
"scan": "Scan",
"remove": "Remove",
"row_remove_warning": "Are you sure you want to delete row ",
"delete": "Delete",
"clone": "Clone",
"new": "New",
"all": "All",
"new_summit": "New Event",
"drop_files": "Drop images or click to select files to upload.",
"search": "Search",
"save": "Save",
"confirm": "Confirm",
"cancel": "Cancel",
"undo": "Undo",
"return": "Return",
"ingest": "Ingest",
"save_and_publish": "Save & Publish",
"save_and_add_next": "Save & Add Next",
"export": "Export",
"download_invoice": "Download Invoice",
"are_you_sure": "Are you sure?",
"yes_delete": "Yes, delete.",
"yes_remove": "Yes, remove.",
"yes_send": "Yes, send.",
"yes_add": "Yes, add.",
"id": "Id",
"label": "Label",
"value": "Value",
"values": "Values",
"type": "Type",
"attention": "Attention!",
"done": "Done!",
"email_sent": "Email sent successfully.",
"drag_and_drop": "Drag and Drop to sort items.",
"remove_warning": "Are you sure you want to delete this?",
"edit_selected": "Edit Selected",
"copy_to_clipboard": "Copy to clipboard",
"copied": "Copied!",
"success": "Success!",
"error": "Error!",
"unarchive": "Unarchive",
"archive": "Archive",
"items": "items",
"sort_by": "Sort By",
"sort_asc_label": "A-Z",
"sort_desc_label": "Z-A",
"n_a": "N/A",
"to": "To",
"from": "From",
"placeholders": {
"search": "Search...",
"search_speakers": "Search Speakers by Name, Email, Speaker Id or Member Id",
"select_acceptance_criteria": "Select acceptance criteria",
"select_invitation_status": "Select status"
}
},
"validation": {
"required": "This field is required.",
"file_required": "File is required",
"string": "Must be a string.",
"number": "Must be a number.",
"non_negative": "Must be a non-negative number.",
"integer": "Must be a integer",
"positive": "Must be a positive number.",
"one_option_required": "Must have one option",
"two_decimals": "Max 2 decimal places",
"max_decimals": "Max {count} decimal places",
"email": "Wrong email format.",
"url": "Wrong URL format",
"date": "Wrong date format.",
"after": "'{field1}' must be after '{field2}'.",
"boolean": "Must be a boolean.",
"mib_aligned": "Must be a MiB aligned value",
"minimum": "Must be at least {minimum}",
"maximum": "Must be at most {maximum}",
"time": "Wrong time format.",
"wrong_format": "Wrong format.",
"add_on_required": "Select at least one add-on",
"additional_items": "Unable to save due to missing required additional info — click the ⚙ icon to review",
"extra_question_value": "This question type requires at least one value."
},
"price_tiers": {
"early_bird_rate": "Early Bird Rate",
"standard_rate": "Standard Rate",
"onsite_rate": "Onsite Rate",
"not_available": "N/A"
},
"landing": {
"os_summit_admin": "Show Admin",
"sign_out": "Sign out",
"log_in": "Log in",
"not_logged_in": "You are not logged in. Please log in to continue:"
},
"menu": {
"general": "General",
"directory": "Directory",
"dashboard": "Dashboard",
"selection_plans": "Selection Plans",
"events": "Activities",
"event_list": "All Activities",
"voteable_presentations": "Voteable Presentations",
"schedule": "Schedule",
"new_event": "New Activity",
"speakers": "Speakers",
"speaker_list": "All Speakers",
"summit_speakers": "Show Speakers",
"speaker_attendance": "Speaker Attendance",
"featured_speakers": "Featured Speakers",
"merge_speakers": "Merge",
"companies": "Companies",
"sponsorship_types": "Tiers",
"tags": "Tags",
"attendees": "Attendees",
"attendee-list": "Attendee List",
"badge_checkin": "Check In",
"promocodes": "Promo Codes",
"promocode_list": "Promo Codes",
"event_types": "Activity Types",
"event_categories": "Activity Categories",
"event_category_groups": "Activity Category Groups",
"signage": "Signage",
"locations": "Locations",
"rsvps": "RSVPs",
"rsvp_template_list": "Templates",
"tickets": "Tickets",
"ticket_type_list": "Ticket Types",
"badges": "Badges",
"badge_feature_list": "Badge Features",
"access_level_list": "Access Levels",
"view_type_list": "View Types",
"badge_type_list": "Badge Types",
"badge_settings": "Badge Settings",
"taxes": "Taxes",
"tax_type_list": "Tax Types",
"refund_policy_list": "Automatic Refund Polices",
"push_notifications": "Push Notifications",
"room_occupancy": "Room Occupancy",
"tag_groups": "Tag Groups",
"reports": "Reports",
"room_bookings": "Room Bookings",
"purchase_orders": "Purchase Orders",
"purchase_order_list": "Order List",
"ticket_list": "Ticket List",
"order_extra_questions": "Extra Questions",
"sponsors": "Sponsors",
"sponsor_list": "Sponsor List",
"sponsor_forms": "Forms",
"sponsor_pages": "Pages",
"sponsor_purchases": "Purchases",
"sponsor_reports": "Reports",
"sponsorship_list": "Tiers",
"sponsor_users": "Users",
"sponsors_promocodes": "Promo Codes",
"sponsor_settings": "Settings",
"badge_scans": "Badge Scans",
"marketing": "Marketing",
"payment_profiles_list": "Payment Profiles",
"emails": "Emails",
"email_templates": "Templates",
"sent_email": "Sent Emails",
"email_logs": "Logs",
"summitdocs": "Event Docs",
"email_flow_events": "Email Events",
"email_flow_overrides": "Overrides",
"email_flow_settings": "Settings",
"admin_access": "Admin Access Groups",
"registration_invitation_list": "Registration Invitations",
"registration_companies_list": "Registration Companies",
"media_file_types": "Media File Types",
"media_uploads": "Media Upload Types",
"track_chairs": "Track Chairs",
"track_chair_list": "Track Chair List",
"track_timeframes": "Track Timeframes",
"track_chair_team_lists": "Team Lists",
"progress_flags": "Progress Flags",
"sponsored_projects": "Sponsored Projects",
"settings": "Settings",
"schedule_settings": "Schedule",
"registration_stats": "Registration Stats",
"audit_log": "Audit Log",
"submission_invitations": "Submission Invitations",
"sponsors_inventory": "Sponsors",
"form_templates": "Form Templates",
"inventory": "Inventory",
"page_templates": "Pages",
"add_on_types": "Add-On Types"
},
"schedule": {
"schedule": "Schedule",
"find_empty_spots": "Find empty spots for Day/Location",
"no_empty_spots": "No empty spots found",
"apply_duration": "Apply duration",
"duration": "Duration (minutes)",
"placeholders": {
"select_presentation_selection_status": "Select a Selection Status ...",
"select_presentation_selection_plan": "Select a Selection Plan ...",
"search_unpublished": "Search for UnPublished Activities ...",
"search_published": "Search for Published Activities ...",
"select_order_by": "Select Order By ...",
"select_day": "Select an Activity Day ...",
"select_venue": "Select a Venue ...",
"select_event_type": "Select an Activity Type ...",
"select_track": "Select an Activity Category ...",
"selected_filters": "Enabled Filters",
"selected_source": "Select Source"
}
},
"bulk_actions_page": {
"bulk_actions": "Bulk Actions",
"title": "Activity Bulk Actions",
"event_id_label": "Id",
"event_name_label": "Title",
"event_selection_plan_label": "Selection Plan",
"event_location_label": "Location",
"event_start_date_label": "Start Date",
"event_end_date_label": "End Date",
"event_activity_type_label": "Activity Type",
"event_activity_category_label": "Activity Category",
"event_duration_label": "Duration",
"event_streaming_url_label": "Streaming URL",
"event_streaming_type_label": "Streaming Type",
"event_stream_is_secure_label": "Stream Is Secure",
"event_meeting_url_label": "Meeting URL",
"event_etherpad_link_label": "Etherpad URL",
"btn_apply_changes": "Apply Changes",
"btn_apply_publish_changes": "Apply And Publish Changes",
"messages": {
"update_success": "Activities saved successfully.",
"update_publish_success": "Activities saved and published successfully.",
"validation_title": "Validation Errors",
"validation_message": "Please check data on {event} {event_id}"
},
"placeholders": {
"event_title": "Enter Activity title",
"start_date": "Enter start date",
"end_date": "Enter end date",
"event_type": "Select an Activity Type",
"track": "Select an Activity Category",
"duration": "Enter Duration",
"streaming_url": "Enter Streaming URL",
"streaming_type": "Select a Streaming Type",
"stream_is_secure": "Select Stream is Secure",
"meeting_url": "Enter Meeting URL",
"etherpad_link": "Enter Etherpad URL"
},
"titles": {
"view_event": "View Activity"
}
},
"published_bulk_actions_selector": {
"options": {
"default": "--SELECT A BULK ACTION--",
"edit": "Edit",
"unpublish": "Unpublish"
},
"buttons": {
"go": "GO"
},
"titles": {
"go": "Apply Bulk Action"
}
},
"directory": {
"select": "Select",
"summits": "Shows",
"add_summit": "Add Show",
"remove_warning": "Are you sure you want to delete event",
"invitation_only": "Invitation Only",
"id": "ID",
"summit_name": "Event Name",
"sponsors": "Sponsors",
"forms": "Forms",
"attachments": "Attachments",
"hide_past_events": "Hide past events",
"start_date": "Start Date",
"end_date": "End Date",
"placeholders": {
"search": "Search..."
}
},
"dashboard": {
"dashboard": "Dashboard",
"dates": "Dates & Times",
"submission": "Submission",
"voting": "Voting",
"emails": "Emails",
"selection": "Selection",
"attendees": "Attendees",
"registration": "Registration",
"events": "Activities",
"submitted_events": "Submitted Activities",
"published_events": "Published Activities",
"venues": "Venues",
"voters": "Voters",
"votes": "Votes",
"accepted": "Accepted",
"rejected": "Rejected",
"alternate": "Alternate",
"accepted_alternate": "Accepted Alternate",
"accepted_rejected": "Accepted Rejected",
"alternate_rejected": "Alternate Rejected",
"registration_stats": "Registration Statistics",
"total_tickets": "Tickets",
"active_tickets": "Active",
"inactive_tickets": "Inactive",
"attendees_checked_in": "Checked In",
"attendees_non_checked_in": "Not Checked In",
"attendees_checked_in_virtual": "Virtual Checked In",
"orders": "Orders",
"payment_amount_collected": "Amount Collected",
"payment_net_amount_collected": "Net Amount Collected",
"refund_amount_emitted": "Amount Refund",
"ticket_types": "Active Tickets per Ticket Types",
"badge_types": "Active Tickets per Badge Types",
"general_dates": "General Dates",
"ordering": "Ordering",
"important_documents": "Important Documents",
"sponsor_levels": "Sponsor Levels",
"pages": "Pages",
"tab_badge_types": "Badge Types",
"media_uploads": "Media Uploads",
"booth_layout_types": "Booth Layout Types",
"expand": "Expand section",
"collapse": "Collapse section",
"badge_features_tickets": "Active Tickets per Badge Features",
"badge_features_checkins": "Check Ins per Badge Features",
"in_person_attendees": "In Person Attendees",
"virtual_attendees": "Virtual Attendees"
},
"edit_summit": {
"name": "Name",
"external_summit_id": "External Id",
"max_submission_allowed_per_user": "Max. Submissions per User",
"slug": "Slug",
"registration_slug": "Registration Slug",
"sample_order_qr_prefix": "Sample Order Number",
"sample_ticket_qr_prefix": "Sample Ticket Number",
"link": "Event Page Link",
"registration_link": "Registration Link",
"registration_disclaimer_content": "Disclaimer",
"registration_disclaimer_mandatory": "Disclaimer Mandatory",
"secondary_registration_link": "Sec. Registration Link",
"registration_reminder_email_days_interval": "Day interval to send reminder reg emails",
"speaker_confirmation_default_page_url": "Speaker Confirmation Default Page",
"speaker_confirmation_default_page_url_info": "This url will be used for speaker submission emails, and will populate template email variable \"speaker_confirmation_link\". Url should point to a valid SummitConfirmSpeakerPage.",
"dates_label": "Date Label",
"secondary_registration_label": "Sec. Registration Label",
"active": "This is the active event?",
"available_on_api": "Is this Event available through API? (If True this Event will be available to Mobile Apps)",
"dates": "Dates",
"time_zone": "Time Zone",
"time_zone_label": "Time Zone Label",
"start_date": "Event Start",
"end_date": "Event End",
"reassign_ticket_till_date": "Reassign Ticket Limit Date",
"registration_begin_date": "Registration Start",
"registration_end_date": "Registration End",
"schedule_start_date": "Default date to show on schedule page?",
"start_showing_venues_date": "When do you begin showing venues?",
"calendar_sync": "Calendar Sync",
"calendar_sync_name": "Calendar Sync Name",
"calendar_sync_desc": "Calendar Sync Description",
"summit_saved": "Event saved successfully.",
"summit_created": "Event created successfully.",
"enabled": "Enabled",
"add_splan": "Add Selection Plan",
"remove_sp_warning": "Are you sure you want to delete selection plan ",
"remove_reg_feed_metadata_warning": "Are you sure you want to delete registration feed metadata ",
"api_feed_type": "Schedule API Feed Type",
"api_feed_url": "Schedule API Feed URL",
"api_feed_key": "Schedule Feed API key",
"room-booking": "Room Booking",
"booking_begin_date": "Open Booking Date",
"booking_end_date": "Close Booking Date",
"external_registration_feed_type": "Registration Feed Type",
"external_registration_feed_api_key": "Registration Feed API key",
"external_registration_id": "Registration External Id",
"mux_token_id": "MUX Token ID",
"mux_token_secret": "MUX Token Secret",
"third_party": "Third Party Settings",
"virtual_event": "Event Site Settings including Virtual",
"virtual_event_note": "Note: Do not include a slash at the end of the URL.",
"virtual_site_url": "Virtual Event Site URL",
"marketing_site_url": "Marketing Site URL",
"marketing_site_oauth2_client_id": "Marketing Site OAUTH2 Client ID",
"marketing_site_oauth2_client_scopes": "Marketing Site OAUTH2 Client Scopes",
"virtual_site_oauth2_client_id": "Virtual Event Site OAUTH2 Client ID",
"support_email": "Support Email",
"speakers_support_email": "Speakers Support Email",
"help_users": "Help Users",
"help_users_info": "Users designated as Help Users on A2A Widget ( Chat ).",
"reg_email_settings": "Registration Settings",
"registration_send_qr_as_image_attachment_on_ticket_email": "Send QR as Attachment (Image) on ticket Email",
"registration_send_ticket_as_pdf_attachment_on_ticket_email": "Send Ticket as Attachment (PDF) on ticket Email",
"registration_send_ticket_email_automatically": "Send Ticket Email Automatically?",
"registration_allow_automatic_reminder_emails": "Allow Automatic Reminder Emails (Incomplete Order/Tickets)?",
"registration_send_order_email_automatically": "Send Order Confirmation Email Automatically?",
"allow_update_attendee_extra_questions": "Allow Attendee to update extra questions?",
"registration_allowed_refund_request_till_date": "Allow Refund Request Until",
"registration_encryption_key": "Encryption Key",
"generate_encryption_key": "Generate Key",
"reg_lite_allow_promo_codes": "Allow Promo Codes on Registration Lite ?",
"reg_lite_show_company_input_default_options": "Show user Company Input Default Options?",
"reg_lite_show_company_input": "Show user company input during registration?",
"reg_lite_company_ddl_placeholder": "Company Dropdown Placeholder",
"reg_lite_company_ddl_placeholder_info": "This placeholder will be used for the company dropdown field on the registration lite.",
"reg_lite_initial_order_complete_step_1st_paragraph": "Initial Order Complete 1st Paragraph",
"reg_lite_initial_order_complete_step_1st_paragraph_info": "1st Paragraph shown on Order Complete Step When is the first order of the Buyer.",
"reg_lite_initial_order_complete_step_2nd_paragraph": "Initial Order Complete 2nd Paragraph",
"reg_lite_initial_order_complete_step_2nd_paragraph_info": "2nd Paragraph shown on Order Complete Step When is the first order of the Buyer.",
"reg_lite_initial_order_complete_btn_label": "Initial Order Complete Button",
"reg_lite_initial_order_complete_btn_label_info": "Order Complete Button Text shown on Order Complete Step When is the first order of the Buyer.",
"reg_lite_order_complete_title": "Order Complete Title",
"reg_lite_order_complete_step_1st_paragraph": "Order Complete 1st Paragraph",
"reg_lite_order_complete_step_1st_paragraph_info": "1st Paragraph shown on Order Complete Step When is not the first order of the Buyer.",
"reg_lite_order_complete_step_2nd_paragraph": "Order Complete 2nd Paragraph",
"reg_lite_order_complete_step_2nd_paragraph_info": "2nd Paragraph shown on Order Complete Step When is not the first order of the Buyer.",
"reg_lite_order_complete_btn_label": "Order Complete Button",
"reg_lite_order_complete_btn_label_info": "Order Complete Button Text shown on Order Complete Step When is not the first order of the Buyer.",
"reg_lite_no_allowed_tickets_message": "No Allowed Tickets Message",
"reg_lite_no_allowed_tickets_message_info": "This message is shown when there are no available tickets to buy",
"print_app_hide_find_ticket_by_fullname": "Hide Find By FullName Criteria",
"print_app_hide_find_ticket_by_email": "Hide Find By Email Criteria",
"reg_lite_settings": "Registration Lite Settings",
"check_in_settings": "Print/Check In App Settings",
"mux_allowed_domains": "Allowed Domains",
"registration_feed_metadata": "Registration Feed Metadata",
"add_registration_feed_metadata": "Add Feed Metadata",
"no_reg_feed_metadata": "No registration feed metadata found.",
"url_registered_idp": "This url should be registered as allowed redirect uri at related OAUTH2 APP at IDP",
"placeholders": {
"api_feed_type": "Select API feed type...",
"external_registration_feed_type": "Select Ext. Reg. feed type...",
"mux_allowed_domains": "Type any Allowed Domain.."
}
},
"selection_plan_list": {
"selection_plan_list": "Selection Plans",
"add_selection_plan": "Add Selection Plan",
"no_selection_plans": "No Selection Plans found",
"id": "Id",
"name": "Name",
"type": "Type",
"is_hidden": "Hidden?",
"is_enabled": "Enabled?",
"remove_warning": "Are you sure you want to remove selection plan ",
"placeholders": {
"search": "Search selection plans"
}
},
"edit_selection_plan": {
"selection_plan": "Selection Plan",
"selection_plans": "Selection Plans",
"name": "Name",
"id": "Id",
"email": "Email",
"enabled": "Enabled",
"hidden": "Hidden",
"submission_begin_date": "Submissions Start",
"submission_end_date": "Submissions End",
"submission_lock_down_presentation_status_date": "Submissions Status Lock Down Date",
"submission_lock_down_presentation_status_date_info": "This date, if set, will cause the submissions to remain 'In Review' until the date passes. This is useful if there are multiple submission rounds or if you need more time to review the track chair selections before updating the status to the submitter and speaker(s).",
"voting_begin_date": "Voting Start",
"voting_end_date": "Voting End",
"selection_begin_date": "TC Selections Start",
"selection_end_date": "TC Selections End",
"track_groups": "Category Groups",
"no_track_groups": "No category groups found.",
"description": "Description",
"submission_period_disclaimer": "Disclaimer",
"max_submissions": "Max Submissions Per User",
"allow_new_presentations": "Allow New Presentations",
"allow_proposed_schedules": "Allow Proposed Schedules",
"selection_plan_saved": "Selection Plan saved successfully.",
"selection_plan_created": "Selection Plan created successfully.",
"event_types": "Activity Types",
"no_event_types": "No activity types found.",
"extra_questions": "Extra Questions",
"add_extra_questions": "Create New Extra Question",
"no_extra_questions": "No extra questions found.",
"extra_question_remove_warning": "Are you sure you want to remove question ",
"email_templates": "Email Templates",
"allowed_members": "Allowed Members",
"creator_notification_email_template": "Creator emails",
"moderator_notification_email_template": "Moderator emails",
"speaker_notification_email_template": "Speaker emails",
"rating_type_remove_warning": "Are you sure you want to remove rating type",
"presentation_action_types": "Progress Flags (Presentation Action Types)",
"add_presentation_action_type": "Add Progress Flag",
"no_presentation_action_types": "No progress flags found",
"presentation_action_type_remove_warning": "Are you sure you want to remove progress flag",
"allowed_presentation_questions": "Allowed Questions",
"allowed_presentation_editable_questions": "Allowed Editable Questions",
"import": "Import",
"import_allowed_members": "Import Allowed Members",
"import_allowed_members_success": "Emails will be ingested as a background task. Will need to refresh the page to review.",
"cfp_settings": "Call For Presentation Settings",
"cfp_landing_page_title": "Landing page title",
"cfp_landing_page_title_info": "custom title for the login landing page when selection plan is set",
"cfp_track_question_label": "Track question label",
"cfp_track_question_label_info": "presentation track question section title text",
"cfp_speakers_singular_label": "Speakers singular label",
"cfp_speakers_singular_label_info": "singular label for media",
"cfp_speakers_plural_label": "Speakers plural label",
"cfp_speakers_plural_label_info": "plural label for media",
"cfp_presentation_summary_title_label": "Summary title text",
"cfp_presentation_summary_title_label_info": "title label for summary section",
"cfp_presentation_summary_abstract_label": "Abstract text",
"cfp_presentation_summary_abstract_label_info": "presentation abstract section title text",
"cfp_presentation_summary_social_summary_label": "Social summary label",
"cfp_presentation_summary_social_summary_label_info": "presentation social summary text",
"cfp_presentations_singular_label": "Presentation singular label",
"cfp_presentations_singular_label_info": "singular label for presentation",
"cfp_presentations_plural_label": "Presentation plural label",
"cfp_presentations_plural_label_info": "plural label for presentation",
"cfp_presentation_summary_links_label": "Summary links label",
"cfp_presentation_summary_links_label_info": "presentation summary links section title",
"cfp_presentation_edition_custom_message": "Presentation edit custom message",
"cfp_presentation_edition_custom_message_info": "This is a custom message to help inform the user what is expected of them that gets displayed when they add a new presentation or view an existing one. This would pop up as a modal dialogue each time the user entered the presentation UI.",
"cfp_presentation_summary_hide_track_selection": "Hide Track Selection",
"cfp_presentation_summary_hide_track_selection_info": "cfp_presentation_summary_hide_track_selection_info",
"cfp_presentation_summary_hide_activity_type_selection": "Hide Activity Type Selection",
"cfp_presentation_summary_hide_activity_type_selection_info": "cfp_presentation_summary_hide_activity_type_selection_info",
"cfp_presentation_edition_default_tab": "Default Landing Tab on Edition",
"cfp_presentation_selection_plan_link": "Selection Plan Link",
"cfp_presentation_all_selection_plan_link": "All Selection Plans Link",
"delete_confirm": {
"track_group": "Please verify you want to delete category group",
"event_type": "Please verify you want to delete activity type",
"extra_question": "Please verify you want to delete extra question",
"rating_type": "Please verify you want to delete rating type",
"action_type": "Please verify you want to delete progress flag",
"allowed_member": "Please verify you want to delete member"
},
"placeholders": {
"creator_notification_email_select_template": "Select a creator notification email template...",
"moderator_notification_email_select_template": "Select a moderator notification email template...",
"speaker_notification_email_select_template": "Select a speaker notification email template...",
"link_question": "Link an Existing Question...",
"link_presentation_action_type": "Link an Existing Action Type...",
"track_groups_search": "Search category groups...",
"event_type_search": "Search activity types...",
"allowed_presentation_questions": "Select questions to display...",
"allowed_presentation_editable_questions": "Select questions to Edit...",
"cfp_presentation_edition_default_tab": "Select a landing tab ..."
}
},
"edit_event": {
"title": "Title",
"submitter": "Submitter",
"submission_source": "Submission Source",
"published": "Published",
"short_description": "Short Description / Abstract",
"social_summary": "Social Summary",
"expect_to_learn": "What can attendees expect to learn?",
"start_date": "Start date",
"end_date": "End date",
"duration": "Duration",
"head_count": "Head Count",
"rsvp_link": "RSVP Link",
"rsvp": "RSVP",
"rsvp_type": "RSVP Type",
"rsvp_type_none": "None",
"rsvp_type_public": "Public",
"rsvp_type_private": "Private",
"rsvp_max_user_number": "RSVP Capacity",
"rsvp_max_user_wait_list_number": "Waitlist Capacity",
"rsvp_max_user_number_info": "Maximum number of confirmed attendees before the event goes to waitlist.",
"rsvp_max_user_wait_list_number_info": "“Maximum number of people allowed on the waitlist.",
"rsvp_template": "RSVP Template",
"location": "Location",
"event_type": "Activity Type",
"pic": "Activity Picture",
"track": "Activity Category",
"custom_order": "Custom Order",
"level": "Level",
"allow_feedback": "Allow feedback ?",
"recording": "Recording",
"to_record": "To record ?",
"attending_media": "Allow attending media?",
"tags": "Tags",
"sponsors": "Sponsors",
"show_sponsors": "Display sponsors",
"moderator": "Moderator",
"discussion_leader": "Discussion Leader",
"groups": "Groups",
"attachment": "Attachment",
"go_to_calendar": "Go to Calendar",
"view_event": "View Activity",
"unpublish": "Unpublish",
"event_saved": "Activity saved successfully.",
"event_created": "Activity created successfully.",
"saved_and_published": "Activity saved & published successfully.",
"clone_event": "Are you sure you want to clone event ",
"event_cloned": "Activity cloned successfully.",
"proximity_alert": "Speaker/s have sessions 90min before or after:",
"materials": "Materials",
"add_material": "Add Material",
"display_on_site": "Display on site",
"type": "Type",
"live": "Live Info",
"streaming_url": "Streaming URL",
"meeting_url": "Meeting URL",
"streaming_url_info": "Streaming URL could be a HLS/DASH feed (.m3u8/.mpd)",
"meeting_url_info": "Meeting URL could be a Zoom, Jitsy, or Google Meet",
"etherpad_link": "EtherPad URL",
"streaming_type": "Streaming Type",
"selection_plan": "Selection Plan",
"delete_material": "Are you sure you want to delete activity material ",
"qa_users": "Q&A Users",
"qa_users_info": "Users designated as Questions & Answers Users on A2A Widget ( Chat ).",
"disclaimer_accepted": "Disclaimer Accepted?",
"feedback": "Feedback",
"delete_feedback_warning": "Are you sure you want to delete this feedback entry?",
"extra_questions": "Extra Questions",
"track_chair_statistics": "Track Chairs Statistics",
"track_chair_comments": "Track Chairs Comments",
"comments": "Comments",
"body": "Body",
"owner_full_name": "Owner",
"created": "Created Date",
"last_edited": "Last Edited",
"is_activity": "Is Activity?",
"is_public": "Is Public?",
"delete_comment": "Are you sure you want to delete comment ",
"average_score": "Average Score",
"community_vote": "Community Vote",
"selections": "Selections",
"interested": "Interested",
"no_thanks": "No Thanks",
"popularity_score": "Popularity Score",
"speaker_first_name": "First Name",
"speaker_last_name": "Last Name",
"speaker_company": "Company",
"speaker_email": "Email",
"select_speaker": "Search a speaker to associate ...",
"search_speakers": "Search speaker(s)",
"assign_speaker": "Add speaker",
"unassign_speaker": "Are you sure you want to unassign speaker ",
"no_speakers": "There are no speakers associated with this activity so far",
"stream_is_secure": "Is Secure?",
"schedule_settings": "Schedule settings",
"allowed_ticket_types": "Allowed ticket types",
"upgrade_message": "You are about to Upgrade activity from SummitEvent to Presentation Type.",
"upgrade_message_2": "In order continue, please do save the Activity, and perform all Presentation Type related changes after that.",
"downgrade_message": "You can not change from Presentation Type to SummitEvent Type.",
"invalid_material_url": "Invalid download link",
"placeholders": {
"select_venue": "Select an Activity Venue ...",
"start_date": "Start Date",
"end_date": "End Date",
"select_event_type": "Select an Activity Type ...",
"select_track": "Select an Activity Category ...",
"select_level": "Select a Level ...",
"select_rsvp_type": "Select a RSVP Type ...",
"select_rsvp_template": "Select a Template ...",
"select_selection_plan": "Select a Selection Plan ...",
"select_submitter": "Select Submitter ...",
"search_feedback": "Search by Author, Note",
"search_comment": "Search by Comment, Creator ID",
"allowed_ticket_types": "Select ticket types",
"select_submission_source": "Select a Submission Source"
},
"draft_state_label": "DRAFT STATE: NOT SUBMITTED BY SUBMITTER",
"draft_state_badge": "Pending Complete Details",
"draft_state_missing_fields": "Missing required fields:",
"draft_state_note": "This activity was saved as a draft by the submitter and contains missing required fields. To make partial changes (e.g., re-categorize or assign tags) without filling out missing fields, use the Save as Incomplete button below. This preserves the draft status.",
"save_as_incomplete": "Save as Incomplete",
"save_and_mark_complete": "Save & Mark Complete",
"event_saved_as_draft": "Activity saved as draft successfully.",
"reopen_submission": "Reopen submission",
"reopen_submission_section": "CFP submission window",
"reopen_duration": "Reopen for",
"reopen_duration_24": "24 hours",
"reopen_duration_48": "48 hours",
"reopen_duration_72": "72 hours",
"reopen_duration_custom": "Custom",
"reopen_custom_hours": "Hours",
"reopen_custom_hours_capped": "Hours (1-{max})",
"reopen_confirm_title": "Reopen submission for this activity?",
"reopen_confirm_text": "This lets the speaker edit this talk until {deadline}.",
"reopen_submission_success": "Submission reopened.",
"close_submission": "Close now",
"close_submission_confirm_title": "Close the submission window now?",
"close_submission_confirm_text": "The speaker will immediately lose the ability to edit this talk.",
"close_submission_success": "Submission window closed.",
"reopened_until": "Reopened until {deadline}",
"reopened_by": "by {admin}",
"reopen_deep_link_label": "Speaker link"
},
"edit_event_material": {
"material": "Material",
"type": "Type",
"name": "Name",
"description": "Description",
"featured": "Featured",
"display_on_site": "Display on site",
"link": "Link",
"slide": "Slide",
"youtube_id": "Youtube Id",
"external_url": "External Url",
"media_upload_type": "Media Upload Type",
"media_upload_file": "Media Upload File",
"event_material_saved": "Material saved successfully.",
"event_material_created": "Material created successfully.",
"placeholders": {
"select_type": "Select a Type ..."
}
},
"edit_event_comment": {
"comment": "Comment",
"comments": "Comments",
"owner_name": "Owner Name",
"is_activity": "Is Activity?",
"is_public": "Is Public?",
"body": "Body",
"event_comment_saved": "Comment saved successfully."
},
"speaker_list": {
"speaker_list": "Speaker List",
"speakers": "Speakers",
"add_speaker": "Add Speaker",
"member_id": "Member Id",
"registration_code": "Registration Code",
"on_site_phone": "On Site Phone",
"no_results": "No items found for this search criteria.",
"delete_speaker_warning": "Are you sure you want to delete speaker {name}"
},
"edit_speaker": {
"registration_code": "Registration Code",
"on_site_phone": "On Site Phone",
"presentations": "Presentations",
"title": "Title",
"registered": "Registered",
"checked_in": "Checked In",
"confirmed": "Confirmed",
"twitter": "Twitter",
"irc": "Irc",
"bio": "Bio",
"profile_pic": "Square Profile Photo",
"big_pic": "Tall Speaker Photo",
"profile_pic_size": "484 x 484px",
"profile_pic_format": "PNG or JPG",
"big_pic_size": "484 x 986px",
"big_pic_format": "PNG or JPG",
"affiliations": "Affiliations",
"remove_pic_warning": "This photo will be deleted right away and cannot be recovered.",
"speaker_saved": "Speaker saved successfully.",
"speaker_created": "Speaker created successfully.",
"company": "Company",
"phone_number": "Phone #",
"copy_email": "Copy Email"
},
"merge_speakers": {
"merge_speakers": "Merge Speakers",
"select_speaker": "Please select a speaker first.",
"speaker_from": "Merge From Speaker",
"speaker_to": "To Speaker",
"merge": "Merge",
"title": "Title",
"first_name": "First Name",
"last_name": "Last Name",
"reg_email": "Reg. Email",
"member": "Member",
"name": "Name",
"email": "Email",
"eb_ticket": "Tickets",
"presentations": "Presentations",
"twitter": "Twitter",
"irc": "IRC",
"bio": "Bio",
"pic": "Picture",
"areas_of_expertise": "Expertise",
"other_presentation_links": "Other Prez",
"travel_preferences": "Travel Pref.",
"languages": "Laguages",
"registration_codes": "Promo Codes",
"summit_assistances": "Attendance",
"organizational_roles": "Org. Roles",
"active_involvements": "Involvements",
"merge_warning": "There is no going back. Speaker on the right will have all the green fields and Speaker on the left will be erased",
"merge_and_delete": "Yes, merge and delete.",
"merge_success": "Success! Speakers merged.",
"merge_changes": "Changes made on: ",
"placeholders": {}
},
"company_list": {
"company_list": "Company List",
"companies": "Companies",
"add_company": "Add Company",
"member_level": "Member Level",
"delete_company_warning": "Are you sure you want to delete company {name}",
"no_results": "No items found for this search criteria.",
"placeholders": {
"search_companies": "Search by Company Name"
}
},
"edit_company": {
"company": "Company",
"name": "Name",
"description": "Description",
"overview": "Overview",
"url": "Url",
"display_on_site": "Display on Site",
"featured": "Featured",
"city": "City",
"state": "State",
"country": "Country",
"industry": "Industry",
"products": "Products",
"contributions": "Contributions",
"contact_email": "Contact Email",
"member_level": "Member Level",
"admin_email": "Admin Email",
"commitment": "Commitment",
"commitment_author": "Commitment Author",
"logo": "Logo",
"big_logo": "Big Logo",
"color": "Color",
"company_saved": "Company saved successfully.",
"company_created": "Company created successfully.",
"project_name": "Sponsored Project",
"sponsorship_type": "Tier",
"add_project_sponsorship": "Add Project Sponsorship",
"delete_supporting_company_warning": "",
"placeholders": {
"select_country": "Select Country",
"sponsored_project": "Select Sponsored Project",
"sponsorship_type": "Select Tier",
"select_project_first": "Select a project first",
"no_options": "No options"
}
},
"tag_list": {
"tag_list": "Tag List",
"item": "item",
"items": "items",
"tags": "Tags",
"add_tag": "Add Tag",
"delete_tag_warning": "Are you sure you want to delete tag",
"created": "Created",
"updated": "Updated",
"placeholders": {
"search_tags": "Search by Tag Name"
}
},
"edit_tag": {
"tag": "Tag",
"name": "Name",
"name_required": "Name is required.",
"tag_saved": "Tag saved successfully.",
"tag_created": "Tag created successfully."
},
"schedule_builder_page": {
"messages": {
"unpublish_confirmation": "You are about to UnPublish this activity!",
"bulk_unpublish_confirmation": "You are about to UnPublish these activities!"
},
"titles": {
"unpublish_confirmation": "Are you sure?",
"bulk_unpublish_confirmation": "Are you sure?"
},
"buttons": {
"unpublish_confirmation": "Yes, UnPublish it!",
"bulk_unpublish_confirmation": "Yes, UnPublish them all!"
}
},
"empty_spots_modal": {
"find_empty_spots": "Find Empty Spots",
"venue": "Venue",
"from_date": "From date",
"to_date": "To date",
"gap": "Gap",
"placeholders": {
"start_date": "Enter Start Date",
"end_date": "Enter End Date",
"gap_size": "Enter Gap Size (Minutes)"
}
},
"attendee_list": {
"no_attendees": "No attendees found for current search criteria.",
"attendee_list": "Attendee List",
"attendees": "Attendees",
"add_attendee": "Add Attendee",
"id": "Id",
"member_id": "Member Id",
"tickets_count": "Tickets Qty.",
"bought_date": "Bought Date",
"summit_hall_checked_in": "Checked In",
"schedule": "Schedule",
"schedule_count": "Scheduled",
"company": "Company",
"manager": "Manager",
"status": "Status",
"tags": "Tags",
"has_notes": "Notes",
"delete_attendee_warning": "Are you sure you want to delete attendee",
"send_emails": "Send",
"resend_done": "Emails sent successfully.",
"select_template": "Select a Email Template to perform the action.",
"select_items": "Select at least one attendee to perform the action.",
"summit_hall_checked_in_date": "Check In Date",
"items_qty": "Selected {qty} Attendees",
"send_email_warning": "You are about to send the {template} email template to {qty} attendees.",
"email_test_recipient": "BLAST IS ON TEST MODE (All emails would be sent to {email})",
"invalid_recipient_email": "Please use a valid email",
"please_confirm": "Please confirm.",
"invite_private_rsvp": "Add to Private RSVP Invitation List",
"bulk_rsvp_invitations_done": "RSVP Invitations Added.",
"bulk_event_rsvp_warning": "You are about to add RSVP Invitations for {event} to {qty} attendees.",
"placeholders": {
"test_recipient": "Optional Test Recipient",
"search_attendees": "Search Attendees by Name, Email, Company, Ticket Type or Badge Type",
"ticket_type": "Filter by Ticket Type",
"badge_type": "Filter by Badge Type",
"badge_feature": "Filter by Badge Feature",
"checkin_date_from": "Filter Check In Date from",
"checkin_date_to": "Filter Check In Date to",
"tags": "Filter by tag",
"company": "Filter by company",
"notes": "Filter by note",
"event_rsvp": "-- SELECT PRIVATE RSVP ACTIVITY --"
}
},
"edit_attendee": {
"manager": "Manager",
"affiliations": "Affiliations",
"start_date": "Start Date",
"end_date": "End Date",
"first_name": "First Name",
"last_name": "Last Name",
"email": "Email",
"email_disclaimer": "Creating a new attendee by email address requires entering first name and last name as well",
"affiliation_title": "Title",
"company": "Company",
"tags": "Tags",
"affiliation_current": "Current",
"shared_contact_info": "Share Contact Info?",
"checked_in": "Checked In?",
"tickets": "Tickets",
"orders": "Orders",
"rsvp": "RSVP",
"remove_ticket_from_attendee": "Do you really want to remove this ticket from this attendee?",
"add_ticket": "Add Ticket",
"ticket_details": "Ticket Details",
"eb_order_number": "External Order #",
"eb_attendee_id": "External Attendee Id",
"ticket_type": "Ticket Type",
"ticket_number": "Ticket #",
"badge_type": "Badge Type",
"assign_to_member": "Assign to another member",
"new_ticket": "New Ticket",
"remove_rsvp_from_attendee": "Do you really want to remove this rsvp from this attendee?",
"attendee_saved": "Attendee saved successfully.",
"attendee_created": "Attendee created successfully.",