-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathtemplate.json
15078 lines (15078 loc) · 671 KB
/
template.json
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
{
"\"Service provider can create offering user\" must be enabled for GLAuth generation": {
"description": "marketplace/offerings/update/integration/GLAuthConfigButton.tsx",
"message": "\"Service provider can create offering user\" must be enabled for GLAuth generation"
},
"\"{trimmed}\" exceeds the {max_len} character FQDN limit": {
"description": "openstack/openstack-instance/utils.ts",
"message": "\"{trimmed}\" exceeds the {max_len} character FQDN limit"
},
"'{trimmed}' exceeds the {maxlen} character FQDN limit": {
"description": "openstack/openstack-instance/actions/EditDialog.tsx",
"message": "'{trimmed}' exceeds the {maxlen} character FQDN limit"
},
"(VAT is not included)": {
"description": "invoices/details/BillingRecordDetails.tsx",
"message": "(VAT is not included)"
},
"+{count} more schedules": {
"description": "booking/offering/BookingResourceListItem.tsx",
"message": "+{count} more schedules"
},
"1 - Very negative": {
"description": "issues/feedback/utils.ts",
"message": "1 - Very negative"
},
"1 member": {
"description": "dashboard/TeamWidget.tsx",
"message": "1 member"
},
"1 star": {
"description": "proposals/proposal/create-review/steps/FormSummaryStep.tsx",
"message": "1 star"
},
"10 - Very positive": {
"description": "issues/feedback/utils.ts",
"message": "10 - Very positive"
},
"<Link>Terms of Service</Link> have been accepted on <Date></Date>": {
"description": "user/support/TermsOfService.tsx",
"message": "<Link>Terms of Service</Link> have been accepted on <Date></Date>"
},
"<button>Click to upload</button> or drag and drop": {
"description": "form/upload/UploadContainer.tsx",
"message": "<button>Click to upload</button> or drag and drop"
},
"<tos>Terms of Service</tos> and <pp>Privacy policy</pp> have been accepted on <date></date>": {
"description": "user/support/TermsOfServiceCheckbox.tsx",
"message": "<tos>Terms of Service</tos> and <pp>Privacy policy</pp> have been accepted on <date></date>"
},
"A client-accessible domain name override in case Openstack is returning an internal domain": {
"description": "openstack/OpenStackProvisioningConfigForm.tsx",
"message": "A client-accessible domain name override in case Openstack is returning an internal domain"
},
"A constant in the API path, sometimes differs": {
"description": "SettingsDescription.ts",
"message": "A constant in the API path, sometimes differs"
},
"A custom .png image file for login page": {
"description": "SettingsDescription.ts",
"message": "A custom .png image file for login page"
},
"A custom favicon .png image file": {
"description": "SettingsDescription.ts",
"message": "A custom favicon .png image file"
},
"A list of languages available for selection has been updated": {
"description": "administration/languages/AdministrationLanguages.tsx",
"message": "A list of languages available for selection has been updated"
},
"A minimal expected configuration of worker is 4 vCPU and 4 GB RAM.": {
"description": "rancher/cluster/create/LonghornWorkerWarning.tsx",
"message": "A minimal expected configuration of worker is 4 vCPU and 4 GB RAM."
},
"A minimal guaranteed credit reduction per month.": {
"description": "customer/credits/constants.tsx",
"message": "A minimal guaranteed credit reduction per month."
},
"A minimum amount deducted monthly, calculated based on the end date. Updated on the start of the month.": {
"description": "customer/credits/constants.tsx",
"message": "A minimum amount deducted monthly, calculated based on the end date. Updated on the start of the month."
},
"A one-time fee applied on activation.": {
"description": "marketplace/details/plan/PlanDetailsList.tsx, marketplace/details/plan/PlanDetailsTable.tsx",
"message": "A one-time fee applied on activation."
},
"A profile has been created.": {
"description": "freeipa/FreeIPAAccountCreate.tsx",
"message": "A profile has been created."
},
"API URL": {
"description": "marketplace/offerings/import/CredentialsTab.tsx, marketplace/offerings/import/SelectOfferingTab.tsx, marketplace-remote/RemoteOfferingSecretOptions.tsx, openstack/OpenStackForm.tsx",
"message": "API URL"
},
"API secret code:": {
"description": "marketplace/service-providers/ServiceProviderManagement.tsx",
"message": "API secret code:"
},
"API token": {
"description": "navigation/header/UserToken.tsx, user/api-key/UserTokenLifetime.tsx, user/routes.ts",
"message": "API token"
},
"Abbreviation": {
"description": "administration/organizations/OrganizationGroupOrganizationsList.tsx, customer/details/CustomerDetailsPanel.tsx, customer/details/EditFieldDialog.tsx, customer/list/CustomerList.tsx, marketplace/offerings/expandable/OfferingCustomersList.tsx, marketplace/service-providers/ProviderDetailsBody.tsx, reporting/quotas/CustomerQuotasList.tsx, resource/support/SharedProviderCustomers.tsx, user/affiliations/OrganizationsList.tsx",
"message": "Abbreviation"
},
"About": {
"description": "about.tsx",
"message": "About"
},
"Accept booking request": {
"description": "administration/roles/PermissionOptions.tsx",
"message": "Accept booking request"
},
"Accept invitation": {
"description": "invitations/InvitationButtons.tsx",
"message": "Accept invitation"
},
"Accept": {
"description": "booking/components/AcceptBookingButton.tsx, proposals/offering-requests/OfferingRequestItemActions.tsx",
"message": "Accept"
},
"Accepted proposals": {
"description": "proposals/call-management/CallManagementDashboard.tsx, proposals/round/reviewers/RoundReviewersList.tsx",
"message": "Accepted proposals"
},
"Accepted": {
"description": "booking/BookingStateField.tsx, booking/utils.ts, invitations/InvitationStateFilter.tsx, proposals/proposal/create/ProgressSteps.tsx, proposals/utils.ts",
"message": "Accepted"
},
"Accepting offering request": {
"description": "proposals/offering-requests/OfferingRequestItemActions.tsx",
"message": "Accepting offering request"
},
"Access URL": {
"description": "marketplace/offerings/update/overview/OverviewSection.tsx",
"message": "Access URL"
},
"Access control": {
"description": "customer/details/CustomerAccessControlPanel.tsx, customer/details/CustomerManageContainer.tsx, customer/details/CustomerManagePageBar.tsx",
"message": "Access control"
},
"Access policies": {
"description": "marketplace/offerings/update/overview/OverviewSection.tsx",
"message": "Access policies"
},
"Access policy has been updated successfully.": {
"description": "marketplace/offerings/actions/SetAccessPolicyDialogForm.tsx",
"message": "Access policy has been updated successfully."
},
"Access resource": {
"description": "resource/ResourceAccessButton.tsx",
"message": "Access resource"
},
"Access restricted": {
"description": "marketplace/resources/details/ResourceFlags.tsx",
"message": "Access restricted"
},
"Access subnet has been created.": {
"description": "customer/details/AccessSubnetCreateForm.tsx",
"message": "Access subnet has been created."
},
"Access subnet has been removed.": {
"description": "customer/details/AccessSubnetDeleteButton.tsx",
"message": "Access subnet has been removed."
},
"Access subnet has been updated.": {
"description": "customer/details/AccessSubnetEditDialog.tsx",
"message": "Access subnet has been updated."
},
"Access subnets": {
"description": "user/affiliations/OrganizationsList.tsx",
"message": "Access subnets"
},
"Access": {
"description": "marketplace/offerings/OfferingAccessButton.tsx, openstack/openstack-tenant/OpenStackTenantSummary.tsx",
"message": "Access"
},
"Account deletion": {
"description": "user/support/UserRemovalMessageDialog.tsx",
"message": "Account deletion"
},
"Account name generation policy": {
"description": "marketplace/UserPluginOptionsForm.tsx",
"message": "Account name generation policy"
},
"Account status": {
"description": "user/support/UserDetailsTable.tsx, user/support/UserStatus.tsx",
"message": "Account status"
},
"Accounting components": {
"description": "marketplace/offerings/OfferingEditUIView.tsx, marketplace/offerings/update/components/ComponentsSection.tsx",
"message": "Accounting components"
},
"Accounting period": {
"description": "customer/list/CustomerListFilter.tsx, reporting/resource-usage/ResourceUsageFilter.tsx",
"message": "Accounting period"
},
"Accounting plans": {
"description": "marketplace/offerings/OfferingEditUIView.tsx",
"message": "Accounting plans"
},
"Accounting record": {
"description": "invoices/details/BillingDetails.tsx, invoices/routes.ts",
"message": "Accounting record"
},
"Accounting running": {
"description": "administration/organizations/OrganizationsFilter.tsx, customer/list/CustomerListFilter.tsx",
"message": "Accounting running"
},
"Accounting start date": {
"description": "customer/details/CustomerBillingPanel.tsx, user/affiliations/OrganizationsList.tsx",
"message": "Accounting start date"
},
"Accounting type": {
"description": "marketplace/offerings/update/components/ComponentAccountingTypeField.tsx",
"message": "Accounting type"
},
"Accounting": {
"description": "customer/routes.ts, marketplace/offerings/OfferingEditUIView.tsx, marketplace/orders/details/OrderDetails.tsx",
"message": "Accounting"
},
"Accounts": {
"description": "administration/routes.ts",
"message": "Accounts"
},
"Action column is hidden.": {
"description": "table/HiddenActionsMessage.tsx",
"message": "Action column is hidden."
},
"Action has been applied.": {
"description": "resource/actions/AsyncActionButton.tsx",
"message": "Action has been applied."
},
"Action": {
"description": "administration/organizations/OrganizationCostPoliciesList.tsx, customer/cost-policies/CostPoliciesList.tsx, marketplace/offerings/details/policies/PoliciesTable.tsx, resource/actions/AsyncActionItem.tsx",
"message": "Action"
},
"Actions": {
"description": "administration/remote-offering-sync/CategoryMappingRulesField.tsx, customer/payments/PaymentsList.tsx, customer/team/CustomerUsersListExpandableRow.tsx, invitations/UserPermissionRequestsList.tsx, invoices/details/InvoiceItemExpandableRow.tsx, marketplace/category/admin/ColumnsList.tsx, marketplace/offerings/actions/ActionsDropdown.tsx, marketplace/orders/actions/OrderActionsButton.tsx, marketplace/orders/list/OrdersListExpandableRow.tsx, marketplace/resources/ResourceActions.tsx, marketplace/service-providers/CampaignForm.tsx, marketplace/service-providers/CampaignUpdateForm.tsx, openstack/openstack-backup/BackupsList.tsx, openstack/openstack-backup-schedule/BackupSchedulesList.tsx, openstack/openstack-instance/InternalIpsList.tsx, openstack/openstack-instance/SetAllowedAddressPairsDialog.tsx, openstack/openstack-security-groups/rule-editor/RulesHeader.tsx, openstack/openstack-server-groups/ServerGroupsList.tsx, openstack/openstack-snapshot/TenantSnapshotsList.tsx, openstack/openstack-snapshot-schedule/SnapshotSchedulesList.tsx, openstack/openstack-tenant/IpAddressList.tsx, openstack/openstack-tenant/StaticRoutesTable.tsx, openstack/openstack-tenant/actions/SubnetsTable.tsx, openstack/openstack-tenant/actions/VolumeTypesTable.tsx, openstack/openstack-volume/VolumeSnapshotsList.tsx, project/ProjectsListActions.tsx, proposals/update/CallActions.tsx, rancher/cluster/ClusterIngressesList.tsx, rancher/cluster/ClusterServicesList.tsx, rancher/cluster/apps/ClusterApplicationsList.tsx, rancher/cluster/hpas/ClusterHPAList.tsx, table/ActionsDropdown.tsx, table/TableColumnsButton.tsx, table/TableHeader.tsx, user/keys/KeysList.tsx",
"message": "Actions"
},
"Activate": {
"description": "marketplace/offerings/actions/OfferingStateActions.tsx, openstack/openstack-backup-schedule/actions/ActivateAction.tsx, openstack/openstack-snapshot-schedule/actions/ActivateSnapshotScheduleAction.tsx, proposals/update/CallActions.tsx, proposals/utils.ts, user/support/UserStatus.tsx",
"message": "Activate"
},
"Activating": {
"description": "resource/state/constants.ts",
"message": "Activating"
},
"Active campaigns": {
"description": "marketplace/service-providers/dashboard/ProviderWidgets.tsx",
"message": "Active campaigns"
},
"Active clients": {
"description": "marketplace/service-providers/dashboard/ProviderWidgets.tsx",
"message": "Active clients"
},
"Active count": {
"description": "marketplace/offerings/details/PlanUsageList.tsx, reporting/plan-usage/PlanUsageList.tsx",
"message": "Active count"
},
"Active from": {
"description": "administration/announcements/AnnouncementForm.tsx",
"message": "Active from"
},
"Active notifications": {
"description": "marketplace/service-providers/dashboard/ProviderWidgets.tsx",
"message": "Active notifications"
},
"Active plan count": {
"description": "reporting/plan-usage/PlanUsageList.tsx",
"message": "Active plan count"
},
"Active resources": {
"description": "marketplace/service-providers/dashboard/ProviderWidgets.tsx",
"message": "Active resources"
},
"Active round": {
"description": "proposals/PublicCallsList.tsx, proposals/call-management/CallActiveRoundFilter.tsx, proposals/call-management/CallAllFilters.tsx",
"message": "Active round"
},
"Active rounds": {
"description": "proposals/call-management/CallManagementDashboard.tsx",
"message": "Active rounds"
},
"Active sessions": {
"description": "administration/routes.ts",
"message": "Active sessions"
},
"Active tasks": {
"description": "administration/CeleryInfoPage.tsx",
"message": "Active tasks"
},
"Active to": {
"description": "administration/announcements/AnnouncementForm.tsx",
"message": "Active to"
},
"Active": {
"description": "administration/announcements/AnnouncementFilter.tsx, administration/roles/RolesList.tsx, administration/users/FreeIPAUsersList.tsx, invitations/GroupInvitationsList.tsx, marketplace/offerings/list/OfferingStateCell.tsx, marketplace/offerings/list/OfferingStateFilter.tsx, marketplace/offerings/update/plans/PlansSection.tsx, marketplace/service-providers/ProviderCampaignStateFilter.tsx, proposals/utils.ts, user/support/UserList.tsx, user/support/utils.ts",
"message": "Active"
},
"Add Waldur user SSH keys to the FreeIPA profile": {
"description": "freeipa/SyncProfile.tsx",
"message": "Add Waldur user SSH keys to the FreeIPA profile"
},
"Add a note to the provider": {
"description": "proposals/update/offerings/WizardFormThirdPage.tsx",
"message": "Add a note to the provider"
},
"Add access subnet": {
"description": "customer/details/AccessSubnetCreateButton.tsx",
"message": "Add access subnet"
},
"Add address": {
"description": "openstack/openstack-tenant/IpAddressList.tsx",
"message": "Add address"
},
"Add allocation credit": {
"description": "customer/credits/CreditFormDialog.tsx",
"message": "Add allocation credit"
},
"Add another user": {
"description": "invitations/actions/create/EmailsListGroup.tsx",
"message": "Add another user"
},
"Add call attachments": {
"description": "proposals/update/documents/AttachDocumentsDialog.tsx",
"message": "Add call attachments"
},
"Add column": {
"description": "marketplace/category/admin/ColumnsList.tsx",
"message": "Add column"
},
"Add comment": {
"description": "issues/comments/CommentFormDialog.tsx, issues/comments/IssueCommentButton.tsx, proposals/proposal/create-review/AddCommentButton.tsx, proposals/proposal/create-review/CommentFormDialog.tsx",
"message": "Add comment"
},
"Add component": {
"description": "marketplace/offerings/update/components/AddComponentButton.tsx, marketplace/offerings/update/components/AddComponentDialog.tsx",
"message": "Add component"
},
"Add current page": {
"description": "navigation/header/search/SearchPopover.tsx",
"message": "Add current page"
},
"Add data volume": {
"description": "rancher/cluster/create/DataVolumeAddButton.tsx, rancher/cluster/create/FormDataStorageStep.tsx",
"message": "Add data volume"
},
"Add document": {
"description": "proposals/update/documents/AttachDocumentsButton.tsx",
"message": "Add document"
},
"Add email": {
"description": "customer/list/ExportAsEmailDialog.tsx",
"message": "Add email"
},
"Add endpoint": {
"description": "marketplace/offerings/update/endpoints/AddEndpointButton.tsx, marketplace/offerings/update/endpoints/AddEndpointDialog.tsx",
"message": "Add endpoint"
},
"Add filter": {
"description": "table/TableFiltersMenu.tsx",
"message": "Add filter"
},
"Add identity provider": {
"description": "administration/providers/CreateProviderDialog.tsx, administration/providers/ProviderCard.tsx",
"message": "Add identity provider"
},
"Add image": {
"description": "marketplace/offerings/images/CreateImageButton.tsx, marketplace/offerings/images/CreateImageDialog.tsx",
"message": "Add image"
},
"Add key": {
"description": "user/keys/KeyCreateButton.tsx",
"message": "Add key"
},
"Add member": {
"description": "customer/team/UserAddButton.tsx",
"message": "Add member"
},
"Add new": {
"description": "administration/remote-offering-sync/CategoryMappingRulesField.tsx",
"message": "Add new"
},
"Add notification": {
"description": "user/hooks/HookCreateButton.tsx",
"message": "Add notification"
},
"Add offering endpoint": {
"description": "administration/roles/PermissionOptions.tsx",
"message": "Add offering endpoint"
},
"Add option": {
"description": "marketplace/offerings/update/options/AddOptionButton.tsx, marketplace/offerings/update/options/AddOptionDialog.tsx",
"message": "Add option"
},
"Add pair": {
"description": "openstack/openstack-instance/SetAllowedAddressPairsDialog.tsx",
"message": "Add pair"
},
"Add payment profile": {
"description": "customer/payment-profiles/PaymentProfileCreateDialog.tsx",
"message": "Add payment profile"
},
"Add payment": {
"description": "customer/payments/PaymentCreateDialog.tsx",
"message": "Add payment"
},
"Add plan": {
"description": "marketplace/offerings/update/plans/AddPlanButton.tsx, marketplace/offerings/update/plans/AddPlanDialog.tsx",
"message": "Add plan"
},
"Add project credit": {
"description": "customer/credits/ProjectCreditFormDialog.tsx",
"message": "Add project credit"
},
"Add project role": {
"description": "customer/team/AddProjectUserButton.tsx, customer/team/AddProjectUserDialog.tsx",
"message": "Add project role"
},
"Add remote synchronization": {
"description": "administration/remote-offering-sync/RemoteSyncFormDialog.tsx",
"message": "Add remote synchronization"
},
"Add resource": {
"description": "marketplace/details/DetailsPage.tsx, marketplace/resources/actions/AddResourceButton.tsx, navigation/sidebar/marketplace-popup/MarketplacePopup.tsx, navigation/sidebar/marketplace-popup/MarketplaceTrigger.tsx, proposals/proposal/create/resource-requests-step/AddResourceButton.tsx",
"message": "Add resource"
},
"Add role": {
"description": "marketplace/offerings/update/roles/AddRoleButton.tsx, marketplace/offerings/update/roles/AddRoleDialog.tsx, project/team/AddUserDialog.tsx",
"message": "Add role"
},
"Add route": {
"description": "openstack/openstack-tenant/StaticRoutesTable.tsx",
"message": "Add route"
},
"Add rule": {
"description": "openstack/openstack-security-groups/rule-editor/RuleAddButton.tsx",
"message": "Add rule"
},
"Add time period": {
"description": "booking/OfferingScheduler.tsx, booking/deploy/FormPeriodsStep.tsx",
"message": "Add time period"
},
"Add title, description, and attachments": {
"description": "issues/create/IssueCreateForm.tsx",
"message": "Add title, description, and attachments"
},
"Add to a new namespace": {
"description": "rancher/template/NamespaceField.tsx",
"message": "Add to a new namespace"
},
"Add user": {
"description": "invitations/actions/create/EmailsListGroup.tsx, marketplace/offerings/details/permissions/OfferingPermissionCreateButton.tsx, marketplace/service-providers/OfferingPermissionCreateButton.tsx, project/team/AddUserButton.tsx, project/team/AddUserDialog.tsx, proposals/team/AddUserButton.tsx, proposals/team/AddUserDialog.tsx, user/support/AddRemoteUserDialog.tsx, user/support/UserTableActions.tsx",
"message": "Add user"
},
"Add your comment here": {
"description": "proposals/proposal/create-review/steps/FormSummaryStep.tsx",
"message": "Add your comment here"
},
"Add your notes here": {
"description": "proposals/proposal/create-review/steps/FormSummaryStep.tsx",
"message": "Add your notes here"
},
"Add {category}": {
"description": "marketplace/details/DetailsPage.tsx",
"message": "Add {category}"
},
"Add": {
"description": "administration/providers/CreateProviderDialog.tsx, core/AddButton.tsx, customer/list/OrganizationCreateButton.tsx, customer/team/AddProjectUserButton.tsx, customer/team/UserAddButton.tsx, marketplace/deploy/DeployPage.tsx, openstack/OpenStackExternalIpsField.tsx, openstack/openstack-backup/actions/NetworksList.tsx, openstack/openstack-instance/actions/update-floating-ips/FloatingIpsList.tsx, openstack/openstack-instance/deploy/FormNetworkStep.tsx, openstack/openstack-tenant/actions/SubnetsTable.tsx, openstack/openstack-tenant/actions/VolumeTypesTable.tsx, project/create/GlobalProjectCreateButton.tsx, project/create/ProjectCreateButton.tsx, rancher/cluster/create/FormNodesStep.tsx",
"message": "Add"
},
"Additional account description invisible to user": {
"description": "user/support/UserEditRows.tsx",
"message": "Additional account description invisible to user"
},
"Additional configuration": {
"description": "proposals/proposal/create/resource-requests-step/ResourceRequestFormDialog.tsx, support/deploy-steps.ts",
"message": "Additional configuration"
},
"Additional quotas": {
"description": "quotas/QuotasTable.tsx",
"message": "Additional quotas"
},
"Additional space to apply to storage quota to be used by snapshots.": {
"description": "openstack/OpenStackPluginOptionsForm.tsx",
"message": "Additional space to apply to storage quota to be used by snapshots."
},
"Additionally service provider can charge for usage of the following components": {
"description": "marketplace/details/plan/PlanDetailsList.tsx, marketplace/details/plan/PlanDetailsTable.tsx",
"message": "Additionally service provider can charge for usage of the following components"
},
"Address": {
"description": "customer/details/CustomerDetailsPanel.tsx, customer/details/EditFieldDialog.tsx, openstack/openstack-floating-ips/OpenStackFloatingIpSummary.tsx, user/affiliations/OrganizationsList.tsx",
"message": "Address"
},
"Admin password": {
"description": "azure/sql/AzureSQLServerDetails.tsx, azure/vm/AzureVirtualMachineDetails.tsx, azure/vm/AzureVirtualMachineSummary.tsx",
"message": "Admin password"
},
"Admin username": {
"description": "azure/sql/AzureSQLServerDetails.tsx, azure/vm/AzureVirtualMachineDetails.tsx, azure/vm/AzureVirtualMachineSummary.tsx",
"message": "Admin username"
},
"Administration": {
"description": "administration/routes.ts, navigation/sidebar/AdminMenu.tsx",
"message": "Administration"
},
"Advanced options": {
"description": "vmware/deploy/FormAdvancedOptionsStep.tsx, vmware/deploy/steps.ts",
"message": "Advanced options"
},
"Affected resource field name": {
"description": "SettingsDescription.ts",
"message": "Affected resource field name"
},
"Affected resource": {
"description": "issues/IssueInfo.tsx, issues/create/ResourceGroup.tsx",
"message": "Affected resource"
},
"Affiliations": {
"description": "marketplace/service-providers/ProviderUsersList.tsx, user/support/UserDetailsTable.tsx, user/support/UserEditRows.tsx, user/support/UserList.tsx",
"message": "Affiliations"
},
"Affinity": {
"description": "openstack/openstack-tenant/actions/CreateServerGroupForm.tsx",
"message": "Affinity"
},
"After proposal submission": {
"description": "proposals/utils.ts",
"message": "After proposal submission"
},
"After round is closed": {
"description": "proposals/utils.ts",
"message": "After round is closed"
},
"After secret API code has been regenerated, it will not be possible to submit usage with the old key.": {
"description": "marketplace/service-providers/ServiceProviderManagement.tsx",
"message": "After secret API code has been regenerated, it will not be possible to submit usage with the old key."
},
"Aggregate usage and limits": {
"description": "marketplace/aggregate-limits/AggregateLimitWidget.tsx",
"message": "Aggregate usage and limits"
},
"Agreement date": {
"description": "administration/users/FreeIPAUsersList.tsx, user/support/UserList.tsx",
"message": "Agreement date"
},
"Agreement no:": {
"description": "invoices/details/InvoiceItemsTable.tsx",
"message": "Agreement no:"
},
"Agreement number": {
"description": "customer/details/CustomerDetailsPanel.tsx, customer/details/EditFieldDialog.tsx, customer/list/CustomerList.tsx, customer/payment-profiles/PaymentProfileCreateDialog.tsx, customer/payment-profiles/PaymentProfileUpdateDialog.tsx, user/affiliations/OrganizationsList.tsx",
"message": "Agreement number"
},
"Agreement type": {
"description": "administration/agreements/UserAgreementCreateDialog.tsx",
"message": "Agreement type"
},
"Agricultural biotechnology": {
"description": "project/OECD_FOS_2007_CODES.ts",
"message": "Agricultural biotechnology"
},
"Agriculture, forestry, and fisheries": {
"description": "project/OECD_FOS_2007_CODES.ts",
"message": "Agriculture, forestry, and fisheries"
},
"All actions": {
"description": "invitations/InvitationsMultiSelectActions.tsx, marketplace/resources/mass-actions/ResourceMultiSelectAction.tsx",
"message": "All actions"
},
"All calls": {
"description": "proposals/routes.ts",
"message": "All calls"
},
"All invitation emails have been successfully sent.": {
"description": "invitations/actions/useInvitationCreateDialog.ts",
"message": "All invitation emails have been successfully sent."
},
"All offerings": {
"description": "marketplace/category/utils.ts, marketplace/landing/OfferingsGroup.tsx",
"message": "All offerings"
},
"All orders have been approved.": {
"description": "navigation/header/confirmation-drawer/ApproveAllButton.tsx, navigation/header/confirmation-drawer/ConsumerApproveAll.tsx",
"message": "All orders have been approved."
},
"All orders have been rejected.": {
"description": "navigation/header/confirmation-drawer/ConsumerRejectAll.tsx, navigation/header/confirmation-drawer/RejectAllButton.tsx",
"message": "All orders have been rejected."
},
"All pages": {
"description": "table/ExportDialog.tsx",
"message": "All pages"
},
"All plans comes with": {
"description": "marketplace/offerings/details/PublicOfferingPricing.tsx",
"message": "All plans comes with"
},
"All ports": {
"description": "openstack/openstack-security-groups/rule-editor/PortRangeField.tsx",
"message": "All ports"
},
"All proposals": {
"description": "proposals/routes.ts",
"message": "All proposals"
},
"All resources have been imported.": {
"description": "marketplace/resources/import/useImportDialog.tsx",
"message": "All resources have been imported."
},
"All resources will be scheduled for termination once the date is reached.": {
"description": "marketplace/details/DetailsPage.tsx",
"message": "All resources will be scheduled for termination once the date is reached."
},
"All resources": {
"description": "marketplace/resources/list/AllResourcesList.tsx, navigation/sidebar/ResourcesMenu.tsx",
"message": "All resources"
},
"All results": {
"description": "navigation/header/search/SearchPopover.tsx",
"message": "All results"
},
"All reviews": {
"description": "proposals/routes.ts",
"message": "All reviews"
},
"All users": {
"description": "marketplace/resources/details/UsageCard.tsx",
"message": "All users"
},
"All": {
"description": "administration/organizations/OrganizationsFilter.tsx, customer/credits/CreditFormDialog.tsx, customer/list/AccountingRunningField.tsx, customer/list/ServiceProviderFilter.tsx, invitations/GroupInvitationsFilter.tsx, marketplace/offerings/update/attributes/utils.tsx, rancher/node/NodeRoleField.tsx",
"message": "All"
},
"Allocate credit ({currency})": {
"description": "customer/credits/CreditFormDialog.tsx, customer/credits/ProjectCreditFormDialog.tsx",
"message": "Allocate credit ({currency})"
},
"Allocated\nto projects": {
"description": "customer/dashboard/CreditStatusWidget.tsx",
"message": "Allocated\nto projects"
},
"Allocated credit": {
"description": "customer/credits/constants.tsx",
"message": "Allocated credit"
},
"Allocated offerings": {
"description": "proposals/round/RoundQuotas.tsx",
"message": "Allocated offerings"
},
"Allocated": {
"description": "customer/dashboard/CreditStatusWidget.tsx",
"message": "Allocated"
},
"Allocation date": {
"description": "proposals/round/allocation/RoundAllocationSection.tsx, proposals/update/rounds/RoundExpandableRow.tsx, proposals/update/rounds/WizardFormThirdPage.tsx",
"message": "Allocation date"
},
"Allocation name": {
"description": "slurm/deploy/steps.ts",
"message": "Allocation name"
},
"Allocation pools": {
"description": "openstack/openstack-subnet/OpenStackSubNetSummary.tsx",
"message": "Allocation pools"
},
"Allocation strategy in active round": {
"description": "proposals/details/CallDetailsFields.tsx",
"message": "Allocation strategy in active round"
},
"Allocation strategy": {
"description": "proposals/PublicCallExpandableRow.tsx, proposals/round/RoundUIView.tsx, proposals/round/allocation/RoundAllocationSection.tsx",
"message": "Allocation strategy"
},
"Allocation time": {
"description": "proposals/round/allocation/RoundAllocationSection.tsx, proposals/update/rounds/RoundExpandableRow.tsx, proposals/update/rounds/WizardFormThirdPage.tsx",
"message": "Allocation time"
},
"Allocation users": {
"description": "marketplace/resources/details/fetchData.tsx, slurm/details/AllocationUsersTable.tsx",
"message": "Allocation users"
},
"Allocation": {
"description": "proposals/round/allocation/EditRoundAllocationDialog.tsx, proposals/update/rounds/CallRoundCreateDialog.tsx",
"message": "Allocation"
},
"Allow anonymous users to see plans": {
"description": "SettingsDescription.ts",
"message": "Allow anonymous users to see plans"
},
"Allow anonymous users to see shared offerings in active, paused and archived states": {
"description": "SettingsDescription.ts",
"message": "Allow anonymous users to see shared offerings in active, paused and archived states"
},
"Allow bookings to be scheduled at weekends": {
"description": "booking/components/WeekendsGroup.tsx",
"message": "Allow bookings to be scheduled at weekends"
},
"Allow marketplace to function as a catalogue only.": {
"description": "features/FeaturesDescription.ts",
"message": "Allow marketplace to function as a catalogue only."
},
"Allow marketplace to serve only as aggregator of call info.": {
"description": "features/FeaturesDescription.ts",
"message": "Allow marketplace to serve only as aggregator of call info."
},
"Allow to enable/disable component only": {
"description": "marketplace/offerings/update/components/ComponentBooleanLimitField.tsx",
"message": "Allow to enable/disable component only"
},
"Allow to hide OpenStack volume type selector when instance or volume is provisioned.": {
"description": "features/FeaturesDescription.ts",
"message": "Allow to hide OpenStack volume type selector when instance or volume is provisioned."
},
"Allow to import resources from service provider to project.": {
"description": "features/FeaturesDescription.ts",
"message": "Allow to import resources from service provider to project."
},
"Allow to select mount point for data volume when Rancher cluster is provisioned.": {
"description": "features/FeaturesDescription.ts",
"message": "Allow to select mount point for data volume when Rancher cluster is provisioned."
},
"Allow to view and update resource end date.": {
"description": "SettingsDescription.ts",
"message": "Allow to view and update resource end date."
},
"Allowed address pairs update was scheduled.": {
"description": "openstack/openstack-instance/SetAllowedAddressPairsDialog.tsx",
"message": "Allowed address pairs update was scheduled."
},
"Allowed address pairs": {
"description": "openstack/openstack-tenant/ExpandablePortRow.tsx",
"message": "Allowed address pairs"
},
"Allowed file types": {
"description": "form/ImageField.tsx",
"message": "Allowed file types"
},
"Allows to hide domain field in organization detail.": {
"description": "features/FeaturesDescription.ts",
"message": "Allows to hide domain field in organization detail."
},
"Allows to show permission reviews tab and popups.": {
"description": "features/FeaturesDescription.ts",
"message": "Allows to show permission reviews tab and popups."
},
"Amount": {
"description": "customer/credits/CreditUsageDialog.tsx, marketplace/offerings/PriceList.tsx, marketplace/offerings/update/plans/QuotasTable.tsx, marketplace/resources/usage/ResourceUsageForm.tsx",
"message": "Amount"
},
"An error has occurred.": {
"description": "ErrorMessage.tsx",
"message": "An error has occurred."
},
"An error occurred on project removal.": {
"description": "project/useProjectDelete.tsx",
"message": "An error occurred on project removal."
},
"An error occurred while attaching documents. Please try again.": {
"description": "proposals/update/documents/AttachDocumentsDialog.tsx",
"message": "An error occurred while attaching documents. Please try again."
},
"An error occurred while removing documents. Please try again.": {
"description": "proposals/update/documents/RemoveDocumentButton.tsx",
"message": "An error occurred while removing documents. Please try again."
},
"An error occurred.": {
"description": "ErrorView.tsx",
"message": "An error occurred."
},
"Animal and dairy science": {
"description": "project/OECD_FOS_2007_CODES.ts",
"message": "Animal and dairy science"
},
"Annotations": {
"description": "rancher/node/RancherNodeSummary.tsx",
"message": "Annotations"
},
"Announcement": {
"description": "administration/announcements/AnnouncementForm.tsx",
"message": "Announcement"
},
"Announcements": {
"description": "administration/routes.ts",
"message": "Announcements"
},
"Annual cost": {
"description": "marketplace/details/plan/PlanDetailsTable2.tsx",
"message": "Annual cost"
},
"Annual limit: {limit} {unit}": {
"description": "marketplace/details/plan/UsageComponentRow.tsx",
"message": "Annual limit: {limit} {unit}"
},
"Annual": {
"description": "marketplace/details/plan/PlanDetailsTable2.tsx",
"message": "Annual"
},
"Anonymized": {
"description": "marketplace/UserPluginOptionsForm.tsx",
"message": "Anonymized"
},
"Answer": {
"description": "marketplace-checklist/AnswersTable.tsx, rancher/cluster/apps/ApplicationDetailsDialog.tsx",
"message": "Answer"
},
"Answers have been submitted": {
"description": "marketplace-checklist/useChecklist.tsx",
"message": "Answers have been submitted"
},
"Answers": {
"description": "rancher/cluster/apps/ApplicationDetailsDialog.tsx",
"message": "Answers"
},
"Any": {
"description": "openstack/openstack-security-groups/rule-editor/ProtocolField.tsx, openstack/openstack-security-groups/utils.ts",
"message": "Any"
},
"Application configuration": {
"description": "rancher/template/ApplicationConfiguration.tsx",
"message": "Application configuration"
},
"Application details": {
"description": "rancher/cluster/apps/ApplicationDetailsDialog.tsx",
"message": "Application details"
},
"Application has been created.": {
"description": "rancher/template/TemplateDetail.tsx",
"message": "Application has been created."
},
"Application progress": {
"description": "proposals/proposal/create/ProposalRejectionStep.tsx",
"message": "Application progress"
},
"Application secret key.": {
"description": "administration/providers/ProviderForm.tsx",
"message": "Application secret key."
},
"Application templates": {
"description": "rancher/cluster/tabs.ts, rancher/template/CatalogTemplateContainer.tsx",
"message": "Application templates"
},
"Applications": {
"description": "rancher/cluster/tabs.ts",
"message": "Applications"
},
"Apply as minimal consumption": {
"description": "customer/credits/constants.tsx",
"message": "Apply as minimal consumption"
},
"Apply filters to table data": {
"description": "table/useTable.ts",
"message": "Apply filters to table data"
},
"Apply table filters": {
"description": "table/ExportDialog.tsx",
"message": "Apply table filters"
},
"Apply to round": {
"description": "proposals/details/PublicCallApplyButton.tsx",
"message": "Apply to round"
},
"Apply": {
"description": "marketplace/landing/MarketplaceLandingFilter.tsx, navigation/sidebar/resources-filter/FilterByOrgAndProjectDialog.tsx, proposals/AvailableOfferingCard.tsx, proposals/CallCard.tsx, proposals/PublicCallsList.tsx, table/TableFilterActions.tsx, table/TableFilterItem.tsx",
"message": "Apply"
},
"Approvals": {
"description": "marketplace/orders/details/OrderDetails.tsx, marketplace/orders/details/OrderDetailsApprovalsTab.tsx",
"message": "Approvals"
},
"Approve all": {
"description": "navigation/header/confirmation-drawer/ApproveAllButton.tsx, navigation/header/confirmation-drawer/ConsumerApproveAll.tsx",
"message": "Approve all"
},
"Approve order": {
"description": "administration/roles/PermissionOptions.tsx",
"message": "Approve order"
},
"Approve permission request by {name}": {
"description": "invitations/UserPermissionRequestApproveButton.tsx",
"message": "Approve permission request by {name}"
},
"Approve private order": {
"description": "administration/roles/PermissionOptions.tsx",
"message": "Approve private order"
},
"Approve": {
"description": "invitations/UserPermissionRequestApproveButton.tsx, marketplace/orders/actions/ApproveByConsumerButton.tsx, marketplace/orders/actions/ApproveByProviderButton.tsx, marketplace-remote/ReviewApproveAction.tsx",
"message": "Approve"
},
"Approved at": {
"description": "marketplace/orders/list/OrdersTableComponent.tsx",
"message": "Approved at"
},
"Approved by": {
"description": "marketplace/orders/list/OrdersTableComponent.tsx, proposals/update/offerings/CallOfferingsSection.tsx",
"message": "Approved by"
},
"Approved": {
"description": "marketplace/resources/resource-pending/OrderErredView.tsx, marketplace/resources/resource-pending/OrderInProgressView.tsx, marketplace-remote/RequestStateFilter.tsx, user/UserPermissionRequestsStateFilter.tsx",
"message": "Approved"
},
"Apps": {
"description": "openstack/openstack-instance/deploy/FormImageStep.tsx, rancher/cluster/tabs.ts, vmware/deploy/FormTemplateStep.tsx",
"message": "Apps"
},
"Archive offering plan": {
"description": "administration/roles/PermissionOptions.tsx",
"message": "Archive offering plan"
},
"Archive offering": {
"description": "administration/roles/PermissionOptions.tsx",
"message": "Archive offering"
},
"Archive": {
"description": "marketplace/offerings/actions/OfferingStateActions.tsx, marketplace/offerings/update/plans/ArchivePlanButton.tsx, proposals/proposal/create/ProposalRejectionStep.tsx, proposals/update/CallActions.tsx, proposals/utils.ts",
"message": "Archive"
},
"Archived": {
"description": "marketplace/offerings/details/PublicOfferingDetails.tsx, marketplace/offerings/list/OfferingStateCell.tsx, marketplace/offerings/list/OfferingStateFilter.tsx, marketplace/offerings/update/plans/PlansSection.tsx, proposals/utils.ts",
"message": "Archived"
},
"Are you sure you want to accept the {name} offering request?": {
"description": "proposals/offering-requests/OfferingRequestItemActions.tsx",
"message": "Are you sure you want to accept the {name} offering request?"
},
"Are you sure you want to activate {name}?": {
"description": "user/support/UserStatus.tsx",
"message": "Are you sure you want to activate {name}?"
},
"Are you sure you want to allow this organization to manage calls?": {
"description": "customer/details/CustomerCallManagerPanel.tsx",
"message": "Are you sure you want to allow this organization to manage calls?"
},
"Are you sure you want to approve the proposal: {name}?": {
"description": "proposals/proposal/ProposalRowActions.tsx",
"message": "Are you sure you want to approve the proposal: {name}?"
},
"Are you sure you want to archive plan {name}?": {
"description": "marketplace/offerings/update/plans/ArchivePlanButton.tsx",
"message": "Are you sure you want to archive plan {name}?"
},
"Are you sure you want to cancel invitation by {name}?": {
"description": "invitations/GroupInvitationCancelButton.tsx",
"message": "Are you sure you want to cancel invitation by {name}?"
},
"Are you sure you want to deactivate {name}?": {
"description": "user/support/UserStatus.tsx",
"message": "Are you sure you want to deactivate {name}?"
},
"Are you sure you want to delete a {name} {resourceType} in an Erred state? A cleanup attempt will be performed if you choose so. ": {
"description": "resource/actions/DestroyActionItem.tsx",
"message": "Are you sure you want to delete a {name} {resourceType} in an Erred state? A cleanup attempt will be performed if you choose so. "
},
"Are you sure you want to delete a {name} {resourceType}? ": {
"description": "resource/actions/DestroyActionItem.tsx",
"message": "Are you sure you want to delete a {name} {resourceType}? "
},
"Are you sure you want to delete component {name}?": {
"description": "marketplace/offerings/update/components/DeleteComponentButton.tsx",
"message": "Are you sure you want to delete component {name}?"
},
"Are you sure you want to delete endpoint {name}?": {
"description": "marketplace/offerings/update/endpoints/DeleteEndpointButton.tsx",
"message": "Are you sure you want to delete endpoint {name}?"
},
"Are you sure you want to delete offering user {username}?": {
"description": "marketplace/service-providers/ProviderOfferingUserDeleteButton.tsx",
"message": "Are you sure you want to delete offering user {username}?"
},
"Are you sure you want to delete option {name}?": {
"description": "marketplace/offerings/update/options/DeleteOptionButton.tsx",
"message": "Are you sure you want to delete option {name}?"
},
"Are you sure you want to delete role {name}?": {
"description": "marketplace/offerings/update/roles/DeleteRoleButton.tsx",
"message": "Are you sure you want to delete role {name}?"
},
"Are you sure you want to delete the LEXIS link of {resource_name}?": {
"description": "marketplace/resources/lexis/LexisLinkDeleteButton.tsx",
"message": "Are you sure you want to delete the LEXIS link of {resource_name}?"
},
"Are you sure you want to delete the announcement?": {
"description": "administration/announcements/AnnouncementDeleteAction.tsx",
"message": "Are you sure you want to delete the announcement?"
},
"Are you sure you want to delete the cost policy for organization {name}?": {
"description": "customer/cost-policies/CostPolicyDeleteButton.tsx",
"message": "Are you sure you want to delete the cost policy for organization {name}?"
},
"Are you sure you want to delete the cost policy for project {name}?": {
"description": "customer/cost-policies/CostPolicyDeleteButton.tsx",
"message": "Are you sure you want to delete the cost policy for project {name}?"
},
"Are you sure you want to delete the credit for {project} in {organization}? This will release the allocated credits back to the organization.": {
"description": "customer/credits/ProjectDeleteCreditButton.tsx",
"message": "Are you sure you want to delete the credit for {project} in {organization}? This will release the allocated credits back to the organization."