forked from project-koku/koku-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessages.ts
3768 lines (3767 loc) · 145 KB
/
messages.ts
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
/* eslint-disable max-len */
import { defineMessages } from 'react-intl';
export default defineMessages({
addProjects: {
defaultMessage: 'Add projects',
description: 'Add projects',
id: 'addProjects',
},
allOtherProjectCosts: {
defaultMessage: 'Project (All other costs)',
description: 'Project (All other costs)',
id: 'allOtherProjectCosts',
},
assignCostModel: {
defaultMessage: 'Assign cost model',
description: 'Assign cost model',
id: 'assignCostModel',
},
aws: {
defaultMessage: 'Amazon Web Services',
description: 'Amazon Web Services',
id: 'aws',
},
awsComputeTitle: {
defaultMessage: 'Compute (EC2) instances usage',
description: 'Compute (EC2) instances usage',
id: 'awsComputeTitle',
},
awsCostTrendTitle: {
defaultMessage: 'Amazon Web Services cumulative cost comparison ({units})',
description: 'Amazon Web Services cumulative cost comparison ({units})',
id: 'awsCostTrendTitle',
},
awsDailyCostTrendTitle: {
defaultMessage: 'Amazon Web Services daily cost comparison ({units})',
description: 'Amazon Web Services daily cost comparison ({units})',
id: 'awsDailyCostTrendTitle',
},
awsDashboardCostTitle: {
defaultMessage: 'Amazon Web Services cost',
description: 'Amazon Web Services cost',
id: 'awsDashboardCostTitle',
},
awsDesc: {
defaultMessage: 'Raw cost from Amazon Web Services infrastructure.',
description: 'Raw cost from Amazon Web Services infrastructure.',
id: 'awsDesc',
},
awsDetailsTitle: {
defaultMessage: 'Amazon Web Services Details',
description: 'Amazon Web Services Details',
id: 'awsDetailsTitle',
},
awsOcpDashboardCostTitle: {
defaultMessage: 'Amazon Web Services filtered by OpenShift cost',
description: 'Amazon Web Services filtered by OpenShift cost',
id: 'awsOcpDashboardCostTitle',
},
azure: {
defaultMessage: 'Microsoft Azure',
description: 'Microsoft Azure',
id: 'azure',
},
azureComputeTitle: {
defaultMessage: 'Virtual machines usage',
description: 'Virtual machines usage',
id: 'azureComputeTitle',
},
azureCostTrendTitle: {
defaultMessage: 'Microsoft Azure cumulative cost comparison ({units})',
description: 'Microsoft Azure cumulative cost comparison ({units})',
id: 'azureCostTrendTitle',
},
azureDailyCostTrendTitle: {
defaultMessage: 'Microsoft Azure daily cost comparison ({units})',
description: 'Microsoft Azure daily cost comparison ({units})',
id: 'azureDailyCostTrendTitle',
},
azureDashboardCostTitle: {
defaultMessage: 'Microsoft Azure cost',
description: 'Microsoft Azure cost',
id: 'azureDashboardCostTitle',
},
azureDesc: {
defaultMessage: 'Raw cost from Azure infrastructure.',
description: 'Raw cost from Azure infrastructure.',
id: 'azureDesc',
},
azureDetailsTitle: {
defaultMessage: 'Microsoft Azure Details',
description: 'Microsoft Azure Details',
id: 'azureDetailsTitle',
},
azureOcpDashboardCostTitle: {
defaultMessage: 'Microsoft Azure filtered by OpenShift cost',
description: 'Microsoft Azure filtered by OpenShift cost',
id: 'azureOcpDashboardCostTitle',
},
back: {
defaultMessage: 'Back',
description: 'Back',
id: 'back',
},
breakdownBackToDetails: {
defaultMessage:
'{groupBy, select, ' +
'account {Back to {value} account details} ' +
'aws_category {Back to {value} cost category details} ' +
'cluster {Back to {value} cluster details} ' +
'gcp_project {Back to {value} GCP project details} ' +
'node {Back to {value} node details} ' +
'org_unit_id {Back to {value} organizational unit details} ' +
'payer_tenant_id {Back to {value} account details} ' +
'product_service {Back to {value} service details} ' +
'project {Back to {value} project details} ' +
'region {Back to {value} region details} ' +
'resource_location {Back to {value} region details} ' +
'service {Back to {value} service details} ' +
'service_name {Back to {value} service details} ' +
'subscription_guid {Back to {value} account details} ' +
'tag {Back to {value} tag details} ' +
'other {}}',
description: 'Back to {value} {groupBy} details',
id: 'breakdownBackToDetails',
},
breakdownBackToDetailsAriaLabel: {
defaultMessage: 'Back to details',
description: 'Back to details',
id: 'breakdownBackToDetailsAriaLabel',
},
breakdownBackToOptimizations: {
defaultMessage: 'Back to optimizations',
description: 'Back to optimizations',
id: 'breakdownBackToOptimizations',
},
breakdownBackToOptimizationsProject: {
defaultMessage: 'Back to optimizations for project {value}',
description: 'Back to optimizations for project {value}',
id: 'breakdownBackToOptimizationsProject',
},
breakdownBackToTitles: {
defaultMessage:
'{value, select, ' +
'aws {Amazon Web Services} ' +
'azure {Microsoft Azure} ' +
'oci {Oracle Cloud Infrastructure} ' +
'gcp {Google Cloud Platform} ' +
'ibm {IBM Cloud - Top 5 Costliest} ' +
'ocp {OpenShift} ' +
'other {}}',
description: 'Breakdown back to page titles',
id: 'breakdownBackToTitles',
},
breakdownCostOverviewTitle: {
defaultMessage: 'Cost overview',
description: 'Cost overview',
id: 'breakdownCostOverviewTitle',
},
breakdownHistoricalDataTitle: {
defaultMessage: 'Historical data',
description: 'Historical data',
id: 'breakdownHistoricalDataTitle',
},
breakdownSummaryTitle: {
defaultMessage:
'{value, select, ' +
'account {Cost by accounts} ' +
'aws_category {Cost by category} ' +
'cluster {Cost by clusters} ' +
'gcp_project {Cost by GCP projects} ' +
'node {Cost by Node} ' +
'org_unit_id {Cost by organizational units} ' +
'payer_tenant_id {Cost by accounts} ' +
'platform {Cost by default projects} ' +
'product_service {Cost by services} ' +
'project {Cost by projects} ' +
'region {Cost by regions} ' +
'resource_location {Cost by regions} ' +
'service {Cost by services} ' +
'service_name {Cost by services} ' +
'subscription_guid {Cost by accounts} ' +
'tag {Cost by tags} ' +
'other {}}',
description: 'Cost by {value}',
id: 'breakdownSummaryTitle',
},
breakdownTitle: {
defaultMessage: '{value}',
description: 'Breakdown title',
id: 'breakdownTitle',
},
breakdownTotalCostDate: {
defaultMessage: '{value} total cost ({dateRange})',
description: '{value} total cost (January 1-31)',
id: 'breakdownTotalCostDate',
},
calculationType: {
defaultMessage: 'Calculation type',
description: 'Calculation type',
id: 'calculationType',
},
cancel: {
defaultMessage: 'Cancel',
description: 'Cancel',
id: 'cancel',
},
chartCostForecastConeLegendLabel: {
defaultMessage: 'Cost confidence ({dateRange})',
description: 'Cost confidence (Jan 1-31)',
id: 'chartCostForecastConeLegendLabel',
},
chartCostForecastConeLegendNoDataLabel: {
defaultMessage: 'Cost confidence (no data)',
description: 'Cost confidence (no data)',
id: 'chartCostForecastConeLegendNoDataLabel',
},
chartCostForecastConeLegendTooltip: {
defaultMessage: 'Cost confidence ({month})',
description: 'Cost confidence (Jan)',
id: 'chartCostForecastConeLegendTooltip',
},
chartCostForecastConeTooltip: {
defaultMessage: '{value0} - {value1}',
description: 'Cost forecast confidence min/max tooltip',
id: 'chartCostForecastConeTooltip',
},
chartCostForecastLegendLabel: {
defaultMessage: 'Cost forecast ({dateRange})',
description: 'Cost forecast (Jan 1-31)',
id: 'chartCostForecastLegendLabel',
},
chartCostForecastLegendNoDataLabel: {
defaultMessage: 'Cost forecast (no data)',
description: 'Cost forecast (no data)',
id: 'chartCostForecastLegendNoDataLabel',
},
chartCostForecastLegendTooltip: {
defaultMessage: 'Cost forecast ({month})',
description: 'Cost forecast (Jan 1-31)',
id: 'chartCostForecastLegendTooltip',
},
chartCostLegendLabel: {
defaultMessage: 'Cost ({dateRange})',
description: 'Cost (Jan 1-31)',
id: 'chartCostLegendLabel',
},
chartCostLegendNoDataLabel: {
defaultMessage: 'Cost (no data)',
description: 'Cost (no data)',
id: 'chartCostLegendNoDataLabel',
},
chartCostLegendTooltip: {
defaultMessage: 'Cost ({month})',
description: 'Cost (Jan)',
id: 'chartCostLegendTooltip',
},
chartCostSupplementaryLegendLabel: {
defaultMessage: 'Supplementary cost ({dateRange})',
description: 'Supplementary cost (Jan 1-31)',
id: 'chartCostSupplementaryLegendLabel',
},
chartCostSupplementaryLegendNoDataLabel: {
defaultMessage: 'Supplementary cost (no data)',
description: 'Supplementary cost (no data)',
id: 'chartCostSupplementaryLegendNoDataLabel',
},
chartCostSupplementaryLegendTooltip: {
defaultMessage: 'Supplementary cost ({month})',
description: 'Supplementary cost (Jan)',
id: 'chartCostSupplementaryLegendTooltip',
},
chartDayOfTheMonth: {
defaultMessage: 'Day {day}',
description: 'The day of the month',
id: 'chartDayOfTheMonth',
},
chartLimitLegendLabel: {
defaultMessage: 'Limit ({dateRange})',
description: 'Limit (Jan 1-31)',
id: 'chartLimitLegendLabel',
},
chartLimitLegendNoDataLabel: {
defaultMessage: 'Limit (no data)',
description: 'Limit (no data)',
id: 'chartLimitLegendNoDataLabel',
},
chartLimitLegendTooltip: {
defaultMessage: 'Limit ({month})',
description: 'Limit (Jan)',
id: 'chartLimitLegendTooltip',
},
chartNoData: {
defaultMessage: 'no data',
description: 'no data',
id: 'chartNoData',
},
chartOthers: {
defaultMessage: '{count, plural, one {{count} Other} other {{count} Others}}',
description: 'Others category for top costliest',
id: 'chartOthers',
},
chartRequestsLegendLabel: {
defaultMessage: 'Requests ({dateRange})',
description: 'Requests (Jan 1-31)',
id: 'chartRequestsLegendLabel',
},
chartRequestsLegendNoDataLabel: {
defaultMessage: 'Requests (no data)',
description: 'Requests (no data)',
id: 'chartRequestsLegendNoDataLabel',
},
chartRequestsLegendTooltip: {
defaultMessage: 'Requests ({month})',
description: 'Requests (Jan)',
id: 'chartRequestsLegendTooltip',
},
chartUsageLegendLabel: {
defaultMessage: 'Usage ({dateRange})',
description: 'Usage (Jan 1-31)',
id: 'chartUsageLegendLabel',
},
chartUsageLegendNoDataLabel: {
defaultMessage: 'Usage (no data)',
description: 'Usage (no data)',
id: 'chartUsageLegendNoDataLabel',
},
chartUsageLegendTooltip: {
defaultMessage: 'Usage ({month})',
description: 'Usage (Jan)',
id: 'chartUsageLegendTooltip',
},
chooseKeyPlaceholder: {
defaultMessage: 'Choose key',
description: 'Choose key',
id: 'chooseKeyPlaceholder',
},
chooseValuePlaceholder: {
defaultMessage: 'Choose value',
description: 'Choose value',
id: 'chooseValuePlaceholder',
},
close: {
defaultMessage: 'Close',
description: 'Close',
id: 'close',
},
cloudIntegration: {
defaultMessage: 'Cloud integration',
description: 'Cloud integration',
id: 'cloudIntegration',
},
cluster: {
defaultMessage: 'Cluster',
description: 'Cluster',
id: 'cluster',
},
clusterId: {
defaultMessage: 'Cluster id',
description: 'Cluster id',
id: 'clusterId',
},
clusterInfo: {
defaultMessage: 'Cluster information',
description: 'Cluster information',
id: 'clusterInfo',
},
clusters: {
defaultMessage: 'Clusters',
description: 'Clusters',
id: 'clusters',
},
cost: {
defaultMessage: 'Cost',
description: 'Cost',
id: 'cost',
},
costBreakdownAriaDesc: {
defaultMessage: 'Breakdown of markup, raw, and usage costs',
description: 'Breakdown of markup, raw, and usage costs',
id: 'costBreakdownAriaDesc',
},
costBreakdownAriaLabel: {
defaultMessage: 'A description of markup, raw cost and usage cost',
description: 'A description of markup, raw cost and usage cost',
id: 'costBreakdownAriaLabel',
},
costBreakdownTitle: {
defaultMessage: 'Cost breakdown',
description: 'A description of markup, raw cost and usage cost',
id: 'costBreakdownTitle',
},
costBreakdownTooltip: {
defaultMessage: '{name}: {value}',
description: '{name}: {value}',
id: 'costBreakdownTooltip',
},
costCalculations: {
defaultMessage: 'Cost calculations',
description: 'Cost calculations',
id: 'costCalculations',
},
costCalculationsOptional: {
defaultMessage: 'Cost calculations (optional)',
description: 'Cost calculations (optional)',
id: 'costCalculationsOptional',
},
costCategoryDesc: {
defaultMessage:
'Enable your AWS cost categories to be used for report grouping and filtering. Changes will be reflected within 24 hours. {learnMore}',
description:
'Enable your AWS cost categories to be used for report grouping and filtering. Changes will be reflected within 24 hours. {learnMore}',
id: 'costCategoryDesc',
},
costCategoryNames: {
defaultMessage: 'Cost category names',
description: 'Cost category names',
id: 'costCategoryNames',
},
costCategoryTitle: {
defaultMessage: 'Cost categories',
description: 'Cost categories',
id: 'costCategoryTitle',
},
costDistribution: {
defaultMessage: 'Cost distribution',
description: 'Cost distribution',
id: 'costDistribution',
},
costDistributionAriaDesc: {
defaultMessage: 'Overhead cost breakdown of platform, worker unallocated, and total costs',
description: 'Overhead cost breakdown of platform, worker unallocated, and total costs',
id: 'costDistributionAriaDesc',
},
costDistributionAriaLabel: {
defaultMessage: 'A description of platform, worker unallocated, and total costs',
description: 'A description of platform, worker unallocated, and total costs',
id: 'costDistributionAriaLabel',
},
costDistributionLabel: {
defaultMessage: 'Overhead cost',
description: 'Overhead cost',
id: 'costDistributionLabel',
},
costDistributionTitle: {
defaultMessage: 'Overhead cost breakdown',
description: 'Overhead cost breakdown',
id: 'costDistributionTitle',
},
costDistributionType: {
defaultMessage:
'{value, select, ' +
'distributed {Distribute through cost models} ' +
"total {Don't distribute overhead costs} " +
'other {}}',
description: 'Cost distribution type',
id: 'costDistributionType',
},
costManagement: {
defaultMessage: 'Cost Management',
description: 'Cost Management',
id: 'costManagement',
},
costModel: {
defaultMessage: 'Cost Model:',
description: 'Cost Model:',
id: 'costModel',
},
costModels: {
defaultMessage: 'Cost Models',
description: 'Cost Models',
id: 'costModels',
},
costModelsActions: {
defaultMessage: 'Cost model actions',
description: 'Cost models',
id: 'costModelsActions',
},
costModelsAddTagValues: {
defaultMessage: 'Add more tag values',
description: 'Add more tag values',
id: 'costModelsAddTagValues',
},
costModelsAssignSources: {
defaultMessage: '{count, plural, one {Assign integration} other {Assign integrations}}',
description: 'Assign integrations -- plural or singular',
id: 'costModelsAssignSources',
},
costModelsAssignSourcesErrorDesc: {
defaultMessage:
'You cannot assign a integration at this time. Try refreshing this page. If the problem persists, contact your organization administrator or visit our {url} for known outages.',
description: 'You cannot assign a integration at this time',
id: 'costModelsAssignSourcesErrorDesc',
},
costModelsAssignSourcesErrorTitle: {
defaultMessage: 'This action is temporarily unavailable',
description: 'This action is temporarily unavailable',
id: 'costModelsAssignSourcesErrorTitle',
},
costModelsAssignSourcesParen: {
defaultMessage: 'Assign integrations',
description: 'Assign integrations',
id: 'costModelsAssignSourcesParen',
},
costModelsAssignedSources: {
defaultMessage: 'Assigned integrations',
description: 'Assigned integrationss',
id: 'costModelsAssignedSources',
},
costModelsAvailableSources: {
defaultMessage: 'The following integrations are assigned to my production cost model:',
description: 'The following integrations are assigned to my production cost model:',
id: 'costModelsAvailableSources',
},
costModelsCanDelete: {
defaultMessage: 'This action will delete {name} cost model from the system. This action cannot be undone',
description: 'This action will delete {name} cost model from the system. This action cannot be undone',
id: 'costModelsCanDelete',
},
costModelsCanNotDelete: {
defaultMessage: 'The following integrations are assigned to {name} cost model:',
description: 'The following integrations are assigned to {name} cost model:',
id: 'costModelsCanNotDelete',
},
costModelsDelete: {
defaultMessage: 'Delete cost model',
description: 'Delete cost model',
id: 'costModelsDelete',
},
costModelsDeleteDesc: {
defaultMessage: 'This action will delete {costModel} cost model from the system. This action cannot be undone.',
description: 'This action will delete {costModel} cost model from the system. This action cannot be undone.',
id: 'costModelsDeleteDesc',
},
costModelsDeleteSource: {
defaultMessage: 'You must unassign any integrations before you can delete this cost model.',
description: 'You must unassign any integrations before you can delete this cost model.',
id: 'costModelsDeleteSource',
},
costModelsDesc: {
defaultMessage:
'Cost models can help you analyze and predict future costs. Associate a price to metrics provided by your integrations to calculate your charges for resource usage. {learnMore}',
description:
'Cost models can help you analyze and predict future costs. Associate a price to metrics provided by your integrations to calculate your charges for resource usage. {learnMore}',
id: 'costModelsDesc',
},
costModelsDescTooLong: {
defaultMessage: 'Should not exceed 500 characters',
description: 'Should not exceed 500 characters',
id: 'costModelsDescTooLong',
},
costModelsDetailsTitle: {
defaultMessage: 'Cost Model Details',
description: 'Cost Model Details',
id: 'costModelsDetailsTitle',
},
costModelsDistributionDesc: {
defaultMessage:
'The following is the type of metric that is set to be used when distributing costs to the project level breakdowns.',
description:
'The following is the type of metric that is set to be used when distributing costs to the project level breakdowns.',
id: 'costModelsDistributionDesc',
},
costModelsDistributionEdit: {
defaultMessage: 'Edit distribution',
description: 'Edit distribution',
id: 'costModelsDistributionEdit',
},
costModelsEmptyState: {
defaultMessage: 'What is your hybrid cloud costing you?',
description: 'What is your hybrid cloud costing you?',
id: 'costModelsEmptyState',
},
costModelsEmptyStateDesc: {
defaultMessage:
'Create a cost model to start calculating your hybrid cloud costs using custom price lists, markups, or both. Click on the button below to begin the journey.',
description:
'Create a cost model to start calculating your hybrid cloud costs using custom price lists, markups, or both. Click on the button below to begin the journey.',
id: 'costModelsEmptyStateDesc',
},
costModelsEmptyStateLearnMore: {
defaultMessage: 'Read about setting up a cost model',
description: 'Read about setting up a cost model',
id: 'costModelsEmptyStateLearnMore',
},
costModelsEnterTagDesc: {
defaultMessage: 'Enter a tag description',
description: 'Enter a tag description',
id: 'costModelsEnterTagDesc',
},
costModelsEnterTagKey: {
defaultMessage: 'Enter a tag key',
description: 'Enter a tag key',
id: 'costModelsEnterTagKey',
},
costModelsEnterTagRate: {
defaultMessage: 'Enter rate by tag',
description: 'Enter rate by tag',
id: 'costModelsEnterTagRate',
},
costModelsEnterTagValue: {
defaultMessage: 'Enter a tag value',
description: 'Enter a tag value',
id: 'costModelsEnterTagValue',
},
costModelsExamplesDoubleMarkup: {
defaultMessage: 'A markup rate of (+) 100% doubles the base costs of your integrations.',
description: 'A markup rate of (+) 100% doubles the base costs of your integrations.',
id: 'costModelsExamplesDoubleMarkup',
},
costModelsExamplesNoAdjust: {
defaultMessage:
'A markup or discount rate of (+/-) 0% (the default) makes no adjustments to the base costs of your integrations.',
description:
'A markup or discount rate of (+/-) 0% (the default) makes no adjustments to the base costs of your integrations.',
id: 'costModelsExamplesNoAdjust',
},
costModelsExamplesReduceSeventyfive: {
defaultMessage:
'A discount rate of (-) 25% reduces the base costs of your integrations to 75% of the original value.',
description: 'A discount rate of (-) 25% reduces the base costs of your integrations to 75% of the original value.',
id: 'costModelsExamplesReduceSeventyfive',
},
costModelsExamplesReduceZero: {
defaultMessage: 'A discount rate of (-) 100% reduces the base costs of your integrations to 0.',
description: 'A discount rate of (-) 100% reduces the base costs of your integrations to 0.',
id: 'costModelsExamplesReduceZero',
},
costModelsFilterPlaceholder: {
defaultMessage: 'Filter by name...',
description: 'Filter by name',
id: 'costModelsFilterPlaceholder',
},
costModelsFilterTagKey: {
defaultMessage: 'Filter by tag key',
description: 'Filter by tag key',
id: 'costModelsFilterTagKey',
},
costModelsInfoTooLong: {
defaultMessage: 'Should not exceed 100 characters',
description: 'Should not exceed 100 characters',
id: 'costModelsInfoTooLong',
},
costModelsLastUpdated: {
defaultMessage: 'Last updated',
description: 'Last updated',
id: 'costModelsLastUpdated',
},
costModelsRateTooLong: {
defaultMessage: 'Should not exceed 10 decimals',
description: 'Should not exceed 10 decimals',
id: 'costModelsRateTooLong',
},
costModelsRefreshDialog: {
defaultMessage: 'Refresh this dialog',
description: 'Refresh this dialog',
id: 'costModelsRefreshDialog',
},
costModelsRemoveTagLabel: {
defaultMessage: 'Remove tag value',
description: 'Remove tag value',
id: 'costModelsRemoveTagLabel',
},
costModelsRequiredField: {
defaultMessage: 'This field is required',
description: 'This field is required',
id: 'costModelsRequiredField',
},
costModelsRouterErrorTitle: {
defaultMessage: 'Fail routing to cost model',
description: 'Cost models router error title',
id: 'costModelsRouterErrorTitle',
},
costModelsRouterServerError: {
defaultMessage: 'Server error: could not get the cost model.',
description: 'Server error: could not get the cost model.',
id: 'costModelsRouterServerError',
},
costModelsSelectMeasurement: {
defaultMessage: 'Select Measurement',
description: 'Select Measurement',
id: 'costModelsSelectMeasurement',
},
costModelsSelectMetric: {
defaultMessage: 'Select Metric',
description: 'Select Metric',
id: 'costModelsSelectMetric',
},
costModelsSourceDelete: {
defaultMessage: 'Unassign',
description: 'Unassign',
id: 'costModelsSourceDelete',
},
costModelsSourceDeleteSource: {
defaultMessage: 'Unassign integration',
description: 'Unassign integration',
id: 'costModelsSourceDeleteSource',
},
costModelsSourceDeleteSourceDesc: {
defaultMessage:
'This will remove the assignment of {source} from the {costModel} cost model. You can then assign the cost model to a new integration.',
description:
'This will remove the assignment of {source} from the {costModel} cost model. You can then assign the cost model to a new integration.',
id: 'costModelsSourceDeleteSourceDesc',
},
costModelsSourceEmptyStateDesc: {
defaultMessage: 'Select the integrations you want to apply this cost model to.',
description: 'Select the integrations you want to apply this cost model to.',
id: 'costModelsSourceEmptyStateDesc',
},
costModelsSourceEmptyStateTitle: {
defaultMessage: 'No integrations are assigned',
description: 'No integrations are assigned',
id: 'costModelsSourceEmptyStateTitle',
},
costModelsSourceTableAriaLabel: {
defaultMessage: 'Integrations table',
description: 'Integrations table',
id: 'costModelsSourceTableAriaLabel',
},
costModelsTableAriaLabel: {
defaultMessage: 'Cost models table',
description: 'Cost models table',
id: 'costModelsTableAriaLabel',
},
costModelsTagRateTableKey: {
defaultMessage: 'Tag key',
description: 'Tag key',
id: 'costModelsTagRateTableKey',
},
costModelsTagRateTableValue: {
defaultMessage: 'Tag value',
description: 'Tag value',
id: 'costModelsTagRateTableValue',
},
costModelsUUIDEmptyState: {
defaultMessage: 'Cost model can not be found',
description: 'Cost model can not be found',
id: 'costModelsUUIDEmptyState',
},
costModelsUUIDEmptyStateDesc: {
defaultMessage: 'Cost model with uuid: {uuid} does not exist.',
description: 'Cost model with uuid: {uuid} does not exist.',
id: 'costModelsUUIDEmptyStateDesc',
},
costModelsWizardCreateCostModel: {
defaultMessage: 'Create cost model',
description: 'Create cost model',
id: 'costModelsWizardCreateCostModel',
},
costModelsWizardCreatePriceList: {
defaultMessage: 'Create a price list',
description: 'Create a price list',
id: 'costModelsWizardCreatePriceList',
},
costModelsWizardCurrencyToggleLabel: {
defaultMessage: 'Select currency',
description: 'Select currency',
id: 'costModelsWizardCurrencyToggleLabel',
},
costModelsWizardEmptySourceTypeLabel: {
defaultMessage: 'Select integration',
description: 'Select integration',
id: 'costModelsWizardEmptySourceTypeLabel',
},
costModelsWizardEmptyStateOtherTime: {
defaultMessage: 'You can create a price list or modify one at a later time.',
description: 'You can create a price list or modify one at a later time.',
id: 'costModelsWizardEmptyStateOtherTime',
},
costModelsWizardEmptyStateSkipStep: {
defaultMessage: 'To skip this step, click the {value} button.',
description: 'To skip this step, click the {next} button.',
id: 'costModelsWizardEmptyStateSkipStep',
},
costModelsWizardEmptyStateTitle: {
defaultMessage: 'A price list has not been created.',
description: 'A price list has not been created.',
id: 'costModelsWizardEmptyStateTitle',
},
costModelsWizardGeneralInfoTitle: {
defaultMessage: 'Enter general information',
description: 'Enter general information',
id: 'costModelsWizardGeneralInfoTitle',
},
costModelsWizardNoRatesAdded: {
defaultMessage: 'No rates were added to the price list',
description: 'No rates were added to the price list',
id: 'costModelsWizardNoRatesAdded',
},
costModelsWizardOnboardAws: {
defaultMessage: 'Amazon Web Services (AWS)',
description: 'Amazon Web Services (AWS)',
id: 'costModelsWizardOnboardAws',
},
costModelsWizardOnboardOcp: {
defaultMessage: 'Red Hat OpenShift Container Platform',
description: 'Red Hat OpenShift Container Platform',
id: 'costModelsWizardOnboardOcp',
},
costModelsWizardPriceListMetric: {
defaultMessage:
'Select the metric you want to assign a price to, and specify a measurement unit and rate. You can optionally set multiple rates for particular tags.',
description:
'Select the metric you want to assign a price to, and specify a measurement unit and rate. You can optionally set multiple rates for particular tags.',
id: 'costModelsWizardPriceListMetric',
},
costModelsWizardRateAriaLabel: {
defaultMessage: 'Assign rate',
description: 'Assign rate',
id: 'costModelsWizardRateAriaLabel',
},
costModelsWizardReviewMarkDiscount: {
defaultMessage: 'Markup/Discount',
description: 'No Markup/Discount',
id: 'costModelsWizardReviewMarkDiscount',
},
costModelsWizardReviewStatusSubDetails: {
defaultMessage:
'Review and confirm your cost model configuration and assignments. Click {create} to create the cost model, or {back} to revise.',
description:
'Review and confirm your cost model configuration and assignments. Click {create} to create the cost model, or {back} to revise.',
id: 'costModelsWizardReviewStatusSubDetails',
},
costModelsWizardReviewStatusSubTitle: {
defaultMessage:
'Costs for resources connected to the assigned integrations will now be calculated using the newly created {value} cost model.',
description:
'Costs for resources connected to the assigned integrations will now be calculated using the newly created {value} cost model.',
id: 'costModelsWizardReviewStatusSubTitle',
},
costModelsWizardReviewStatusTitle: {
defaultMessage: 'Creation successful',
description: 'Creation successful',
id: 'costModelsWizardReviewStatusTitle',
},
costModelsWizardSourceCaption: {
defaultMessage:
'{value, select, ' +
'aws {Select from the following Amazon Web Services integrations:} ' +
'azure {Select from the following Microsoft Azure integrations:} ' +
'oci {Select from the following Oracle Cloud Infrastructure integrations:} ' +
'gcp {Select from the following Google Cloud Platform integrations:} ' +
'ocp {Select from the following Red Hat OpenShift integrations:} ' +
'other {}}',
description: 'Select from the following {value} integrations:',
id: 'costModelsWizardSourceCaption',
},
costModelsWizardSourceErrorDesc: {
defaultMessage:
'Try refreshing this step or you can skip this step (as it is optional) and assign the integration to the cost model at a later time. If the problem persists, contact your organization administrator or visit our {url} for known outages.',
description: 'This step is temporarily unavailable',
id: 'costModelsWizardSourceErrorDesc',
},
costModelsWizardSourceErrorTitle: {
defaultMessage: 'This step is temporarily unavailable',
description: 'This step is temporarily unavailable',
id: 'costModelsWizardSourceErrorTitle',
},
costModelsWizardSourceSubtitle: {
defaultMessage:
'Select one or more integrations to this cost model. You can skip this step and assign the cost model to a integration at a later time. An integration will be unavailable for selection if a cost model is already assigned to it.',
description:
'Select one or more integrations to this cost model. You can skip this step and assign the cost model to a integration at a later time. An integration will be unavailable for selection if a cost model is already assigned to it.',
id: 'costModelsWizardSourceSubtitle',
},
costModelsWizardSourceTableAriaLabel: {
defaultMessage: 'Assign integrations to cost model table',
description: 'Assign integrations to cost model table',
id: 'costModelsWizardSourceTableAriaLabel',
},
costModelsWizardSourceTableCostModel: {
defaultMessage: 'Cost model assigned',
description: 'Cost model assigned',
id: 'costModelsWizardSourceTableCostModel',
},
costModelsWizardSourceTableDefaultCostModel: {
defaultMessage: 'Default cost model',
description: 'Default cost model',
id: 'costModelsWizardSourceTableDefaultCostModel',
},
costModelsWizardSourceTitle: {
defaultMessage: 'Assign integrations to the cost model (optional)',
description: 'Assign integrations to the cost model (optional)',
id: 'costModelsWizardSourceTitle',
},
costModelsWizardSourceWarning: {
defaultMessage: 'This integration is assigned to {costModel} cost model. You will have to unassigned it first',
description: 'This integration is assigned to {costModel} cost model. You will have to unassigned it first',
id: 'costModelsWizardSourceWarning',
},
costModelsWizardStepsGenInfo: {
defaultMessage: 'Enter information',
description: 'Enter information',
id: 'costModelsWizardStepsGenInfo',
},
costModelsWizardStepsReview: {
defaultMessage: 'Review details',
description: 'Review details',
id: 'costModelsWizardStepsReview',
},
costModelsWizardStepsSources: {
defaultMessage: 'Assign an integration to the cost model',
description: 'Assign an integration to the cost model',
id: 'costModelsWizardStepsSources',
},
costModelsWizardSubTitleTable: {
defaultMessage: 'The following is a list of rates you have set so far for this price list.',
description: 'The following is a list of rates you have set so far for this price list.',
id: 'costModelsWizardSubTitleTable',
},
costModelsWizardWarningSources: {
defaultMessage: 'Cannot assign cost model to an integration that is already assigned to another one',
description: 'No Cannot assign cost model to an integration that is already assigned to another one',
id: 'costModelsWizardWarningSources',
},
costTypeAmortized: {
defaultMessage: 'Amortized',
description: 'Amortized cost type',
id: 'costTypeAmortized',
},
costTypeAmortizedDesc: {
defaultMessage: 'Recurring and/or upfront costs are distributed evenly across the month',
description: 'Recurring and/or upfront costs are distributed evenly across the month',
id: 'costTypeAmortizedDesc',
},
costTypeBlended: {
defaultMessage: 'Blended',
description: 'Blended cost type',
id: 'costTypeBlended',
},
costTypeBlendedDesc: {
defaultMessage: 'Using a blended rate to calcuate cost usage',
description: 'Using a blended rate to calcuate cost usage',
id: 'costTypeBlendedDesc',
},
costTypeLabel: {
defaultMessage: 'Show cost as',
description: 'Show cost as',
id: 'costTypeLabel',
},
costTypeSettingsDesc: {
defaultMessage:
'Select the preferred way of calculating upfront costs of savings plans or subscription fees. This feature is available for Amazon Web Services cost only.',
description:
'Select the preferred way of calculating upfront costs of savings plans or subscription fees. This feature is available for Amazon Web Services cost only.',
id: 'costTypeSettingsDesc',
},
costTypeSettingsLabel: {
defaultMessage: 'Show cost as (Amazon Web Services only)',
description: 'Show cost as (Amazon Web Services only)',
id: 'costTypeSettingsLabel',
},
costTypeUnblended: {
defaultMessage: 'Unblended',
description: 'Unblended cost type',
id: 'costTypeUnblended',
},
costTypeUnblendedDesc: {
defaultMessage: 'Usage cost on the day you are charged',
description: 'Usage cost on the day you are charged',
id: 'costTypeUnblendedDesc',
},
cpuTitle: {
defaultMessage: 'CPU',
description: 'CPU',
id: 'cpuTitle',
},
create: {
defaultMessage: 'Create',
description: 'Create',
id: 'create',
},
createCostModelConfirmMsg: {
defaultMessage: 'Are you sure you want to stop creating a cost model? All settings will be discarded.',
description: 'Are you sure you want to stop creating a cost model? All settings will be discarded.',
id: 'createCostModelConfirmMsg',
},
createCostModelDesc: {
defaultMessage:
'A cost model allows you to associate a price to metrics provided by your integrations to charge for utilization of resources.',
description:
'A cost model allows you to associate a price to metrics provided by your integrations to charge for utilization of resources.',
id: 'createCostModelDesc',
},
createCostModelExit: {
defaultMessage: 'Exit cost model creation',
description: 'Exit cost model creation',
id: 'createCostModelExit',
},
createCostModelExitYes: {
defaultMessage: 'Yes, I want to exit',
description: 'Yes, I want to exit',
id: 'createCostModelExitYes',
},
createCostModelNoContinue: {
defaultMessage: 'No, I want to continue',
description: 'No, I want to continue',
id: 'createCostModelNoContinue',
},