forked from red-hat-storage/odf-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin__odf-console.json
More file actions
2600 lines (2600 loc) · 232 KB
/
Copy pathplugin__odf-console.json
File metadata and controls
2600 lines (2600 loc) · 232 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
{
" {{ peerConnectedCount }} Connected": " {{ peerConnectedCount }} Connected",
" selected": " selected",
"(in {{suffixLabel}})": "(in {{suffixLabel}})",
"{{ actionsCount }} actions": "{{ actionsCount }} actions",
"{{ filesystems }} connected": "{{ filesystems }} connected",
"{{ fromCount }} - {{ toCount }} of {{ totalCount }}": "{{ fromCount }} - {{ toCount }} of {{ totalCount }}",
"{{ healthy }} healthy": "{{ healthy }} healthy",
"{{ issues }} with issues": "{{ issues }} with issues",
"{{ label }} {{ value }}": "{{ label }} {{ value }}",
"{{ lunGroups }} connected": "{{ lunGroups }} connected",
"{{ pvcsWithIssueCount }} with issues": "{{ pvcsWithIssueCount }} with issues",
"{{actionType}} readiness:": "{{actionType}} readiness:",
"{{appName}} failed over": "{{appName}} failed over",
"{{appName}} is now successfully enrolled for disaster recovery protection.": "{{appName}} is now successfully enrolled for disaster recovery protection.",
"{{appName}} relocated": "{{appName}} relocated",
"{{async}}, interval: {{syncInterval}}": "{{async}}, interval: {{syncInterval}}",
"{{availableCapacity}} / {{replica}} replicas": "{{availableCapacity}} / {{replica}} replicas",
"{{blueStoreCount}}/{{totalOSDCount}} OSDs migrated:": "{{blueStoreCount}}/{{totalOSDCount}} OSDs migrated:",
"{{bs, number}} BackingStore _one": "{{bs, number}} BackingStore ",
"{{bs, number}} BackingStore _other": "{{bs, number}} BackingStore ",
"{{bs, number}} BackingStore_one": "{{bs, number}} BackingStore",
"{{bs, number}} BackingStore_other": "{{bs, number}} BackingStore",
"{{capacityRatio, number}}:1": "{{capacityRatio, number}}:1",
"{{completedSteps}} of {{totalSteps}} steps completed": "{{completedSteps}} of {{totalSteps}} steps completed",
"{{completedUploads}} of {{totalUploads}} have been uploaded": "{{completedUploads}} of {{totalUploads}} have been uploaded",
"{{connected}} / {{total}} connected": "{{connected}} / {{total}} connected",
"{{count}} alert(s) will be silenced_one": "{{count}} alert(s) will be silenced",
"{{count}} alert(s) will be silenced_other": "{{count}} alert(s) will be silenced",
"{{count}} annotation_one": "{{count}} annotation",
"{{count}} annotation_other": "{{count}} annotation",
"{{count}} day_one": "{{count}} day",
"{{count}} day_other": "{{count}} day",
"{{count}} filters selected_one": "{{count}} filters selected",
"{{count}} filters selected_other": "{{count}} filters selected",
"{{count}} hour_one": "{{count}} hour",
"{{count}} hour_other": "{{count}} hour",
"{{count}} minute_one": "{{count}} minute",
"{{count}} minute_other": "{{count}} minute",
"{{count}} more_one": "{{count}} more",
"{{count}} more_other": "{{count}} more",
"{{count}} placements_one": "{{count}} placements",
"{{count}} placements_other": "{{count}} placements",
"{{count}} provisioner_one": "{{count}} provisioner",
"{{count}} provisioner_other": "{{count}} provisioner",
"{{count}} provisioners_one": "{{count}} provisioners",
"{{count}} provisioners_other": "{{count}} provisioners",
"{{count}} results found for {{clusterName}}_one": "{{count}} results found for {{clusterName}}",
"{{count}} results found for {{clusterName}}_other": "{{count}} results found for {{clusterName}}",
"{{count}} selected_one": "{{count}} selected",
"{{count}} selected_other": "{{count}} selected",
"{{count}} statuses_one": "{{count}} statuses",
"{{count}} statuses_other": "{{count}} statuses",
"{{description}} for": "{{description}} for",
"{{disks, number}} Disk_one": "{{disks, number}} Disk",
"{{disks, number}} Disk_other": "{{disks, number}} Disk",
"{{displayName}} connection details": "{{displayName}} connection details",
"{{formattedProgress, number}}%": "{{formattedProgress, number}}%",
"{{humanAvailable}} available": "{{humanAvailable}} available",
"{{humanAvailable}} available of {{humanLimit}} total limit": "{{humanAvailable}} available of {{humanLimit}} total limit",
"{{humanAvailable}} available of {{humanMax}}": "{{humanAvailable}} available of {{humanMax}}",
"{{labels}} content is not available in the catalog at this time due to loading failures.": "{{labels}} content is not available in the catalog at this time due to loading failures.",
"{{metricName}}": "{{metricName}}",
"{{metricType}}": "{{metricType}}",
"{{mode}} mode": "{{mode}} mode",
"{{newName}} has been updated to version {{version}}": "{{newName}} has been updated to version {{version}}",
"{{nns, number}} namespace store _one": "{{nns, number}} namespace store ",
"{{nns, number}} namespace store _other": "{{nns, number}} namespace store ",
"{{nodeCount, number}} node_one": "{{nodeCount, number}} node",
"{{nodeCount, number}} node_other": "{{nodeCount, number}} node",
"{{nodes, number}} node_one": "{{nodes, number}} node",
"{{nodes, number}} Node_one": "{{nodes, number}} Node",
"{{nodes, number}} node_other": "{{nodes, number}} node",
"{{nodes, number}} Node_other": "{{nodes, number}} Node",
"{{policyName}}, {{replicationType}}, Interval: {{interval}}": "{{policyName}}, {{replicationType}}, Interval: {{interval}}",
"{{policyName}}, sync every {{schedulingInterval}}": "{{policyName}}, sync every {{schedulingInterval}}",
"{{replica}} Replication": "{{replica}} Replication",
"{{resource}} details": "{{resource}} details",
"{{resource}} overview": "{{resource}} overview",
"{{selected}} of {{total}} selected": "{{selected}} of {{total}} selected",
"{{selectedMetric}} by {{selectedBreakdown}}": "{{selectedMetric}} by {{selectedBreakdown}}",
"{{serviceType}}": "{{serviceType}}",
"{{sizeInB}} Bytes": "{{sizeInB}} Bytes",
"{{storeType}} represents a storage target to be used as the underlying storage for the data in Multicloud Object Gateway buckets.": "{{storeType}} represents a storage target to be used as the underlying storage for the data in Multicloud Object Gateway buckets.",
"{{title}} breakdown": "{{title}} breakdown",
"{{unit}} IOPS": "{{unit}} IOPS",
"{{uploadedFiles}} of {{totalFiles}} files uploaded": "{{uploadedFiles}} of {{totalFiles}} files uploaded",
"{{value}} at {{date}}": "{{value}} at {{date}}",
"{{value}} IOPS": "{{value}} IOPS",
"{{zoneCount, number}} zone_one": "{{zoneCount, number}} zone",
"{{zoneCount, number}} zone_other": "{{zoneCount, number}} zone",
"<0><0>{{fsName}}</0> cannot be deleted. When a LUN group is being used by PVCs, it cannot be deleted. Please delete all PVCs using this LUN group:</0>": "<0><0>{{fsName}}</0> cannot be deleted. When a LUN group is being used by PVCs, it cannot be deleted. Please delete all PVCs using this LUN group:</0>",
"<0><0>{{poolName}}</0> cannot be deleted. When a pool is bounded to PVC it cannot be deleted. Please detach all the resources from StorageClass(es):</0>": "<0><0>{{poolName}}</0> cannot be deleted. When a pool is bounded to PVC it cannot be deleted. Please detach all the resources from StorageClass(es):</0>",
"<0><0><0></0></0> Navigate to <4>Applications</4> section and locate your application.</0><1><0><0></0></0> Select <4>Manage disaster recovery</4> from inline actions.</1><2><0><0></0></0> In the Manage disaster recovery modal, click on <4>Enroll application</4> to start the wizard process.</2>": "<0><0><0></0></0> Navigate to <4>Applications</4> section and locate your application.</0><1><0><0></0></0> Select <4>Manage disaster recovery</4> from inline actions.</1><2><0><0></0></0> In the Manage disaster recovery modal, click on <4>Enroll application</4> to start the wizard process.</2>",
"<0><0>Check the fencing status for your primary and target cluster. Both clusters should be unfenced for initiating relocation.</0><1>To unfence your cluster, refer to the documentation<1><0></0></1></1></0>": "<0><0>Check the fencing status for your primary and target cluster. Both clusters should be unfenced for initiating relocation.</0><1>To unfence your cluster, refer to the documentation<1><0></0></1></1></0>",
"<0><0>The status for both the primary and target clusters must be available for relocating. Check the status and try again.</0><1>To bring the cluster online, refer to the instructions in the documentation<1><0></0></1></1></0>": "<0><0>The status for both the primary and target clusters must be available for relocating. Check the status and try again.</0><1>To bring the cluster online, refer to the instructions in the documentation<1><0></0></1></1></0>",
"<0><0>The status for your primary cluster must be fenced for initiating failover. Check the status and try again.</0><1>To fence your cluster, follow the instructions in the documentation<1><0></0></1></1></0>": "<0><0>The status for your primary cluster must be fenced for initiating failover. Check the status and try again.</0><1>To fence your cluster, follow the instructions in the documentation<1><0></0></1></1></0>",
"<0><0>The status for your target cluster must be unfenced for initiating failover. Check the status and try again.</0><1>To unfence your cluster, follow the instructions in the documentation<1><0></0></1></1></0>": "<0><0>The status for your target cluster must be unfenced for initiating failover. Check the status and try again.</0><1>To unfence your cluster, follow the instructions in the documentation<1><0></0></1></1></0>",
"<0><0>To failover, your application must have a DR policy associated with it. Check for an active DRpolicy and try again.</0><1>To apply a DRPolicy to your application, follow the instructions in the documentation<1><0></0></1></1></0>": "<0><0>To failover, your application must have a DR policy associated with it. Check for an active DRpolicy and try again.</0><1>To apply a DRPolicy to your application, follow the instructions in the documentation<1><0></0></1></1></0>",
"<0><0>To relocate, your application must have a DR policy associated with it. Check for an active DRpolicy and try again.</0><1>To apply a DRPolicy to your application, follow the instructions in the documentation<1><0></0></1></1></0>": "<0><0>To relocate, your application must have a DR policy associated with it. Check for an active DRpolicy and try again.</0><1>To apply a DRPolicy to your application, follow the instructions in the documentation<1><0></0></1></1></0>",
"<0>ACM discovered applications:</0><1>Based on modular and microservices architecture, uses operators for dynamically created kubernetes objects. Eg: <2>CloudPak, Custom-created applications</2></1><2><0>Enrollment process:</0> Discovered applications are enrolled under disaster recovery through enabling protection for their namespaces and further defining the scope of this protection within namespace through recipe selection or resource label.</2><3>ACM managed applications:</3><4>Based on subscribing to one or more Kubernetes resource repositories (channel resource) that contains resources that are deployed on managed clusters. Eg: <2>ApplicationSet, Subscriptions</2></4><5><0>Enrollment process:</0> Individually protect managed application with flexibility for distinct configurations for different sub-categories of managed application based on specific requirements.</5>": "<0>ACM discovered applications:</0><1>Based on modular and microservices architecture, uses operators for dynamically created kubernetes objects. Eg: <2>CloudPak, Custom-created applications</2></1><2><0>Enrollment process:</0> Discovered applications are enrolled under disaster recovery through enabling protection for their namespaces and further defining the scope of this protection within namespace through recipe selection or resource label.</2><3>ACM managed applications:</3><4>Based on subscribing to one or more Kubernetes resource repositories (channel resource) that contains resources that are deployed on managed clusters. Eg: <2>ApplicationSet, Subscriptions</2></4><5><0>Enrollment process:</0> Individually protect managed application with flexibility for distinct configurations for different sub-categories of managed application based on specific requirements.</5>",
"<0>Application:</0> {applicationName} (Namespace: {applicationNamespace})": "<0>Application:</0> {applicationName} (Namespace: {applicationNamespace})",
"<0>Client ID is the unique identifier of an application created in Azure AD (Active Directory).</0><1>You can locate the client ID within Azure Active Directory by accessing the <1>App registrations</1> section.</1>": "<0>Client ID is the unique identifier of an application created in Azure AD (Active Directory).</0><1>You can locate the client ID within Azure Active Directory by accessing the <1>App registrations</1> section.</1>",
"<0>confirm this action, type <1>{{delete}}</1> in the text input field.</0>": "<0>confirm this action, type <1>{{delete}}</1> in the text input field.</0>",
"<0>Deleting <1>{{fsName}}</1> will remove the LUN group along with its associated StorageClass and LocalDisks. All saved data of this LUN group will be removed. Are you sure you want to delete?</0>": "<0>Deleting <1>{{fsName}}</1> will remove the LUN group along with its associated StorageClass and LocalDisks. All saved data of this LUN group will be removed. Are you sure you want to delete?</0>",
"<0>Deleting <1>{{poolName}}</1> will remove all the saved data of this pool. Are you sure want to delete?</0>": "<0>Deleting <1>{{poolName}}</1> will remove all the saved data of this pool. Are you sure want to delete?</0>",
"<0>Deleting a specific version of an object is permanent and cannot be undone.</0><1>Removing a delete marker will restore the object to its most recent version, making it accessible again. If no previous versions exist, the object will be permanently deleted.</1>": "<0>Deleting a specific version of an object is permanent and cannot be undone.</0><1>Removing a delete marker will restore the object to its most recent version, making it accessible again. If no previous versions exist, the object will be permanently deleted.</1>",
"<0>Error:</0> Image (PV) replication process stopped due to an error.": "<0>Error:</0> Image (PV) replication process stopped due to an error.",
"<0>Failover cannot be initiated as the readiness checks are failing. Refer to workaround mentioned in known issues section of<1><0></0></1>.</0>": "<0>Failover cannot be initiated as the readiness checks are failing. Refer to workaround mentioned in known issues section of<1><0></0></1>.</0>",
"<0>Failover cannot be initiated as the readiness checks are failing. Refer to workaround mentioned in known issues section of<1><0></0></1></0>": "<0>Failover cannot be initiated as the readiness checks are failing. Refer to workaround mentioned in known issues section of<1><0></0></1></0>",
"<0>List all versions</0> allows you to view all object versions, including deleted objects that have delete markers. <2></2>Each version of an object is listed as a separate row, making it easier to track changes, restore previous versions, recover deleted data or permanently delete objects.": "<0>List all versions</0> allows you to view all object versions, including deleted objects that have delete markers. <2></2>Each version of an object is listed as a separate row, making it easier to track changes, restore previous versions, recover deleted data or permanently delete objects.",
"<0>List all versions</0> is turned on. Each version is listed as a separate row, allowing you to track changes, restore previous versions, or permanently delete objects.": "<0>List all versions</0> is turned on. Each version is listed as a separate row, allowing you to track changes, restore previous versions, or permanently delete objects.",
"<0>Relocation cannot be initiated as the readiness checks are failing. Refer to workaround mentioned in known issues section of<1><0></0></1>.</0>": "<0>Relocation cannot be initiated as the readiness checks are failing. Refer to workaround mentioned in known issues section of<1><0></0></1>.</0>",
"<0>Relocation cannot be initiated as the readiness checks are failing. Refer to workaround mentioned in known issues section of<1><0></0></1></0>": "<0>Relocation cannot be initiated as the readiness checks are failing. Refer to workaround mentioned in known issues section of<1><0></0></1></0>",
"<0>Replaying:</0> Image (PV) replication is ongoing or idle between clusters.": "<0>Replaying:</0> Image (PV) replication is ongoing or idle between clusters.",
"<0>Showing all VMs grouped under <2></2>{{sharedGroupName}}</0>": "<0>Showing all VMs grouped under <2></2>{{sharedGroupName}}</0>",
"<0>Starting replay:</0> Initiating image (PV) replication process.": "<0>Starting replay:</0> Initiating image (PV) replication process.",
"<0>Stopped:</0> Image (PV) replication process has shut down.": "<0>Stopped:</0> Image (PV) replication process has shut down.",
"<0>Stopping replay:</0> Image (PV) replication process is shutting down.": "<0>Stopping replay:</0> Image (PV) replication process is shutting down.",
"<0>The amount of storage allocated to the client cluster for usage.</0><1>Due to simultaneous usage by multiple client clusters, actual available storage may vary affecting your allocated storage quota.</1>": "<0>The amount of storage allocated to the client cluster for usage.</0><1>Due to simultaneous usage by multiple client clusters, actual available storage may vary affecting your allocated storage quota.</1>",
"<0>The tenant ID determines the Azure AD instance where the application is hosted - it is the same as the organization ID. Also referred to as the Microsoft Entra tenant ID.</0><1>You can find it by searching for <2>Microsoft Entra ID</2> in the Azure portal.</1>": "<0>The tenant ID determines the Azure AD instance where the application is hosted - it is the same as the organization ID. Also referred to as the Microsoft Entra tenant ID.</0><1>You can find it by searching for <2>Microsoft Entra ID</2> in the Azure portal.</1>",
"<0>This application uses placement that are also used by other applications. Failing over will automatically trigger a failover for other applications sharing the same placement.</0>": "<0>This application uses placement that are also used by other applications. Failing over will automatically trigger a failover for other applications sharing the same placement.</0>",
"<0>This application uses placement that are also used by other applications. Relocating will automatically trigger a relocate for other applications sharing the same placement.</0>": "<0>This application uses placement that are also used by other applications. Relocating will automatically trigger a relocate for other applications sharing the same placement.</0>",
"<0>This managed application namespace is already DR protected. You may have protected this namespace while enrolling discovered applications.</0><1>To see disaster recovery information for your applications, go to<1> Protected applications </1> under <3> Disaster Recovery </3>.</1>": "<0>This managed application namespace is already DR protected. You may have protected this namespace while enrolling discovered applications.</0><1>To see disaster recovery information for your applications, go to<1> Protected applications </1> under <3> Disaster Recovery </3>.</1>",
"<0>To begin failover, the target cluster must be available. Check the status and try again. If the managed cluster status is offline, follow the instructions in the documentation<1><0></0></1></0>": "<0>To begin failover, the target cluster must be available. Check the status and try again. If the managed cluster status is offline, follow the instructions in the documentation<1><0></0></1></0>",
"<0>To confirm deletion, type <1>{{bucketName}}</1>:</0>": "<0>To confirm deletion, type <1>{{bucketName}}</1>:</0>",
"<0>To confirm deletion, type <1>{{delete}}</1>:</0>": "<0>To confirm deletion, type <1>{{delete}}</1>:</0>",
"<0>To confirm deletion, type <1>{{indexName}}</1>:</0>": "<0>To confirm deletion, type <1>{{indexName}}</1>:</0>",
"<0>Unknown:</0> Unable to determine image (PV) state due to an error. Check your network connection and remote cluster mirroring daemon.": "<0>Unknown:</0> Unable to determine image (PV) state due to an error. Check your network connection and remote cluster mirroring daemon.",
"<0>View enrolled apps under <2>Protected applications</2>.</0>": "<0>View enrolled apps under <2>Protected applications</2>.</0>",
"<0>What are the different performance profiles I can use to configure performance?</0><1>Performance profiles types:</1><2><0>Balanced mode:</0> Optimized for right amount of CPU and memory resources to support diverse workloads.</2><3><0>Lean mode:</0> Minimizes resource consumption by allocating fewer CPUs and less memory for resource-efficient operations.</3><4><0>Performance mode:</0> Tailored for high-performance, allocating ample CPUs and memory to ensure optimal execution of demanding workloads.</4>": "<0>What are the different performance profiles I can use to configure performance?</0><1>Performance profiles types:</1><2><0>Balanced mode:</0> Optimized for right amount of CPU and memory resources to support diverse workloads.</2><3><0>Lean mode:</0> Minimizes resource consumption by allocating fewer CPUs and less memory for resource-efficient operations.</3><4><0>Performance mode:</0> Tailored for high-performance, allocating ample CPUs and memory to ensure optimal execution of demanding workloads.</4>",
"<0>You do not have any <1>discovered applications</1> that are protected yet. For details about your <4>protected managed applications</4>, navigate to the <7>Applications</7> page, as this information is not maintained here.</0><1></1><2>Click <1>Enroll applications</1> to add disaster recovery protection to your applications.</2>": "<0>You do not have any <1>discovered applications</1> that are protected yet. For details about your <4>protected managed applications</4>, navigate to the <7>Applications</7> page, as this information is not maintained here.</0><1></1><2>Click <1>Enroll applications</1> to add disaster recovery protection to your applications.</2>",
"<0>You have {policyCount.toString()} disaster recovery policies. <4>{t('View policies')}</4></0>": "<0>You have {policyCount.toString()} disaster recovery policies. <4>{t('View policies')}</4></0>",
"<0>You have not enrolled this application yet. To protect your application, click <1>Enroll application.</1></0>": "<0>You have not enrolled this application yet. To protect your application, click <1>Enroll application.</1></0>",
"<0>You have not enrolled this virtual machine yet. To protect your virtual machine, click <1>Enroll virtual machine.</1></0>": "<0>You have not enrolled this virtual machine yet. To protect your virtual machine, click <1>Enroll virtual machine.</1></0>",
"0 connected": "0 connected",
"0 results found": "0 results found",
"0.5 {{sizeUnit}}": "0.5 {{sizeUnit}}",
"1 {{sizeUnit}}": "1 {{sizeUnit}}",
"1 or more clusters do not meet disaster recovery cluster prerequisites.": "1 or more clusters do not meet disaster recovery cluster prerequisites.",
"1 or more Kubernetes resources are affected. Check the network connection, cluster health, or workload status for potential issues.": "1 or more Kubernetes resources are affected. Check the network connection, cluster health, or workload status for potential issues.",
"1 or more managed clusters are offline.": "1 or more managed clusters are offline.",
"1 or more mandatory fields are empty. To proceed, fill in the required information.": "1 or more mandatory fields are empty. To proceed, fill in the required information.",
"1 or more volume groups are affected. Check the network connection, cluster health, or workload status for potential issues.": "1 or more volume groups are affected. Check the network connection, cluster health, or workload status for potential issues.",
"1 or more volumes & Kubernetes resources are affected. Check the network connection, cluster health, or workload status for potential issues.": "1 or more volumes & Kubernetes resources are affected. Check the network connection, cluster health, or workload status for potential issues.",
"1. Download <1>{{SCRIPT_NAME}}</1> script and run on the RHCS cluster, then upload the results (JSON) in the External storage system metadata field.": "1. Download <1>{{SCRIPT_NAME}}</1> script and run on the RHCS cluster, then upload the results (JSON) in the External storage system metadata field.",
"2 {{sizeUnit}}": "2 {{sizeUnit}}",
"3-63 characters": "3-63 characters",
"4 {{sizeUnit}}": "4 {{sizeUnit}}",
"404 Not Found: {{ message }}": "404 Not Found: {{ message }}",
"404: Not Found": "404: Not Found",
"8 {{sizeUnit}}": "8 {{sizeUnit}}",
"A BackingStore represents a storage target to be used as the underlying storage layer in Multicloud Object Gateway buckets.": "A BackingStore represents a storage target to be used as the underlying storage layer in Multicloud Object Gateway buckets.",
"A dimension is the number of values in a vector. Larger dimensions require more storage.": "A dimension is the number of values in a vector. Larger dimensions require more storage.",
"A dimension must be an integer between 1 and 4096": "A dimension must be an integer between 1 and 4096",
"A failover will occur for all namespaces currently under this DRPC.": "A failover will occur for all namespaces currently under this DRPC.",
"A list of all Multicloud Object Gateway resources that are currently in use. Those resources are used to store data according to the buckets' policies and can be a cloud-based resource or a bare metal resource.": "A list of all Multicloud Object Gateway resources that are currently in use. Those resources are used to store data according to the buckets' policies and can be a cloud-based resource or a bare metal resource.",
"a local backing store is recommended for better performance": "a local backing store is recommended for better performance",
"A Local Volume Set allows you to filter a set of disks, group them and create a dedicated StorageClass to consume storage from them.": "A Local Volume Set allows you to filter a set of disks, group them and create a dedicated StorageClass to consume storage from them.",
"A LocalVolumeSet will be created to allow you to filter a set of disks, group them and create a dedicated StorageClass to consume storage from them.": "A LocalVolumeSet will be created to allow you to filter a set of disks, group them and create a dedicated StorageClass to consume storage from them.",
"A method is required.": "A method is required.",
"A minimum of 3 nodes are required for the initial deployment. Only {{nodes}} node match to the selected filters. Please adjust the filters to include more nodes.": "A minimum of 3 nodes are required for the initial deployment. Only {{nodes}} node match to the selected filters. Please adjust the filters to include more nodes.",
"A mirror peer configuration already exists for one or more of the selected clusters, either from an existing or deleted DR policy. To create a new DR policy with these clusters, delete any existing mirror peer configurations associated with them and try again.": "A mirror peer configuration already exists for one or more of the selected clusters, either from an existing or deleted DR policy. To create a new DR policy with these clusters, delete any existing mirror peer configurations associated with them and try again.",
"A namespace controls access to the OBC and ties the buckets to a specific project.": "A namespace controls access to the OBC and ties the buckets to a specific project.",
"A PEM-encoded CA certificate file used to verify the Vault server's SSL certificate.": "A PEM-encoded CA certificate file used to verify the Vault server's SSL certificate.",
"A PEM-encoded client certificate. This certificate is used for TLS communication with the Vault server.": "A PEM-encoded client certificate. This certificate is used for TLS communication with the Vault server.",
"A prefix filters bucket objects by their keys.": "A prefix filters bucket objects by their keys.",
"A public or cluster network attachment definition must be selected to use Multus.": "A public or cluster network attachment definition must be selected to use Multus.",
"A relocation will occur for all namespaces currently under this DRPC.": "A relocation will occur for all namespaces currently under this DRPC.",
"A rule name is required.": "A rule name is required.",
"A rule with this name already exists. Type a different name.": "A rule with this name already exists. Type a different name.",
"A set of policies which would apply to all buckets (OBCs) created with the specific bucket class. These policies include placement, namespace and caching": "A set of policies which would apply to all buckets (OBCs) created with the specific bucket class. These policies include placement, namespace and caching",
"A single NamespaceStore that defines the read and write target of the namespace bucket.": "A single NamespaceStore that defines the read and write target of the namespace bucket.",
"A storage pool is a logical entity which provides capacity to applications and workloads. With pools you can support policies for data resiliency and storage efficiency.": "A storage pool is a logical entity which provides capacity to applications and workloads. With pools you can support policies for data resiliency and storage efficiency.",
"A tag key is required.": "A tag key is required.",
"A third-party entity can access the object using this presigned URL, which allows sharing without requiring a login, until the URL expires.": "A third-party entity can access the object using this presigned URL, which allows sharing without requiring a login, until the URL expires.",
"A unique connection name to identify this external system in Data Foundation.": "A unique connection name to identify this external system in Data Foundation.",
"A unique folder name is required. All characters are allowed except for the forward slash (\"/\").": "A unique folder name is required. All characters are allowed except for the forward slash (\"/\").",
"A unique identifier for ACM discovered applications from selected namespaces.": "A unique identifier for ACM discovered applications from selected namespaces.",
"A unique name for the {{fieldName}} within the project": "A unique name for the {{fieldName}} within the project",
"A unique name for your bucket.": "A unique name for your bucket.",
"A unique name to identify and manage this protection.": "A unique name to identify and manage this protection.",
"A unique name within this vector bucket.": "A unique name within this vector bucket.",
"A vector bucket is a storage container that organizes and manages vector datasets (indexes), allowing users to store, retrieve and control access to data efficiently.": "A vector bucket is a storage container that organizes and manages vector datasets (indexes), allowing users to store, retrieve and control access to data efficiently.",
"Abort incomplete multipart uploads after {{ days }} days.": "Abort incomplete multipart uploads after {{ days }} days.",
"Above object tags and object size filters are not applicable for this rule action. Expired object delete markers will be removed from the bucket regardless of any filters you have configured.": "Above object tags and object size filters are not applicable for this rule action. Expired object delete markers will be removed from the bucket regardless of any filters you have configured.",
"Above object tags and object size filters are not applicable for this rule action. Incomplete multipart uploads will be removed from the bucket regardless of any filters you have configured.": "Above object tags and object size filters are not applicable for this rule action. Incomplete multipart uploads will be removed from the bucket regardless of any filters you have configured.",
"Accepted file types: .pem, .crt, .key": "Accepted file types: .pem, .crt, .key",
"Access key": "Access key",
"Access key ": "Access key ",
"Access key and Secret key": "Access key and Secret key",
"Access key and Secret key information.csv": "Access key and Secret key information.csv",
"Access key deactivated successfully": "Access key deactivated successfully",
"Access Key Field": "Access Key Field",
"Access key generated": "Access key generated",
"Access key ID": "Access key ID",
"Access key information": "Access key information",
"Access Keys": "Access Keys",
"Access keys deleted successfully": "Access keys deleted successfully",
"Account key": "Account key",
"Account name": "Account name",
"Accounts": "Accounts",
"ACM discovered applications": "ACM discovered applications",
"ACM discovered applications: ": "ACM discovered applications: ",
"ACM discovered applications: {{count}}_one": "ACM discovered applications: {{count}}",
"ACM discovered applications: {{count}}_other": "ACM discovered applications: {{count}}",
"ACM managed applications": "ACM managed applications",
"ACM managed applications: ": "ACM managed applications: ",
"ACM managed applications: {{count}}_one": "ACM managed applications: {{count}}",
"ACM managed applications: {{count}}_other": "ACM managed applications: {{count}}",
"Action": "Action",
"Action did not complete successfully.": "Action did not complete successfully.",
"Action needed": "Action needed",
"Actions": "Actions",
"Activate access key": "Activate access key",
"Active": "Active",
"Active health checks": "Active health checks",
"Active issues": "Active issues",
"Actively monitoring, waiting for trigger": "Actively monitoring, waiting for trigger",
"Activity": "Activity",
"Add": "Add",
"Add another header": "Add another header",
"Add another origin": "Add another origin",
"Add application resource": "Add application resource",
"Add Capacity": "Add Capacity",
"Add Capacity cannot proceed": "Add Capacity cannot proceed",
"Add disaster recovery protection to your application to boost resilience and minimise downtime.": "Add disaster recovery protection to your application to boost resilience and minimise downtime.",
"Add header": "Add header",
"Add label expression": "Add label expression",
"Add LUN group": "Add LUN group",
"Add more": "Add more",
"Add object tag": "Add object tag",
"Add objects": "Add objects",
"Add origin": "Add origin",
"Add parameter": "Add parameter",
"Add PVC label selector": "Add PVC label selector",
"Add remote FileSystem": "Add remote FileSystem",
"Add Remote FileSystem": "Add Remote FileSystem",
"Add rule": "Add rule",
"Add tag": "Add tag",
"Add this VM to an existing DR placement control for consistent failover and recovery. This method is only available for discovered VMs.": "Add this VM to an existing DR placement control for consistent failover and recovery. This method is only available for discovered VMs.",
"Add Tier": "Add Tier",
"Add VolumeSnapshotClass": "Add VolumeSnapshotClass",
"Adding capacity for <1>{{ocsClusterName}}</1>, may increase your expenses.": "Adding capacity for <1>{{ocsClusterName}}</1>, may increase your expenses.",
"Adding this option will allow the postgres server to use a self-signed certificates.": "Adding this option will allow the postgres server to use a self-signed certificates.",
"Additional policies": "Additional policies",
"Address": "Address",
"Address form errors to proceed": "Address form errors to proceed",
"Address form validation errors to proceed": "Address form validation errors to proceed",
"Address tag validation errors before submitting.": "Address tag validation errors before submitting.",
"Advanced": "Advanced",
"Advanced configuration": "Advanced configuration",
"Advanced settings": "Advanced settings",
"Advanced Settings": "Advanced Settings",
"Advanced Subscription": "Advanced Subscription",
"After the LocalVolumeSet is created you won't be able to edit it.": "After the LocalVolumeSet is created you won't be able to edit it.",
"Aggregate resource requirement for {{resourceProfile}} mode not met": "Aggregate resource requirement for {{resourceProfile}} mode not met",
"Aggregate resource requirements for {{selectedProfile}} mode": "Aggregate resource requirements for {{selectedProfile}} mode",
"ago": "ago",
"Alert: {{name}} ({{severity}})\nStart: {{start}}\nEnd: {{end}}": "Alert: {{name}} ({{severity}})\nStart: {{start}}\nEnd: {{end}}",
"Alerts": "Alerts",
"Alerts are being fired": "Alerts are being fired",
"All": "All",
"All access keys assigned to the user have been deleted": "All access keys assigned to the user have been deleted",
"All associated LocalDisks for this FileSystem": "All associated LocalDisks for this FileSystem",
"All characters are allowed except for the forward slash (\"/\").": "All characters are allowed except for the forward slash (\"/\").",
"All checks": "All checks",
"All disaster recovery prerequisites are met for both clusters. Multiple storage backends are available on both of the selected clusters.": "All disaster recovery prerequisites are met for both clusters. Multiple storage backends are available on both of the selected clusters.",
"All disaster recovery prerequisites met for both clusters.": "All disaster recovery prerequisites met for both clusters.",
"All disk type may include HDD disks. Data Foundation does not support HDD disks as local devices. Select SSD if you plan to use Data Foundation.": "All disk type may include HDD disks. Data Foundation does not support HDD disks as local devices. Select SSD if you plan to use Data Foundation.",
"All headers": "All headers",
"All Nodes (Default)": "All Nodes (Default)",
"All non control plane nodes are selected to handle requests to IBM Scale": "All non control plane nodes are selected to handle requests to IBM Scale",
"All origins": "All origins",
"All other capacity usage that are not a part of the top 5 consumers.": "All other capacity usage that are not a part of the top 5 consumers.",
"All processes that use application subscription is deprecated": "All processes that use application subscription is deprecated",
"All required fields are not set": "All required fields are not set",
"All resources are unhealthy": "All resources are unhealthy",
"All selected nodes must have the network.rook.io/mon-ip annotation when using a dedicated storage network.": "All selected nodes must have the network.rook.io/mon-ip annotation when using a dedicated storage network.",
"All volumes & Kubernetes resources are synced": "All volumes & Kubernetes resources are synced",
"All volumes are synced": "All volumes are synced",
"Allocate quota": "Allocate quota",
"Allow Access to a Specific S3 Account": "Allow Access to a Specific S3 Account",
"Allow NFS to use low resources by default.": "Allow NFS to use low resources by default.",
"Allow Noobaa to connect to an external postgres server": "Allow Noobaa to connect to an external postgres server",
"Allow requests from all domains using a wildcard (*). Use <2><0>custom origins</0></2> if requests include credentials like cookies or HTTP authentication.": "Allow requests from all domains using a wildcard (*). Use <2><0>custom origins</0></2> if requests include credentials like cookies or HTTP authentication.",
"Allow requests only from specified domains.": "Allow requests only from specified domains.",
"Allow self-signed certificates": "Allow self-signed certificates",
"Allowed headers": "Allowed headers",
"Allowed methods": "Allowed methods",
"Allowed origins": "Allowed origins",
"Allows all headers using a wildcard (*). Use <2><0>custom headers</0></2> if requests include credentials like cookies or authentication headers.": "Allows all headers using a wildcard (*). Use <2><0>custom headers</0></2> if requests include credentials like cookies or authentication headers.",
"Allows anyone to read all objects in the bucket": "Allows anyone to read all objects in the bucket",
"Allows you to discover the available disks on all available nodes": "Allows you to discover the available disks on all available nodes",
"Allows you to limit the discovery for available disks to specific nodes.": "Allows you to limit the discovery for available disks to specific nodes.",
"An access key enables secure access to Object storage resources.": "An access key enables secure access to Object storage resources.",
"An arbiter node will be automatically selected from this zone": "An arbiter node will be automatically selected from this zone",
"An encryption key will be generated for each persistent volume (block) created using an encryption enabled StorageClass.": "An encryption key will be generated for each persistent volume (block) created using an encryption enabled StorageClass.",
"An encryption key will be generated for each PersistentVolume created using this StorageClass.": "An encryption key will be generated for each PersistentVolume created using this StorageClass.",
"An error has occured while fetching backing stores": "An error has occured while fetching backing stores",
"An error has occurred": "An error has occurred",
"An error has occurred while fetching namespace stores": "An error has occurred while fetching namespace stores",
"An error has occurred: {{error}}": "An error has occurred: {{error}}",
"An error occurred": "An error occurred",
"An error occurred during application protection.": "An error occurred during application protection.",
"An error occurred while creating the SAN system": "An error occurred while creating the SAN system",
"An error occurred. Please try again.": "An error occurred. Please try again.",
"An error occurred. Pool {{name}} was not created": "An error occurred. Pool {{name}} was not created",
"An object bucket is a cloud storage container that organizes and manages files (objects), allowing users to store, retrieve and control access to data efficiently.": "An object bucket is a cloud storage container that organizes and manages files (objects), allowing users to store, retrieve and control access to data efficiently.",
"An object tag is a label that is assigned to an S3 object.": "An object tag is a label that is assigned to an S3 object.",
"An onboarding token to authenticate and authorize an OpenShift cluster, granting access to the Data Foundation deployment, thus establishing a secure connection.": "An onboarding token to authenticate and authorize an OpenShift cluster, granting access to the Data Foundation deployment, thus establishing a secure connection.",
"An optional path within the bucket used to separate vector storage.": "An optional path within the bucket used to separate vector storage.",
"An origin is required.": "An origin is required.",
"An unencrypted, PEM-encoded private key which corresponds to the matching client certificate provided with VAULT_CLIENT_CERT.": "An unencrypted, PEM-encoded private key which corresponds to the matching client certificate provided with VAULT_CLIENT_CERT.",
"An unexpected error has occured.": "An unexpected error has occured.",
"An unexpected error occurred while polling for ManagedClusterAction: {{error}}": "An unexpected error occurred while polling for ManagedClusterAction: {{error}}",
"An unexpected error occurred while polling for ManagedClusterView: {{error}}": "An unexpected error occurred while polling for ManagedClusterView: {{error}}",
"An unique name for the key management service within the project. Name must only include alphanumeric characters, \"-\", \"_\" or \".\"": "An unique name for the key management service within the project. Name must only include alphanumeric characters, \"-\", \"_\" or \".\"",
"and": "and",
"Annotations": "Annotations",
"Any data on the disks used to create this storage cluster will be deleted. This cannot be undone.": "Any data on the disks used to create this storage cluster will be deleted. This cannot be undone.",
"Any NON Object bucket claims that were created via an S3 client or via the NooBaa UI system.": "Any NON Object bucket claims that were created via an S3 client or via the NooBaa UI system.",
"Any objects added during this process may also be deleted. To prevent adding new objects during the emptying process, consider updating the bucket policy (through CLI).": "Any objects added during this process may also be deleted. To prevent adding new objects during the emptying process, consider updating the bucket policy (through CLI).",
"Application": "Application",
"Application \"{{appName}}\" is now deployed on cluster {{cluster}}": "Application \"{{appName}}\" is now deployed on cluster {{cluster}}",
"Application already enrolled in disaster recovery": "Application already enrolled in disaster recovery",
"Application Details": "Application Details",
"Application is now running on {{primaryCluster}}.": "Application is now running on {{primaryCluster}}.",
"Application name": "Application name",
"Application name:": "Application name:",
"Application resource": "Application resource",
"Application resource:": "Application resource:",
"Application successfully relocated to {{primaryCluster}}.": "Application successfully relocated to {{primaryCluster}}.",
"Application type": "Application type",
"Application types and their enrollment processes": "Application types and their enrollment processes",
"Application volumes (PVCs):": "Application volumes (PVCs):",
"Application:": "Application:",
"Application: ": "Application: ",
"Applications": "Applications",
"Applications table": "Applications table",
"Applications will be listed in a data table.": "Applications will be listed in a data table.",
"ApplicationSet": "ApplicationSet",
"Applies to a specific subset of objects within a bucket, based on defined criteria. Allows for more granular control over which objects the rule targets.": "Applies to a specific subset of objects within a bucket, based on defined criteria. Allows for more granular control over which objects the rule targets.",
"Applies to all objects in the bucket without any filters. Uses the same lifecycle action for every object in the bucket.": "Applies to all objects in the bucket without any filters. Uses the same lifecycle action for every object in the bucket.",
"Apply policy": "Apply policy",
"Arbiter minimum requirements": "Arbiter minimum requirements",
"Arbiter zone": "Arbiter zone",
"Arbiter zone selection": "Arbiter zone selection",
"Arbiter zone: {{zone}}": "Arbiter zone: {{zone}}",
"Architecture": "Architecture",
"Are you sure you want to cancel the ongoing uploads? Any files currently being uploaded will be stopped, and partially uploaded files will not be saved.": "Are you sure you want to cancel the ongoing uploads? Any files currently being uploaded will be stopped, and partially uploaded files will not be saved.",
"Are you sure you want to continue?": "Are you sure you want to continue?",
"Are you sure you want to delete <2>{{resourceName}}</2> in namespace <6>{{namespace}}</6>?": "Are you sure you want to delete <2>{{resourceName}}</2> in namespace <6>{{namespace}}</6>?",
"Are you sure you want to delete <2>{{resourceName}}</2>?": "Are you sure you want to delete <2>{{resourceName}}</2>?",
"Assign": "Assign",
"Assign policy nav": "Assign policy nav",
"Assigned on: {{assignedOn}}": "Assigned on: {{assignedOn}}",
"Asynchronous": "Asynchronous",
"at": "at",
"At least one action needs to be defined for the rule.": "At least one action needs to be defined for the rule.",
"At least one LocalDisk is required for FileSystem creation": "At least one LocalDisk is required for FileSystem creation",
"Attach": "Attach",
"Attach a new storage device class set to {{ resourceName }}": "Attach a new storage device class set to {{ resourceName }}",
"Attach OBC to a Deployment": "Attach OBC to a Deployment",
"Attach Storage": "Attach Storage",
"Attach Storage form": "Attach Storage form",
"Attach to Deployment": "Attach to Deployment",
"Attention": "Attention",
"Authentication method": "Authentication method",
"Authentication Namespace": "Authentication Namespace",
"Authentication Path": "Authentication Path",
"authentication-method": "authentication-method",
"Automatic backup": "Automatic backup",
"Automatic backup: {{isDbBackupEnabled}}": "Automatic backup: {{isDbBackupEnabled}}",
"Automatic capacity scaling": "Automatic capacity scaling",
"Automatic capacity scaling adds capacity through OSD expansion by resizing existing OSDs or adding new OSDs to maintain node balance.": "Automatic capacity scaling adds capacity through OSD expansion by resizing existing OSDs or adding new OSDs to maintain node balance.",
"Automatic capacity scaling cannot be disabled while scaling is in progress": "Automatic capacity scaling cannot be disabled while scaling is in progress",
"Automatic capacity scaling is available only for dynamic storage.": "Automatic capacity scaling is available only for dynamic storage.",
"Automatic capacity scaling: {{autoscaling}}": "Automatic capacity scaling: {{autoscaling}}",
"Availability status": "Availability status",
"available": "available",
"Available": "Available",
"Available capacity": "Available capacity",
"Available capacity:": "Available capacity:",
"Available policies": "Available policies",
"Available raw capacity": "Available raw capacity",
"Available versus Used Capacity": "Available versus Used Capacity",
"Average storage consumption": "Average storage consumption",
"Avoid using the form of an IP address": "Avoid using the form of an IP address",
"Azure Vault URL": "Azure Vault URL",
"Back": "Back",
"Back to IAM": "Back to IAM",
"Back to main view": "Back to main view",
"Back to nodes selection": "Back to nodes selection",
"Backend Path": "Backend Path",
"Backing storage": "Backing storage",
"Backing storage type": "Backing storage type",
"Backing storage type: {{name}}": "Backing storage type: {{name}}",
"Backing store": "Backing store",
"Backing Store": "Backing Store",
"BackingStore details": "BackingStore details",
"BackingStore Name": "BackingStore Name",
"BackingStore represents a storage target to be used as the underlying storage for the data in Multicloud Object Gateway buckets.": "BackingStore represents a storage target to be used as the underlying storage for the data in Multicloud Object Gateway buckets.",
"BackingStores": "BackingStores",
"Backup frequency": "Backup frequency",
"Backup occurs at 12:00 AM every day": "Backup occurs at 12:00 AM every day",
"Backup occurs at 12:00 AM every Saturday": "Backup occurs at 12:00 AM every Saturday",
"Backup occurs at 12:00 AM on the first Saturday of each month": "Backup occurs at 12:00 AM on the first Saturday of each month",
"Balanced mode": "Balanced mode",
"Bandwidth": "Bandwidth",
"Before choosing this option, read the section<1>Creating Disaster Recovery Policy on Hub cluster chapter of Regional-DR solution guide</1>to understand the impact and limitations of this feature.": "Before choosing this option, read the section<1>Creating Disaster Recovery Policy on Hub cluster chapter of Regional-DR solution guide</1>to understand the impact and limitations of this feature.",
"Before we can create a storage system, the Local Storage Operator needs to be installed. When installation is finished come back to Data Foundation to create a storage system.<1><0>Install</0></1>": "Before we can create a storage system, the Local Storage Operator needs to be installed. When installation is finished come back to Data Foundation to create a storage system.<1><0>Install</0></1>",
"Before you use Third-party storage": "Before you use Third-party storage",
"Between clusters": "Between clusters",
"billions": "billions",
"Block": "Block",
"Block all public access": "Block all public access",
"Block all public and cross-account access granted by existing policies.": "Block all public and cross-account access granted by existing policies.",
"Block and File": "Block and File",
"Block and File Resiliency": "Block and File Resiliency",
"Block public access": "Block public access",
"Block public access to buckets and objects granted through new public bucket policies": "Block public access to buckets and objects granted through new public bucket policies",
"Block public and cross-account access to buckets and objects through any public bucket policies": "Block public and cross-account access to buckets and objects through any public bucket policies",
"Block storage": "Block storage",
"Block volumes replication throughput": "Block volumes replication throughput",
"Block volumes snapshots synced": "Block volumes snapshots synced",
"Blocked": "Blocked",
"Blocked all": "Blocked all",
"Blocks any newly created bucket policy that grants public access to your data, helping prevent accidental exposure in the future.": "Blocks any newly created bucket policy that grants public access to your data, helping prevent accidental exposure in the future.",
"Both public and cluster network attachment definition cannot be empty": "Both public and cluster network attachment definition cannot be empty",
"Break by": "Break by",
"Break By Dropdown": "Break By Dropdown",
"Break By Dropdown Toggle": "Break By Dropdown Toggle",
"Browse": "Browse",
"Browse, upload, and manage objects in buckets.": "Browse, upload, and manage objects in buckets.",
"Bucket Class": "Bucket Class",
"Bucket created for Data Foundation's Service": "Bucket created for Data Foundation's Service",
"Bucket emptying was not completed. Check for conflicts or permissions issues that are blocking this operation.": "Bucket emptying was not completed. Check for conflicts or permissions issues that are blocking this operation.",
"Bucket must be empty before it can be deleted. Use the <2>Empty bucket</2> configuration to erase all the contents i.e. <5>objects</5> of the bucket and try again.": "Bucket must be empty before it can be deleted. Use the <2>Empty bucket</2> configuration to erase all the contents i.e. <5>objects</5> of the bucket and try again.",
"Bucket name": "Bucket name",
"Bucket Name": "Bucket Name",
"Bucket name input": "Bucket name input",
"Bucket name must be 3-63 characters, lowercase letters, numbers, dots, and hyphens": "Bucket name must be 3-63 characters, lowercase letters, numbers, dots, and hyphens",
"Bucket names are unique. If you delete a bucket, another S3 user can use the name.": "Bucket names are unique. If you delete a bucket, another S3 user can use the name.",
"Bucket overview": "Bucket overview",
"Bucket policy": "Bucket policy",
"Bucket policy applied.": "Bucket policy applied.",
"Bucket properties": "Bucket properties",
"Bucket types": "Bucket types",
"BucketClass": "BucketClass",
"BucketClass details": "BucketClass details",
"BucketClass is a CRD representing a class for buckets that defines tiering policies and data placements for an OBC.": "BucketClass is a CRD representing a class for buckets that defines tiering policies and data placements for an OBC.",
"BucketClass name": "BucketClass name",
"BucketClass Name": "BucketClass Name",
"BucketClass name: ": "BucketClass name: ",
"BucketClass type": "BucketClass type",
"BucketClass type: ": "BucketClass type: ",
"BucketClasses": "BucketClasses",
"BucketName": "BucketName",
"Buckets": "Buckets",
"Buckets card represents the number of S3 buckets managed on Multicloud Object Gateway and the number of ObjectBucketClaims and the ObjectBuckets managed on both Multicloud Object Gateway and RGW (if deployed).": "Buckets card represents the number of S3 buckets managed on Multicloud Object Gateway and the number of ObjectBucketClaims and the ObjectBuckets managed on both Multicloud Object Gateway and RGW (if deployed).",
"Buckets provisioned": "Buckets provisioned",
"By {{label}}": "By {{label}}",
"By checking this box, you are acknowledging to have run the validation test.": "By checking this box, you are acknowledging to have run the validation test.",
"By enabling thick-provisioning, volumes will allocate the requested capacity upon volume creation. Volume creation will be slower when thick-provisioning is enabled.": "By enabling thick-provisioning, volumes will allocate the requested capacity upon volume creation. Volume creation will be slower when thick-provisioning is enabled.",
"CA certificate": "CA certificate",
"CA Certificate": "CA Certificate",
"CA certificate secret": "CA certificate secret",
"Cache backing store: ": "Cache backing store: ",
"Cache data settings": "Cache data settings",
"Cache NamespaceStore": "Cache NamespaceStore",
"Caching is a policy that creates local copies of the data. It saves the copies locally to improve performance for frequently accessed data. Each cached copy has a TTL and is verified against the hub. Each non-read operation (upload, overwrite, delete) is performed on the hub": "Caching is a policy that creates local copies of the data. It saves the copies locally to improve performance for frequently accessed data. Each cached copy has a TTL and is verified against the hub. Each non-read operation (upload, overwrite, delete) is performed on the hub",
"Calculations for above metrics are based on the data gathered day to day basis. **This is only a rough estimation These calculations are based on the data gathered on day to day basis": "Calculations for above metrics are based on the data gathered day to day basis. **This is only a rough estimation These calculations are based on the data gathered on day to day basis",
"Can not generate an onboarding token at the moment": "Can not generate an onboarding token at the moment",
"Cancel": "Cancel",
"Cancel all ongoing uploads?": "Cancel all ongoing uploads?",
"Cancel upload": "Cancel upload",
"Cannot be empty": "Cannot be empty",
"Cannot be used before": "Cannot be used before",
"Cannot be used before within the same namespace": "Cannot be used before within the same namespace",
"Cannot change API group (original: \"{{apiGroup}}\", updated: \"{{newAPIGroup}}\").": "Cannot change API group (original: \"{{apiGroup}}\", updated: \"{{newAPIGroup}}\").",
"Cannot change resource kind (original: \"{{original}}\", updated: \"{{updated}}\").": "Cannot change resource kind (original: \"{{original}}\", updated: \"{{updated}}\").",
"Cannot change resource name (original: \"{{name}}\", updated: \"{{newName}}\").": "Cannot change resource name (original: \"{{name}}\", updated: \"{{newName}}\").",
"Cannot change resource namespace (original: \"{{namespace}}\", updated: \"{{newNamespace}}\").": "Cannot change resource namespace (original: \"{{namespace}}\", updated: \"{{newNamespace}}\").",
"Cannot delete this bucket: it is not empty": "Cannot delete this bucket: it is not empty",
"Cannot delete this vector bucket: it still has indexes": "Cannot delete this vector bucket: it still has indexes",
"Cannot delete while connected to an application.": "Cannot delete while connected to an application.",
"Cannot empty bucket": "Cannot empty bucket",
"Cannot failover.": "Cannot failover.",
"Cannot proceed with policy creation.": "Cannot proceed with policy creation.",
"Cannot proceed with selected device types": "Cannot proceed with selected device types",
"Cannot relocate.": "Cannot relocate.",
"Capacity": "Capacity",
"Capacity and nodes": "Capacity and nodes",
"Capacity breakdown": "Capacity breakdown",
"Capacity Card": "Capacity Card",
"Caution": "Caution",
"Ceph Monitor count: {{monitorCount}}": "Ceph Monitor count: {{monitorCount}}",
"Ceph RBD as the default StorageClass: {{isCephRBDSetAsDefault}}": "Ceph RBD as the default StorageClass: {{isCephRBDSetAsDefault}}",
"CephFS filesystem name into which the volume shall be created": "CephFS filesystem name into which the volume shall be created",
"Certificate": "Certificate",
"Certificates serve as secrets to authenticate the application's identity when requesting a token. They are also known as public keys.": "Certificates serve as secrets to authenticate the application's identity when requesting a token. They are also known as public keys.",
"Changing the storage quota from unlimited to custom is not supported after the client cluster is onboarded.": "Changing the storage quota from unlimited to custom is not supported after the client cluster is onboarded.",
"Check": "Check",
"Check potential reasons": "Check potential reasons",
"check unsuccessful on the {{clusterName}}:": "check unsuccessful on the {{clusterName}}:",
"Checking dependencies...": "Checking dependencies...",
"Checking Local Storage Operator installation": "Checking Local Storage Operator installation",
"Checks cannot be performed for the {{clusterName}}:": "Checks cannot be performed for the {{clusterName}}:",
"checks unsuccessful on the {{clusterName}}:": "checks unsuccessful on the {{clusterName}}:",
"Choose a different device type or combination, or select only mpath to proceed.": "Choose a different device type or combination, or select only mpath to proceed.",
"Choose a type:": "Choose a type:",
"Choose existing KMS connection": "Choose existing KMS connection",
"Choose how to set your Data Foundation cluster": "Choose how to set your Data Foundation cluster",
"Choose how you would like to protect this VM:": "Choose how you would like to protect this VM:",
"Choose your configuration preference to protect resources (application volumes/PVCs, or Kubernetes objects).": "Choose your configuration preference to protect resources (application volumes/PVCs, or Kubernetes objects).",
"Clean up abandoned uploads to prevent accruing unnecessary storage costs. Targets multipart uploads that were initiated but never completed.": "Clean up abandoned uploads to prevent accruing unnecessary storage costs. Targets multipart uploads that were initiated but never completed.",
"Clean up application {{appName}} to complete {{action}}": "Clean up application {{appName}} to complete {{action}}",
"Clean up application resources on current primary cluster {{ failoverCluster }} to start the relocation.": "Clean up application resources on current primary cluster {{ failoverCluster }} to start the relocation.",
"Clean up application resources on failed cluster {{ preferredCluster }} to start the replication.": "Clean up application resources on failed cluster {{ preferredCluster }} to start the replication.",
"Clean up application resources on failed cluster {{ preferredCluster }}.": "Clean up application resources on failed cluster {{ preferredCluster }}.",
"Clean up application resources on failed cluster {{cluster}}.": "Clean up application resources on failed cluster {{cluster}}.",
"Clean up application resources on the primary cluster {{cluster}} to start relocating.": "Clean up application resources on the primary cluster {{cluster}} to start relocating.",
"Cleanup Pending": "Cleanup Pending",
"Cleanup Required": "Cleanup Required",
"Clear": "Clear",
"Clear all filters": "Clear all filters",
"Clear filters": "Clear filters",
"Clear input": "Clear input",
"Clear input value": "Clear input value",
"Clear selected value": "Clear selected value",
"Client": "Client",
"Client certificate": "Client certificate",
"Client Certificate": "Client Certificate",
"Client ID": "Client ID",
"Client private key": "Client private key",
"Client Private Key": "Client Private Key",
"Client requirements": "Client requirements",
"Client version is out of date": "Client version is out of date",
"Client: {{ clientName }}": "Client: {{ clientName }}",
"Close": "Close",
"Cluster": "Cluster",
"Cluster capacity not available at this moment.": "Cluster capacity not available at this moment.",
"Cluster capacity: {{capacity}}": "Cluster capacity: {{capacity}}",
"Cluster details": "Cluster details",
"Cluster expansion limit": "Cluster expansion limit",
"Cluster has reached its expansion limit.": "Cluster has reached its expansion limit.",
"Cluster health": "Cluster health",
"Cluster health issues if network attachments are missing or misconfigured.": "Cluster health issues if network attachments are missing or misconfigured.",
"Cluster ID": "Cluster ID",
"Cluster Metadata": "Cluster Metadata",
"Cluster name": "Cluster name",
"Cluster name (ID)": "Cluster name (ID)",
"cluster name search": "cluster name search",
"cluster name search button": "cluster name search button",
"Cluster network CIDR": "Cluster network CIDR",
"Cluster Network Interface": "Cluster Network Interface",
"Cluster operator": "Cluster operator",
"Cluster Status": "Cluster Status",
"Cluster-wide": "Cluster-wide",
"Cluster-Wide": "Cluster-Wide",
"Cluster-Wide and StorageClass": "Cluster-Wide and StorageClass",
"Cluster-wide encryption": "Cluster-wide encryption",
"Cluster:": "Cluster:",
"Cluster: {{clusterName}}": "Cluster: {{clusterName}}",
"Cluster: {{clusters}}": "Cluster: {{clusters}}",
"Clusters": "Clusters",
"Clusters:": "Clusters:",
"Complete": "Complete",
"Completed": "Completed",
"Completion time: {{totalTimeElapsed}}": "Completion time: {{totalTimeElapsed}}",
"Composable table": "Composable table",
"Compressed": "Compressed",
"Compression": "Compression",
"Compression eligibility": "Compression eligibility",
"Compression eligibility indicates the percentage of incoming data that is compressible": "Compression eligibility indicates the percentage of incoming data that is compressible",
"Compression ratio": "Compression ratio",
"Compression ratio indicates the achieved compression on eligible data for this pool": "Compression ratio indicates the achieved compression on eligible data for this pool",
"Compression savings": "Compression savings",
"Compression savings indicates the total savings gained from compression for this pool, including replicas": "Compression savings indicates the total savings gained from compression for this pool, including replicas",
"Compression status": "Compression status",
"Conditional filters": "Conditional filters",
"Conditions": "Conditions",
"ConfigMap": "ConfigMap",
"ConfigMaps": "ConfigMaps",
"Configuration": "Configuration",
"Configure and recover your business critical applications in event of any disaster.": "Configure and recover your business critical applications in event of any disaster.",
"Configure Ceph Monitor": "Configure Ceph Monitor",
"Configure connection network": "Configure connection network",
"Configure Data Foundation": "Configure Data Foundation",
"Configure default RBD StorageClass to avoid adding manual annotations within a StorageClass and selecting a specific StorageClass when making storage requests or provisions in your PVCs.": "Configure default RBD StorageClass to avoid adding manual annotations within a StorageClass and selecting a specific StorageClass when making storage requests or provisions in your PVCs.",
"Configure definition": "Configure definition",
"Configure performance": "Configure performance",
"Configure Performance": "Configure Performance",
"Configure recovery to your failover cluster with a disaster recovery policy.<1></1>Click the <3>Create DRPolicy</3> button to get started.": "Configure recovery to your failover cluster with a disaster recovery policy.<1></1>Click the <3>Create DRPolicy</3> button to get started.",
"Configuring": "Configuring",
"Confirm": "Confirm",
"CONFIRM": "CONFIRM",
"Confirm changes?": "Confirm changes?",
"Confirm delete": "Confirm delete",
"Confirm delete bucket policy?": "Confirm delete bucket policy?",
"Confirm delete vector bucket policy?": "Confirm delete vector bucket policy?",
"Confirm deletion by typing <2>{{name}}</2> below:": "Confirm deletion by typing <2>{{name}}</2> below:",
"Confirm name": "Confirm name",
"Confirm remove": "Confirm remove",
"Confirm save changes?": "Confirm save changes?",
"Connect": "Connect",
"Connect an external storage system to get started. Add <2>IBM FlashSystem, IBM Scale or Red Hat Ceph Storage </2> to begin managing it.": "Connect an external storage system to get started. Add <2>IBM FlashSystem, IBM Scale or Red Hat Ceph Storage </2> to begin managing it.",
"Connect and create": "Connect and create",
"Connect clusters": "Connect clusters",
"Connect external system": "Connect external system",
"Connect external systems": "Connect external systems",
"Connect IBM FlashSystem": "Connect IBM FlashSystem",
"Connect IBM Scale (CNSA)": "Connect IBM Scale (CNSA)",
"Connect managed clusters to view the topology": "Connect managed clusters to view the topology",
"Connect Red Hat Ceph storage": "Connect Red Hat Ceph storage",
"Connect Storage Area Network": "Connect Storage Area Network",
"Connect to a Key Management Service": "Connect to a Key Management Service",
"Connect to a Red Hat Ceph cluster to unify and scale your block, file, and object storage with Data Foundation": "Connect to a Red Hat Ceph cluster to unify and scale your block, file, and object storage with Data Foundation",
"Connect to an external key management service": "Connect to an external key management service",
"Connect to an external system": "Connect to an external system",
"Connect to an IBM FlashSystem to power Data Foundation with fast reliable block storage optimized for enterprise performance.": "Connect to an IBM FlashSystem to power Data Foundation with fast reliable block storage optimized for enterprise performance.",
"Connect to external storage": "Connect to external storage",
"Connect to IBM FlashSystem to power Data Foundation with fast, reliable block storage optimized for eterprise performance,": "Connect to IBM FlashSystem to power Data Foundation with fast, reliable block storage optimized for eterprise performance,",
"Connect to IBM Scale (CNSA) to power Data Foundation with fast, reliable file storage optimized for enterprise performance.": "Connect to IBM Scale (CNSA) to power Data Foundation with fast, reliable file storage optimized for enterprise performance.",
"Connect to IBM Storage Scale to deliver fast, scalable file storage for Data Foundation": "Connect to IBM Storage Scale to deliver fast, scalable file storage for Data Foundation",
"Connected": "Connected",
"Connected applications": "Connected applications",
"Connected clusters": "Connected clusters",
"Connecting": "Connecting",
"Connection": "Connection",
"Connection details": "Connection details",
"Connection name": "Connection name",
"Connection settings": "Connection settings",
"Connection status": "Connection status",
"Console link": "Console link",
"Console link information": "Console link information",
"Consumption trend": "Consumption trend",
"Continue to Applications page": "Continue to Applications page",
"Copied": "Copied",
"Copied to clipboard": "Copied to clipboard",
"Copy": "Copy",
"Copy presigned URL to clipboard": "Copy presigned URL to clipboard",
"Copy to clipboard": "Copy to clipboard",
"Copy to share": "Copy to share",
"CORS": "CORS",
"CORS details": "CORS details",
"Cors rules list page": "Cors rules list page",
"CORS will affect certain actions in object browser.": "CORS will affect certain actions in object browser.",
"Cosine": "Cosine",
"CPU": "CPU",
"CPU and memory: {{cpu, number}} CPU and {{memory}} memory": "CPU and memory: {{cpu, number}} CPU and {{memory}} memory",
"CPU usage": "CPU usage",
"CPUs": "CPUs",
"CPUs required": "CPUs required",
"Create": "Create",
"Create \"{{filterValue}}\"": "Create \"{{filterValue}}\"",
"Create a disaster recovery policy": "Create a disaster recovery policy",
"Create a new StorageClass using local storage devices": "Create a new StorageClass using local storage devices",
"Create a secret with the token for every namespace using encrypted PVCs.": "Create a secret with the token for every namespace using encrypted PVCs.",
"Create a storage cluster using local devices on your OpenShift nodes. Deploys Data Foundation with block, shared filesystem, and object services.": "Create a storage cluster using local devices on your OpenShift nodes. Deploys Data Foundation with block, shared filesystem, and object services.",
"Create a StorageClient to connect to a Data Foundation system.": "Create a StorageClient to connect to a Data Foundation system.",
"Create a vector bucket to store and manage your vector indexes.": "Create a vector bucket to store and manage your vector indexes.",
"Create a vector index to start storing AI-ready vectors in this bucket.": "Create a vector index to start storing AI-ready vectors in this bucket.",
"Create and manage your buckets": "Create and manage your buckets",
"Create BackingStore": "Create BackingStore",
"Create BackingStore ": "Create BackingStore ",
"Create bucket": "Create bucket",
"Create Bucket": "Create Bucket",
"Create BucketClass": "Create BucketClass",
"Create CORS rule": "Create CORS rule",
"Create DRPolicy": "Create DRPolicy",
"Create folder": "Create folder",
"Create IAM user": "Create IAM user",
"Create IBM Scale (CNSA)": "Create IBM Scale (CNSA)",
"Create lifecycle rule": "Create lifecycle rule",
"Create local volume set": "Create local volume set",
"Create LocalVolumeSet": "Create LocalVolumeSet",
"Create LUN group": "Create LUN group",
"Create NamespaceStore": "Create NamespaceStore",
"Create NamespaceStore ": "Create NamespaceStore ",
"Create new BackingStore": "Create new BackingStore",
"Create new BackingStore ": "Create new BackingStore ",
"Create new BucketClass": "Create new BucketClass",
"Create new claim": "Create new claim",
"Create new KMS connection": "Create new KMS connection",
"Create new NamespaceStore": "Create new NamespaceStore",
"Create new NamespaceStore ": "Create new NamespaceStore ",
"Create new storage pool": "Create new storage pool",
"Create new StorageClass": "Create new StorageClass",
"Create new volume set instance": "Create new volume set instance",
"Create ObjectBucketClaim": "Create ObjectBucketClaim",
"Create on": "Create on",
"Create policy": "Create policy",
"Create presigned URL": "Create presigned URL",
"Create storage class": "Create storage class",
"Create Storage Cluster": "Create Storage Cluster",
"Create Storage Consumer": "Create Storage Consumer",
"Create storage pool": "Create storage pool",
"Create Storage Pool": "Create Storage Pool",
"Create storage system": "Create storage system",
"Create StorageClient": "Create StorageClient",
"Create StorageConsumer": "Create StorageConsumer",
"Create user": "Create user",
"Create users to generate and manage access keys and policies": "Create users to generate and manage access keys and policies",
"Create users to generate and manage access keys and policies.": "Create users to generate and manage access keys and policies.",
"Create vector bucket": "Create vector bucket",
"Create vector index": "Create vector index",
"Create via Object Bucket Claim": "Create via Object Bucket Claim",
"Create via S3 API": "Create via S3 API",
"Created": "Created",
"Created at": "Created at",
"Created on": "Created on",
"Created via OBC": "Created via OBC",
"Created via S3": "Created via S3",
"Creating": "Creating",
"Creating user will generate access key and secret key": "Creating user will generate access key and secret key",
"Creation date": "Creation date",
"Creation Date": "Creation Date",
"Critical": "Critical",
"Cross Origin Resource Sharing (CORS)": "Cross Origin Resource Sharing (CORS)",
"Current": "Current",
"Current progression": "Current progression",
"Current selections": "Current selections",
"Current status:": "Current status:",
"Current top 10 subvolumes on all clusters": "Current top 10 subvolumes on all clusters",
"Current value: ": "Current value: ",
"Currently Used:": "Currently Used:",
"Custom": "Custom",
"Custom headers": "Custom headers",
"Custom origins": "Custom origins",
"Customer root key": "Customer root key",
"CustomResourceDefinition": "CustomResourceDefinition",
"CustomResourceDefinitions": "CustomResourceDefinitions",
"Daily": "Daily",
"Data": "Data",
"Data compression": "Data compression",
"Data Consumption Graph": "Data Consumption Graph",
"Data encryption for block and file storage. MultiCloud Object Gateway supports encryption for objects by default.": "Data encryption for block and file storage. MultiCloud Object Gateway supports encryption for objects by default.",
"Data encryption for block storage.": "Data encryption for block storage.",
"Data encryption for object storage.": "Data encryption for object storage.",
"Data Foundation": "Data Foundation",
"Data Foundation can be configured to use compression. The efficiency rate reflects the actual compression ratio when using such a configuration.": "Data Foundation can be configured to use compression. The efficiency rate reflects the actual compression ratio when using such a configuration.",
"Data Foundation does not support HDD disk type in internal mode. You are trying to install an unsupported cluster by choosing HDDs as the local devices. To continue installation, select a supported disk type with internal mode.": "Data Foundation does not support HDD disk type in internal mode. You are trying to install an unsupported cluster by choosing HDDs as the local devices. To continue installation, select a supported disk type with internal mode.",
"Data Foundation does not support HDD disks as local devices. Select SSD if you plan to use Data Foundation.": "Data Foundation does not support HDD disks as local devices. Select SSD if you plan to use Data Foundation.",
"Data Foundation endpoint": "Data Foundation endpoint",
"Data Foundation is gathering required resources, this may take up to a minute.": "Data Foundation is gathering required resources, this may take up to a minute.",
"Data foundation must be {{version}} or above.": "Data foundation must be {{version}} or above.",
"Data Foundation simplifies persistent storage and data services across your cloud-native infrastructure": "Data Foundation simplifies persistent storage and data services across your cloud-native infrastructure",
"Data Foundation simplifies persistent storage and data services across your infrastructure.": "Data Foundation simplifies persistent storage and data services across your infrastructure.",
"Data Foundation status": "Data Foundation status",
"Data Foundation supports only SSD/NVMe disk type for internal mode deployment.": "Data Foundation supports only SSD/NVMe disk type for internal mode deployment.",
"Data Foundation version": "Data Foundation version",
"Data Foundation version sync": "Data Foundation version sync",
"Data Foundation will use a StorageClass provided by the Local Storage Operator (LSO) on top of your attached drives. This option is available on any platform with devices attached to nodes.": "Data Foundation will use a StorageClass provided by the Local Storage Operator (LSO) on top of your attached drives. This option is available on any platform with devices attached to nodes.",
"Data Foundation will use an existing StorageClass available on your hosting platform.": "Data Foundation will use an existing StorageClass available on your hosting platform.",
"Data Foundation will use the default pod network.": "Data Foundation will use the default pod network.",
"Data Foundation's StorageCluster is not available. Try again after the StorageCluster is ready to use.": "Data Foundation's StorageCluster is not available. Try again after the StorageCluster is ready to use.",
"Data is stored on filesystem NamespaceStores without performing de-duplication, compression, or encryption. BucketClasses of vector type allow storing vector indexes and serving semantic search workloads from them. These are best used with Object Bucket Claims or the S3 Vectors API.": "Data is stored on filesystem NamespaceStores without performing de-duplication, compression, or encryption. BucketClasses of vector type allow storing vector indexes and serving semantic search workloads from them. These are best used with Object Bucket Claims or the S3 Vectors API.",
"Data is stored on the NamespaceStores without performing de-duplication, compression, or encryption. BucketClasses of namespace type allow connecting to existing data and serving from them. These are best used for existing data or when other applications (and cloud-native services) need to access the data from outside Data Foundation.": "Data is stored on the NamespaceStores without performing de-duplication, compression, or encryption. BucketClasses of namespace type allow connecting to existing data and serving from them. These are best used for existing data or when other applications (and cloud-native services) need to access the data from outside Data Foundation.",
"Data loss may occur, only recommended for small clusters or when backups are available or data loss is acceptable": "Data loss may occur, only recommended for small clusters or when backups are available or data loss is acceptable",
"Data placement capabilities are built as a multi-layer structure here are the layers bottom-up:": "Data placement capabilities are built as a multi-layer structure here are the layers bottom-up:",
"Data protection policy": "Data protection policy",
"Data resiliency": "Data resiliency",
"Data Resiliency": "Data Resiliency",
"Data Services": "Data Services",
"Data unavailability or loss due to broken internal communication between storage components.": "Data unavailability or loss due to broken internal communication between storage components.",
"Data will be consumed by a Multi-cloud object gateway, deduped, compressed, and encrypted. The encrypted chunks would be saved on the selected BackingStores. Best used when the applications would always use the Data Foundation endpoints to access the data.": "Data will be consumed by a Multi-cloud object gateway, deduped, compressed, and encrypted. The encrypted chunks would be saved on the selected BackingStores. Best used when the applications would always use the Data Foundation endpoints to access the data.",
"Database name": "Database name",
"day": "day",
"days": "days",
"Deactivate": "Deactivate",
"Deactivate access key": "Deactivate access key",
"Deactivated": "Deactivated",
"Decide how often your data should be replicated and where it should be stored, either regionally or within your local area, to ensure a quick recovery in case of a disaster.": "Decide how often your data should be replicated and where it should be stored, either regionally or within your local area, to ensure a quick recovery in case of a disaster.",
"Decrease duration": "Decrease duration",
"Decrement": "Decrement",
"Deduplicated": "Deduplicated",
"Deduplicated compressed": "Deduplicated compressed",
"Deduplicated thin": "Deduplicated thin",
"Default (Pod)": "Default (Pod)",
"Default pool cannot be deleted.": "Default pool cannot be deleted.",
"Default StorageClass for virtualization : {{isVirtualizeStorageClassDefault}}": "Default StorageClass for virtualization : {{isVirtualizeStorageClassDefault}}",
"Define specific criteria for selecting objects that the rules will apply to. Object tags or object size filters do not apply to incomplete multipart uploads or expired object delete markers.": "Define specific criteria for selecting objects that the rules will apply to. Object tags or object size filters do not apply to incomplete multipart uploads or expired object delete markers.",
"Define the interval for Kubernetes object replication": "Define the interval for Kubernetes object replication",
"Define what happens to objects in an S3 bucket during their lifecycle.": "Define what happens to objects in an S3 bucket during their lifecycle.",
"Define where to sync or replicate your application volumes and Kubernetes object using a disaster recovery policy.": "Define where to sync or replicate your application volumes and Kubernetes object using a disaster recovery policy.",
"Defines the object-store service and the bucket provisioner.": "Defines the object-store service and the bucket provisioner.",
"Degraded": "Degraded",
"delete": "delete",
"Delete": "Delete",
"Delete (expire current versions) {{ days }} days after creation.": "Delete (expire current versions) {{ days }} days after creation.",
"Delete {{kind}}?": "Delete {{kind}}?",
"Delete {{resourceLabel}}": "Delete {{resourceLabel}}",
"Delete access key": "Delete access key",
"Delete access key?": "Delete access key?",
"Delete access keys": "Delete access keys",
"Delete an object after a specified time.": "Delete an object after a specified time.",
"Delete BlockPool": "Delete BlockPool",
"Delete bucket": "Delete bucket",
"Delete bucket permanently?": "Delete bucket permanently?",
"Delete CORS rule?": "Delete CORS rule?",
"Delete dependent objects of this resource": "Delete dependent objects of this resource",
"Delete expired object delete markers": "Delete expired object delete markers",
"Delete expired object delete markers cannot be enabled when delete object (i.e expiry current versions) is selected.": "Delete expired object delete markers cannot be enabled when delete object (i.e expiry current versions) is selected.",
"Delete incomplete multipart uploads": "Delete incomplete multipart uploads",
"Delete index": "Delete index",
"Delete index permanently?": "Delete index permanently?",
"Delete lifecycle rule?": "Delete lifecycle rule?",
"Delete LUN group": "Delete LUN group",
"Delete marker": "Delete marker",
"Delete noncurrent versions": "Delete noncurrent versions",
"Delete noncurrent versions {{ days }} days after they become noncurrent, retaining the latest {{ count }} versions._one": "Delete noncurrent versions {{ days }} days after they become noncurrent, retaining the latest {{ count }} versions.",
"Delete noncurrent versions {{ days }} days after they become noncurrent, retaining the latest {{ count }} versions._other": "Delete noncurrent versions {{ days }} days after they become noncurrent, retaining the latest {{ count }} versions.",
"Delete OBC": "Delete OBC",
"Delete object": "Delete object",
"Delete object (i.e., expiry current versions)": "Delete object (i.e., expiry current versions)",
"Delete object?": "Delete object?",
"Delete objects": "Delete objects",
"Delete objects?": "Delete objects?",
"Delete older versions of objects after they become noncurrent (e.g., a new version overwrites them).": "Delete older versions of objects after they become noncurrent (e.g., a new version overwrites them).",
"Delete older versions of objects after they become noncurrent (e.g., a new version overwrites them). Applies only to versioned buckets.": "Delete older versions of objects after they become noncurrent (e.g., a new version overwrites them). Applies only to versioned buckets.",
"Delete Pool": "Delete Pool",
"Delete rule": "Delete rule",
"Delete status": "Delete status",
"Delete Storage Pool": "Delete Storage Pool",
"Delete StorageConsumer": "Delete StorageConsumer",
"Delete the access key? All policies and permissions under this access key will be deleted.": "Delete the access key? All policies and permissions under this access key will be deleted.",
"Delete the IAM user permanently? All user data, access keys, secret keys and inline policies related to this user will also be deleted": "Delete the IAM user permanently? All user data, access keys, secret keys and inline policies related to this user will also be deleted",
"Delete this marker to restore object": "Delete this marker to restore object",
"Delete this version": "Delete this version",
"Delete user": "Delete user",
"Delete user?": "Delete user?",
"Delete version?": "Delete version?",
"Delete versions": "Delete versions",
"Delete versions?": "Delete versions?",
"Deleted objects will no longer be visible in the bucket. If versioning is enabled, a delete marker is created, allowing recovery from previous versions. For unversioned buckets, deletion is permanent and cannot be undone.": "Deleted objects will no longer be visible in the bucket. If versioning is enabled, a delete marker is created, allowing recovery from previous versions. For unversioned buckets, deletion is permanent and cannot be undone.",
"Deleting": "Deleting",
"Deleting a bucket cannot be undone.": "Deleting a bucket cannot be undone.",
"Deleting a bucket cannot be undone. Bucket names are unique. If you delete a bucket, another S3 user can use the name.": "Deleting a bucket cannot be undone. Bucket names are unique. If you delete a bucket, another S3 user can use the name.",
"Deleting this lifecycle rule may prevent the removal of existing objects, potentially increasing storage costs.": "Deleting this lifecycle rule may prevent the removal of existing objects, potentially increasing storage costs.",
"Deletion policy": "Deletion policy",
"Denies access to the bucket if the request is not made over HTTPS": "Denies access to the bucket if the request is not made over HTTPS",
"Deploy a lean mode cluster?": "Deploy a lean mode cluster?",
"Deploy Data Foundation": "Deploy Data Foundation",
"Deploy Data Foundation on IBM FlashSystem": "Deploy Data Foundation on IBM FlashSystem",
"Deploying the application on the target cluster.": "Deploying the application on the target cluster.",
"Deployment": "Deployment",
"Deployment details": "Deployment details",
"Deployment is unavailable": "Deployment is unavailable",
"Deployment Name": "Deployment Name",
"Deployment type": "Deployment type",
"Deployment type: {{deployment}}": "Deployment type: {{deployment}}",
"Deployments": "Deployments",
"Deployments are unavailable": "Deployments are unavailable",
"Deploys Data Foundation with block, shared fileSystem and object services.": "Deploys Data Foundation with block, shared fileSystem and object services.",
"Deploys MultiCloud Object Gateway without block and file services.": "Deploys MultiCloud Object Gateway without block and file services.",
"Description": "Description",
"Description (Optional)": "Description (Optional)",
"Description of bucket class": "Description of bucket class",
"Description tag": "Description tag",
"Description tag will be attached to the access key for this user": "Description tag will be attached to the access key for this user",
"Description tag: ": "Description tag: ",
"Description: ": "Description: ",
"Destination namespace": "Destination namespace",
"Details": "Details",
"Details needed": "Details needed",
"Determines what happens to persistent volumes when the associated persistent volume claim is deleted. Defaults to 'Delete'": "Determines what happens to persistent volumes when the associated persistent volume claim is deleted. Defaults to 'Delete'",
"Determines what persistent volume claims will be provisioned and bound. Defaults to 'WaitForFirstCustomer'": "Determines what persistent volume claims will be provisioned and bound. Defaults to 'WaitForFirstCustomer'",
"Dev preview": "Dev preview",
"Device class": "Device class",
"device class name": "device class name",
"Device class requirements": "Device class requirements",
"Device type": "Device type",
"Dimension": "Dimension",
"Disable automatic capacity scaling?": "Disable automatic capacity scaling?",
"Disabled": "Disabled",
"Disabled because the ObjectBucketClaim is being deleted.": "Disabled because the ObjectBucketClaim is being deleted.",
"Disabling Automatic capacity scaling will prevent the cluster from automatically increasing raw capacity when needed. This may lead to capacity shortages and potential disruptions.": "Disabling Automatic capacity scaling will prevent the cluster from automatically increasing raw capacity when needed. This may lead to capacity shortages and potential disruptions.",
"Disaster recovery": "Disaster recovery",
"Disaster recovery policy": "Disaster recovery policy",
"Disaster recovery policy details": "Disaster recovery policy details",
"Disaster recovery removed successfully.": "Disaster recovery removed successfully.",
"Discard delete marker": "Discard delete marker",
"Disconnected": "Disconnected",
"Discover Disks": "Discover Disks",
"Discovered": "Discovered",
"Discovered applications": "Discovered applications",
"Discovering disks on all hosts. This may take a few minutes.": "Discovering disks on all hosts. This may take a few minutes.",
"Discovers available disks on all nodes.": "Discovers available disks on all nodes.",
"Disk size": "Disk size",
"Disk State": "Disk State",
"Disk type": "Disk type",
"Disk type is not compatible with the selected backing storage.": "Disk type is not compatible with the selected backing storage.",
"Disk type is set to SSD/NVMe": "Disk type is set to SSD/NVMe",
"Disks": "Disks",
"Disks limit will set the maximum number of PVs to create on a node. If the field is empty we will create PVs for all available disks on the matching nodes.": "Disks limit will set the maximum number of PVs to create on a node. If the field is empty we will create PVs for all available disks on the matching nodes.",
"Disks List": "Disks List",
"Disks Not Found": "Disks Not Found",
"Disks on all nodes": "Disks on all nodes",
"Disks on selected nodes": "Disks on selected nodes",
"Dismiss": "Dismiss",
"Distance metric": "Distance metric",
"Distribute resources": "Distribute resources",
"Documentation help link": "Documentation help link",
"Documentation link": "Documentation link",
"does not equal": "does not equal",
"does not equal any of": "does not equal any of",
"does not exist": "does not exist",
"Done": "Done",
"Download": "Download",
"Download script": "Download script",
"Download secret key": "Download secret key",
"Downloading": "Downloading",
"DR cluster": "DR cluster",
"DR Cluster operator": "DR Cluster operator",
"DR Operations ({{count}})_one": "DR Operations ({{count}})",
"DR Operations ({{count}})_other": "DR Operations ({{count}})",
"DR Operations ({{filtered}} of {{total}})": "DR Operations ({{filtered}} of {{total}})",
"DR Operations table": "DR Operations table",
"DR Policy:": "DR Policy:",
"DR Status": "DR Status",
"DR status popover": "DR status popover",
"Drag a file here, upload files, or start from scratch.": "Drag a file here, upload files, or start from scratch.",
"Drag and drop files/folders here.": "Drag and drop files/folders here.",
"Drag to reorder": "Drag to reorder",
"Driver": "Driver",
"DRPC": "DRPC",
"DRPlacementControl resource not found for": "DRPlacementControl resource not found for",
"DRPolicies": "DRPolicies",
"Due to the mismatch in the client and provider version this provider cluster cannot be upgraded.": "Due to the mismatch in the client and provider version this provider cluster cannot be upgraded.",
"Duplicate keys found.": "Duplicate keys found.",
"Duration": "Duration",
"Duration value": "Duration value",
"Each BackingStore can be used for one tier at a time. Selecting a BackingStore in one tier will remove the resource from the second tier option and vice versa.": "Each BackingStore can be used for one tier at a time. Selecting a BackingStore in one tier will remove the resource from the second tier option and vice versa.",
"Edit": "Edit",
"Edit {{description}}": "Edit {{description}}",
"Edit {{resourceLabel}}": "Edit {{resourceLabel}}",
"Edit annotations": "Edit annotations",
"Edit BlockPool": "Edit BlockPool",
"Edit bucket": "Edit bucket",
"Edit Bucket Class Resources": "Edit Bucket Class Resources",
"Edit bucket policy": "Edit bucket policy",
"Edit BucketClass Resource": "Edit BucketClass Resource",
"Edit configuration": "Edit configuration",
"Edit CORS rule": "Edit CORS rule",
"Edit description tag": "Edit description tag",
"Edit labels": "Edit labels",
"Edit lifecycle rule": "Edit lifecycle rule",
"Edit or delete the current bucket policy to customize access permissions or remove the existing configuration.": "Edit or delete the current bucket policy to customize access permissions or remove the existing configuration.",
"Edit or delete the current vector bucket policy to customize access permissions or remove the existing configuration.": "Edit or delete the current vector bucket policy to customize access permissions or remove the existing configuration.",
"Edit Pool": "Edit Pool",
"Edit Storage Pool": "Edit Storage Pool",
"Edit storage quota": "Edit storage quota",
"Edit to add resources": "Edit to add resources",
"Effective capacity": "Effective capacity",
"Egress": "Egress",
"Egress Per Provider": "Egress Per Provider",
"Empty bucket": "Empty bucket",
"Empty bucket permanently?": "Empty bucket permanently?",
"Empty Page": "Empty Page",
"Emptying the bucket will permanentaly delete all objects. This action cannot be undone.": "Emptying the bucket will permanentaly delete all objects. This action cannot be undone.",
"Enable": "Enable",
"Enable arbiter": "Enable arbiter",
"Enable automatic capacity scaling for your cluster": "Enable automatic capacity scaling for your cluster",
"Enable client-side certificates": "Enable client-side certificates",
"Enable CORS": "Enable CORS",
"Enable CORS?": "Enable CORS?",
"Enable data encryption": "Enable data encryption",
"Enable data encryption for block and file storage": "Enable data encryption for block and file storage",
"Enable disaster recovery protection by selecting the namespaces of your ACM discovered application.": "Enable disaster recovery protection by selecting the namespaces of your ACM discovered application.",
"Enable disaster recovery support for restored and cloned PersistentVolumeClaims (For Data Foundation only)": "Enable disaster recovery support for restored and cloned PersistentVolumeClaims (For Data Foundation only)",
"Enable encryption": "Enable encryption",
"Enable Encryption": "Enable Encryption",
"Enable encryption on device set": "Enable encryption on device set",
"Enable encryption on StorageClass": "Enable encryption on StorageClass",
"Enable forceful deployment": "Enable forceful deployment",
"Enable network file system (NFS)": "Enable network file system (NFS)",
"Enable replication": "Enable replication",
"Enable S3-compatible object storage that spans across multiple cloud providers or hybrid environments": "Enable S3-compatible object storage that spans across multiple cloud providers or hybrid environments",
"Enable Thick Provisioning": "Enable Thick Provisioning",
"Enable this for encrytion on flight with the Postgres server": "Enable this for encrytion on flight with the Postgres server",
"Enable TLS/SSL": "Enable TLS/SSL",
"Enable Versioning": "Enable Versioning",
"Enable versioning may lead to increased expenses. You will need to update the lifecycle rules after enabling versions.": "Enable versioning may lead to increased expenses. You will need to update the lifecycle rules after enabling versions.",
"Enabled": "Enabled",
"Enables mirroring/replication between two selected clusters, ensuring failover or relocation between the two clusters in the event of an outage or planned maintenance.": "Enables mirroring/replication between two selected clusters, ensuring failover or relocation between the two clusters in the event of an outage or planned maintenance.",
"Enabling compression may result in little or no space savings for encrypted or random data. Also, enabling compression may have an impact on I/O performance.": "Enabling compression may result in little or no space savings for encrypted or random data. Also, enabling compression may have an impact on I/O performance.",
"Enabling CORS will allow browsers to request resources from the bucket.": "Enabling CORS will allow browsers to request resources from the bucket.",
"Encryption": "Encryption",
"Encryption CA certificate": "Encryption CA certificate",
"Encryption for all data passing over the network": "Encryption for all data passing over the network",
"Encryption for PVs": "Encryption for PVs",
"Encryption for the entire cluster (block and file)": "Encryption for the entire cluster (block and file)",
"Encryption level": "Encryption level",
"Encryption password requirements": "Encryption password requirements",
"Encryption Summary": "Encryption Summary",
"Encryption summary popover": "Encryption summary popover",
"Encryption username requirements": "Encryption username requirements",
"Encryption: {{encryptionStatus}}": "Encryption: {{encryptionStatus}}",