forked from ManageIQ/manageiq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyaml_strings.rb
4374 lines (4374 loc) · 199 KB
/
yaml_strings.rb
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
# This is automatically generated file (rake locale:extract_yaml_strings).
# The file contains strings extracted from various yaml files for gettext to find.
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Access to Everything")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Workloads")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Workloads Views")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Accordions")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("All Accordions under Workloads")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("VMs & Instances")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("VMs & Instances Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Templates & Images")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Templates & Images Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/Vm-VmReconfigureRequest.yaml
# TRANSLATORS: file: product/views/Vm-all_vms.yaml
# TRANSLATORS: file: product/views/Vm.yaml
# TRANSLATORS: file: product/views/Vm__restricted.yaml
_("Virtual Machines")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Virtual Machine Views")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("All Accordions under Virtual Machines")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("VMs & Templates")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("VMs & Templates Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/CimBaseStorageExtent.yaml
# TRANSLATORS: file: product/views/ManageIQ_Providers_CloudManager_Vm-vms.yaml
# TRANSLATORS: file: product/views/ManageIQ_Providers_InfraManager.yaml
# TRANSLATORS: file: product/views/ManageIQ_Providers_InfraManager_Vm.yaml
# TRANSLATORS: file: product/views/OntapFileShare.yaml
# TRANSLATORS: file: product/views/OntapLogicalDisk.yaml
# TRANSLATORS: file: product/views/OntapStorageSystem.yaml
# TRANSLATORS: file: product/views/OntapStorageVolume.yaml
# TRANSLATORS: file: product/views/SniaLocalFileSystem.yaml
# TRANSLATORS: file: product/views/Vm-VmReconfigureRequest.yaml
# TRANSLATORS: file: product/views/Vm-all_vms.yaml
# TRANSLATORS: file: product/views/Vm.yaml
# TRANSLATORS: file: product/views/Vm__restricted.yaml
_("VMs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("VMs Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/ManageIQ_Providers_InfraManager.yaml
# TRANSLATORS: file: product/views/ManageIQ_Providers_InfraManager_Template.yaml
# TRANSLATORS: file: product/views/MiqTemplate-all_miq_templates.yaml
# TRANSLATORS: file: product/views/MiqTemplate.yaml
_("Templates")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Templates Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/AvailabilityZone.yaml
# TRANSLATORS: file: product/views/CloudNetwork.yaml
# TRANSLATORS: file: product/views/CloudSubnet.yaml
# TRANSLATORS: file: product/views/CloudTenant.yaml
# TRANSLATORS: file: product/views/Flavor.yaml
# TRANSLATORS: file: product/views/ManageIQ_Providers_CloudManager.yaml
# TRANSLATORS: file: product/views/ManageIQ_Providers_CloudManager_Vm.yaml
# TRANSLATORS: file: product/views/ManageIQ_Providers_NetworkManager.yaml
# TRANSLATORS: file: product/views/MiqAeInstance.yaml
# TRANSLATORS: file: product/views/NetworkRouter.yaml
# TRANSLATORS: file: product/views/OrchestrationStack.yaml
# TRANSLATORS: file: product/views/SecurityGroup.yaml
_("Instances")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Instance Views")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("All Accordions under Instances")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Instances by Provider")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Instances by Provider Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Images by Provider")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Images by Provider Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Instances Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/ManageIQ_Providers_CloudManager.yaml
# TRANSLATORS: file: product/views/ManageIQ_Providers_CloudManager_Template.yaml
_("Images")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Images Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/AutomationRequest.yaml
# TRANSLATORS: file: product/views/MiqRequest.yaml
_("Requests")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Requests")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Requests")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("List")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Requests")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Show")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Requests")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Reload")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Reload Requests")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Operate")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Requests")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Approve and Deny")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Approve and Deny Requests")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Requests")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy a Request")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete Requests")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Request")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Catalogs Explorer")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Catalogs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/ServiceCatalog.yaml
# TRANSLATORS: file: product/views/ServiceTemplate.yaml
_("Catalog Items")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under All Catalog Items Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Catalog Items")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Catalog Items")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Catalog Item")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Catalog Items")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Composite Catalog Item")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Composite Catalog Item")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add Composite Catalog Item")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Composite Catalog Item")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Atomic Catalog Item")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit an Atomic Catalog Item")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add Atomic Catalog Item")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Catalog Items")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Catalog Items Tags")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Service Catalogs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under All Service Catalogs Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Available Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Order Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Request to Order Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/ServiceTemplateCatalog.yaml
_("Catalogs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Catalogs Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Catalogs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Catalog")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Catalog")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Catalog")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Catalog")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Catalog")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add Catalog")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Composite Catalog")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/OrchestrationTemplate.yaml
_("Orchestration Templates")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Orchestration Templates Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Orchestration Templates")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Orchestration Templates")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add Orchestration Template")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Orchestration Template")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy Orchestration Template")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Orchestration Template")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Orchestration Templates")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Orchestration Templates Tags")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Make Template Orderable")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Make Orchestration Template orderable")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Create Service Dialog from Orchestration Template")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("My Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("All Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under All Services Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View All Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Set Ownership")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Set Ownership of VMs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Reconfigure Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Reconfigure Services Options")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Set Retirement Date")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Set Retirement Date for Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Retire Services")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/ManageIQ_Providers_CloudManager.yaml
_("Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Timeline")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Timelines for Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Discover")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Discover Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Manage Policies")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Manage Policies of Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Refresh")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Refresh Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Re-check Authentication Status")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Re-check Authentication Status of Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Cloud Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Cloud Provider")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Cloud Provider")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Availability Zones")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Availability Zones")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Availability Zones")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Availability Zones")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Availability Zones")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Utilization")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Show Capacity & Utilization data of Availability Zones")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Timelines for Availability Zones")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Availability Zones")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Availability Zone")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Cloud Object Stores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Cloud Object Stores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Volumes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Object Store Containers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Object Store Containers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Object Store Containers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Object Store Containers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Cloud Objects")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Cloud Objects")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Objects")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Objects")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Objects")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Objects")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Objects")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Cloud Tenants")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Cloud Tenants")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Tenants")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Tenants")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Tenants")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Show Capacity & Utilization data of Tenants")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Timelines for Tenants")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Tenants")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Tenants")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Cloud Volumes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Cloud Volumes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Volumes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Volumes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Volumes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Volumes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Volumes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Volume")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Volume")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Attach")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Attach a Volume")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Detach")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Detach a Volume")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Volumes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Auth Key Pairs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Auth Key Pairs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Key Pairs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Key Pairs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Key Pairs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Key Pairs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Key Pairs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Key Pairs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Key Pair")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Key Pairs")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Cloud Volume Snapshots")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Cloud Volume Snapshots")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Snapshots")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Snapshots")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Snapshots")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Snapshots")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Snapshots")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/Flavor.yaml
_("Flavors")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Flavors")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Flavors")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Flavors")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Flavors")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Flavors")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Flavor")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/ManageIQ_Providers_InfraManager.yaml
_("Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Timelines for Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Discover Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Manage Policies of Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Refresh Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Re-check Authentication Status of Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Infrastructure Providers")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit an Infrastructure Provider")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add an Infrastructure Provider")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Scale")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Scale an Infrastructure Provider")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Scale Down")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Scale an Infrastructure Provider down")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Datacenters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Datacenters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Datacenters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Datacenters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Compare")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Compare List of Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Drift")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Clusters / Deployment Roles Drift")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Show Capacity & Utilization data of Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Timelines")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Timelines for Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Analysis")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform SmartState Analysis on Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Manage Policies on Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/ContainerImage.yaml
_("Tag")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags for Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Clusters / Deployment Roles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Compare List of Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Hosts / Nodes Drift")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Show Capacity & Utilization data of Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Timelines for Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform SmartState Analysis for Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Analyze then Check Compliance")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Analyze then Check Compliance for Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Check Compliance")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Check Compliance of Last Known Configuration for Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Manage Policies for Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Refresh relationships and power states for all items related to Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Host / Node Tags")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Power On")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Power On a Host / Node")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Power Off")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Power Off a Host / Node")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Reset")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Reset a Host / Node")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Toggle Maintenance Mode")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Toggle a Host / Node into Maintenance Mode")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Enter Maintenance Mode")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Put a Host / Node into Maintenance Mode")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Exit Maintenance Mode")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Take a Host / Node out of Maintenance Mode")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Shutdown Host to Standby")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Shutdown a Host / Node to Standby Mode")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Shutdown Host")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Shutdown a Host / Node")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Restart Host")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Restart a Host / Node")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Cloud Service Scheduling toggle")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Host / Node")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Host / Node")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Provision Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Request to Provision Hosts / Nodes")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/ResourcePool.yaml
_("Resource Pools")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Access Everything under Resource Pools")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Resource Pools")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Resource Pools")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Resource Pools")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Tags of Resource Pools")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Manage Policies of Resource Pools")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Resource Pools")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Resource Pools")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/CimBaseStorageExtent.yaml
# TRANSLATORS: file: product/views/ManageIQ_Providers_InfraManager.yaml
# TRANSLATORS: file: product/views/OntapFileShare.yaml
# TRANSLATORS: file: product/views/OntapLogicalDisk.yaml
# TRANSLATORS: file: product/views/OntapStorageSystem.yaml
# TRANSLATORS: file: product/views/OntapStorageVolume.yaml
# TRANSLATORS: file: product/views/SniaLocalFileSystem.yaml
_("Datastores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Datastores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Datastores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Datastores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Datastores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Show Capacity & Utilization data of Datastores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Datastores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform SmartState Analysis for Datastores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Datastore Tags")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Datastores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Datastores")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Datastore Clusters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Datastores Clusters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Datastores Clusters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Lists of Datastores Clusters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Display Individual Datastore Clusters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Datastore Clusters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Datastore Cluster Tags")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Datastore Clusters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Datastore Clusters")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Dashboard")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Dashboard")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Dashboard")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Dashboard")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add and Remove a Widget")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add and Remove Dashboard Widgets")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Reset Dashboard Widgets")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Reset Dashboard Widgets to the defaults")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Reports")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Reports")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Saved Reports")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Saved Reports Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Saved Reports")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Saved Reports")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete a Saved Report")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Reports Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Reports")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Download CSV Format")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Download Report in CSV Format")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Download PDF Format")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Download Report in PDF Format")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Download Text Format")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Download Report in Text Format")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Reports")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Run a selected Report")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Reports")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Report")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy a Report")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete a Report")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Report")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/MiqSchedule.yaml
_("Schedules")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Schedules Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View Schedules")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Schedules")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Run Now")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Queue up Schedules to run now")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Schedules")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Schedule")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Schedule")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete a Schedule")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Enable")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Enable a Schedule")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Disable")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Disable a Schedule")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Dashboards")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Manage Dashboard Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Dashboards")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Dashboard")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy a Dashboard")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete a Dashboard")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Dashboard")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Sequence")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit sequence of Dashboards")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Dashboard Widgets")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Dashboard Widgets Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Perform Operations on Widgets")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Generate Content")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Generate Content for a selected Widget")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Widgets")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Widget")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy a Widget")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete a Widget")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Widget")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Refresh Widgets")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Report Menus")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Report Menus Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Import / Export")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Import / Export Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Consumption")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Consumption")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Chargeback")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Chargeback")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Reports Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Rates")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Rates Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Chargeback Rate")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy a Chargeback Rate")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete a Chargeback Rate")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Chargeback Rate")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Assignments")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Assignments Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Currencies")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Chargeback Rate currencies Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Measures")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Chargeback Rate measures Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Timelines")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("RSS")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under RSS")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Explorer")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Control Explorer")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View All Records")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("View all Records in Control Explorer")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/MiqPolicySet.yaml
# TRANSLATORS: file: product/views/PolicySet.yaml
_("Policy Profiles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Policy Profiles Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Policy Profiles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Policy Profile")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete a Policy Profile")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Policy Profile")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/MiqPolicy.yaml
# TRANSLATORS: file: product/views/Policy.yaml
_("Policies")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Policies Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Policies")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Policy")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy a Policy")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Policy")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Condition Assignment")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Policy's Condition assignments")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Event Assignment")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Policy's Event assignments")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete a Policy")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/Condition.yaml
_("Conditions")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Conditions Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Conditions")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Condition")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy a Condition")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy Condition to specified Policy")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy Condition to a new Condition assigned to specified Policy")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Condition")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete a Condition")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove from Policy")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Remove Condition from specified Policy")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/MiqEvent.yaml
_("Events")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Policy Events Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit Event")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/MiqAction.yaml
_("Actions")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Policy Actions Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Policy Actions")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Policy Action")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Policy Action")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete a Policy Action")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Alert Profiles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Policy Alert Profiles Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Policy Alert Profiles")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Policy Alert Profile")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Policy Alert Profile")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit assignments")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Delete a Policy Alert Profile")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
# TRANSLATORS: file: product/views/MiqAlert.yaml
_("Alerts")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Everything under Policy Alerts Accordion")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Modify Policy Alerts")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Add a Policy Alert")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Copy a Policy Alert")
# TRANSLATORS: file: db/fixtures/miq_product_features.yml
_("Edit a Policy Alert")