summaryrefslogtreecommitdiff
path: root/src/locales/en-US.json
blob: ab6307573a98951968112915bd04a68734f5f750 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
{
    "global": {
        "action": {
            "add": "Add",
            "cancel": "Cancel",
            "clearAll": "Clear all",
            "confirm": "Confirm",
            "copy": "Copy",
            "delete": "Delete",
            "deleteAll": "Delete all",
            "disable": "Disable",
            "download": "Download",
            "edit": "Edit",
            "enable": "Enable",
            "export": "Export",
            "exportAll": "Export all",
            "filter": "Filter",
            "refresh": "Refresh",
            "replace": "Replace",
            "reset": "Reset",
            "save": "Save",
            "saveSettings": "Save settings",
            "selected": "Selected",
            "ok": "OK",
            "warning": "Warning",
            "critical": "Critical"
        },
        "ariaLabel": {
            "clearSearch": "Clear search input",
            "hidePassword": "Hide password",
            "scrollToTop": "Scroll to top",
            "showPassword": "Show password as plain text. Note: this will visually expose your password on the screen.",
            "tooltip": "Tooltip",
            "progressBar": "Page loading progress bar"
        },
        "calendar": {
            "selectDate": "Select date",
            "useCursorKeysToNavigateCalendarDates": "Use cursor keys to navigate calendar dates"
        },
        "fileUpload": {
            "browseText": "Add file",
            "clearSelectedFile": "Clear selected file"
        },
        "form": {
            "dateMustBeAfter": "Date must be after %{date}",
            "dateMustBeBefore": "Date must be before %{date}",
            "fieldRequired": "Field required",
            "invalidFormat": "Invalid format",
            "invalidValue": "Invalid value",
            "lengthMustBeBetween": "Length must be between %{min} – %{max} characters",
            "mustBeAtLeast": "Must be at least %{value}",
            "optional": "optional",
            "passwordsDoNotMatch": "Passwords do not match",
            "required": "Required",
            "search": "Search",
            "selectAnOption": "Select an option",
            "valueMustBeBetween": "Value must be between %{min} – %{max}"
        },
        "status": {
            "copied": "Copied",
            "diagnosticMode": "Diagnostic mode",
            "disabled": "Disabled",
            "enabled": "Enabled",
            "error": "Error",
            "notAvailable": "Not available",
            "off": "Off",
            "on": "On",
            "success": "Success",
            "warning": "Warning",
            "informational": "Informational"
        },
        "table": {
            "collapseTableRow": "Collapse table row",
            "emptyMessage": "No items available",
            "emptySearchMessage": "No items match the search query",
            "expandTableRow": "Expand table row",
            "fromDate": "From date",
            "items": "%{count} items",
            "itemsPerPage": "Items per page",
            "selectAll": "Select all",
            "selectItem": "Select item",
            "selectedItems": "%{filterCount} of %{count} items",
            "toDate": "To date",
            "viewAll": "View all"
        },
        "toast": {
            "unAuthTitle": "Unauthorized",
            "unAuthDescription": "The attempted action is not accessible from the logged in account. Contact your system administrator to check your privilege role."
        }
    },
    "appHeader": {
        "applicationHeader": "Application header",
        "health": "Health",
        "logOut": "Log out",
        "power": "Power",
        "profileSettings": "@:appPageTitle.profileSettings",
        "refresh": "Refresh",
        "skipToContent": "Skip to content",
        "titleHideNavigation": "Hide navigation",
        "titleShowNavigation": "Show navigation",
        "titleProfile": "Show profile menu",
        "titleRefresh": "Refresh application data"
    },
    "appNavigation": {
        "resourceManagement": "Resource management",
        "securityAndAccess": "Security and access",
        "sessions": "@:appPageTitle.sessions",
        "settings": "Settings",
        "operations": "Operations",
        "dateTime": "@:appPageTitle.dateTime",
        "dumps": "@:appPageTitle.dumps",
        "eventLogs": "@:appPageTitle.eventLogs",
        "factoryReset": "@:appPageTitle.factoryReset",
        "firmware": "@:appPageTitle.firmware",
        "hardwareStatus": "Hardware status",
        "inventory": "@:appPageTitle.inventory",
        "kvm": "@:appPageTitle.kvm",
        "ldap": "@:appPageTitle.ldap",
        "logs": "Logs",
        "userManagement": "@:appPageTitle.userManagement",
        "network": "@:appPageTitle.network",
        "overview": "@:appPageTitle.overview",
        "primaryNavigation": "Primary navigation",
        "postCodeLogs": "@:appPageTitle.postCodeLogs",
        "powerRestorePolicy": "@:appPageTitle.powerRestorePolicy",
        "rebootBmc": "@:appPageTitle.rebootBmc",
        "policies": "@:appPageTitle.policies",
        "sensors": "@:appPageTitle.sensors",
        "serialOverLan": "SOL console",
        "serverPowerOperations": "@:appPageTitle.serverPowerOperations",
        "certificates": "@:appPageTitle.certificates",
        "virtualMedia": "@:appPageTitle.virtualMedia",
        "snmpAlerts": "@:appPageTitle.snmpAlerts",
        "power": "@:appPageTitle.power",
        "keyClear": "@:appPageTitle.keyClear"
    },
    "appPageTitle": {
        "changePassword": "Change password",
        "power": "Power",
        "sessions": "Sessions",
        "dateTime": "Date and time",
        "dumps": "Dumps",
        "eventLogs": "Event logs",
        "factoryReset": "Factory reset",
        "firmware": "Firmware",
        "inventory": "Inventory and LEDs",
        "kvm": "KVM",
        "ldap": "LDAP",
        "userManagement": "User management",
        "login": "Login",
        "network": "Network",
        "overview": "Overview",
        "pageNotFound": "Page not found",
        "postCodeLogs": "POST code logs",
        "powerRestorePolicy": "Power restore policy",
        "profileSettings": "Profile settings",
        "rebootBmc": "Reboot BMC",
        "policies": "Policies",
        "sensors": "Sensors",
        "serialOverLan": "Serial over LAN (SOL) console",
        "serverPowerOperations": "Server power operations",
        "certificates": "Certificates",
        "snmpAlerts": "SNMP Alerts",
        "virtualMedia": "Virtual media",
        "keyClear": "Key clear"
    },
    "pageChangePassword": {
        "changePassword": "Change password",
        "changePasswordAlertMessage": "The password is expired and must be changed.",
        "changePasswordError": "There was an error changing the password.",
        "confirmNewPassword": "Confirm new password",
        "goBack": "Go back",
        "newPassword": "New password",
        "username": "Username"
    },
    "pageSessions": {
        "action": {
            "disconnect": "Disconnect"
        },
        "modal": {
            "disconnectTitle": "Disconnect session| Disconnect sessions",
            "disconnectMessage": "Are you sure you want to disconnect %{count} session? This action cannot be undone. | Are you sure you want to disconnect %{count} sessions? This action cannot be undone."
        },
        "table": {
            "sessionID": "Session ID",
            "context": "Context",
            "username": "Username",
            "ipAddress": "IP address",
            "searchSessions": "Search sessions"
        },
        "toast": {
            "errorDelete": "Error disconnecting %{count} session. | Error disconnecting %{count} sessions.",
            "successDelete": "Successfully disconnected %{count} session. | Successfully disconnected %{count} sessions."
        }
    },
    "pageDateTime": {
        "alert": {
            "message": "To change how date and time are displayed (either UTC or browser offset) throughout the application, visit ",
            "link": "Profile Settings"
        },
        "configureSettings": "Configure settings",
        "form": {
            "date": "Date",
            "manual": "Manual",
            "time": {
                "label": "24-hour time",
                "timezone": "@:pageDateTime.form.time.label (%{timezone})"
            },
            "ntpServers": {
                "server1": "Server 1",
                "server2": "Server 2",
                "server3": "Server 3"
            }
        },
        "toast": {
            "errorSaveDateTime": "Error saving date and time settings.",
            "successSaveDateTime": "Successfully saved date and time settings."
        }
    },
    "pageDumps": {
        "dumpsAvailableOnBmc": "Dumps available on BMC",
        "initiateDump": "Initiate dump",
        "form": {
            "bmcDump": "BMC dump",
            "initiateDump": "Initiate dump",
            "selectDumpType": "Select dump type",
            "systemDump": "System dump (disruptive)",
            "systemDumpInfo": "System dumps will be offloaded to the operating system and will not appear in the table below."
        },
        "modal": {
            "deleteDump": "Delete dump | Delete dumps",
            "deleteDumpConfirmation": "Are you sure you want to delete %{count} dump? This action cannot be undone. | Are you sure you want to delete %{count} dumps? This action cannot be undone.",
            "initiateSystemDump": "Initiate system dump",
            "initiateSystemDumpMessage1": "Are you sure?",
            "initiateSystemDumpMessage2": "You will not be able to initiate any other dumps while a system dump is in progress.",
            "initiateSystemDumpMessage3": "Initiating a system dump will abnormally terminate all active system partitions.",
            "initiateSystemDumpMessage4": "Proceed with dump initiation"
        },
        "table": {
            "dateAndTime": "Date and time",
            "dumpType": "Dump type",
            "id": "ID",
            "searchDumps": "Search dumps",
            "size": "Size"
        },
        "toast": {
            "errorDeleteDump": "Error deleting %{count} dump. | Error deleting %{count} dumps.",
            "errorStartBmcDump": "Error starting new BMC dump.",
            "errorStartSystemDump": "Error starting new System dump.",
            "successDeleteDump": "Successfully deleted %{count} dump. | Successfully deleted %{count} dumps.",
            "successStartBmcDump": "The dump will take some time to complete. Refresh the application to see the completed dump in the table.",
            "successStartBmcDumpTitle": "BMC dump started",
            "successStartSystemDump": "The dump will take some time to complete. The dump will be offloaded to the operating system.",
            "successStartSystemDumpTitle": "System dump started"
        }
    },
    "pageEventLogs": {
        "additionalDataUri": "Download additional data",
        "resolve": "Resolve",
        "resolved": "Resolved",
        "unresolve": "Unresolve",
        "unresolved": "Unresolved",
        "modal": {
            "deleteAllTitle": "Delete all logs",
            "deleteAllMessage": "Are you sure you want to delete all logs? This action cannot be undone.",
            "deleteTitle": "Delete log | Delete logs",
            "deleteMessage": "Are you sure you want to delete %{count} log? This action cannot be undone. | Are you sure you want to delete %{count} logs? This action cannot be undone."
        },
        "table": {
            "date": "Date",
            "description": "Description",
            "id": "ID",
            "modifiedDate": "Modified Date",
            "name": "Name",
            "searchLogs": "Search logs",
            "severity": "Severity",
            "status": "Status",
            "type": "Type"
        },
        "toast": {
            "errorDelete": "Error deleting %{count} log. | Error deleting %{count} logs.",
            "errorLogStatusUpdate": "Error updating log status.",
            "errorResolveLogs": "Error resolving %{count} log. | Error resolving %{count} logs.",
            "errorUnresolveLogs": "Error unresolving %{count} log. | Error unresolving %{count} logs.",
            "successDelete": "Successfully deleted %{count} log. | Successfully deleted %{count} logs.",
            "successResolveLogs": "Successfully resolved %{count} log. | Successfully resolved %{count} logs.",
            "successUnresolveLogs": "Successfully unresolved %{count} log. | Successfully unresolved %{count} logs."
        }
    },
    "pageFactoryReset": {
        "description": "These functions do not perform a secure delete of any sensitive data.",
        "form": {
            "resetOptionsLabel": "Reset options",
            "resetBiosOptionLabel": "Reset server settings only",
            "resetBiosOptionHelperText": "Resets firmware settings including: Platform keystore, partition NVRAM, and partition configurations.",
            "resetToDefaultsOptionLabel": "Reset BMC and server settings",
            "resetToDefaultsOptionHelperText": "In addition to server settings, this option resets BMC settings, including: all BMC account data, all changed passwords, all policies, LDAP configurations, network addresses, and time of day."
        },
        "modal": {
            "resetBiosTitle": "Reset server settings",
            "resetBiosHeader": "Do you want to reset the server settings?",
            "resetBiosSubmitText": "Reset server settings",
            "resetBiosSettingsList": {
                "item1": "All manual settings will be deleted.",
                "item2": "Partition configurations and the platform keystore may be recovered if backups exist."
            },
            "resetToDefaultsTitle": "Reset BMC and server settings",
            "resetToDefaultsHeader": "Do you want to reset both the BMC and server settings?",
            "resetToDefaultsSubmitText": "Reset BMC and server settings",
            "resetToDefaultsSettingsList": {
                "item1": "All manual settings will be deleted.",
                "item2": "Partition configurations and the platform keystore may be recovered if backups exist.",
                "item3": "All BMC logs will be removed.",
                "item4": "Currently active sessions on all network interfaces will be disconnected.",
                "item5": "The BMC default account and password settings will be restored."
            },
            "resetWarningMessage": "Resetting without shutting down the system might cause an unrecoverable error.",
            "resetWarningCheckLabel": "Continue without shutting down the system"
        },
        "toast": {
            "resetBiosSuccess": "Factory reset of server settings successful.",
            "resetBiosError": "Factory reset of server settings failed.",
            "resetToDefaultsSuccess": "Factory reset of BMC and server settings successful.",
            "resetToDefaultsError": "Factory reset of BMC and server settings failed."
        }
    },
    "pageFirmware": {
        "cardActionSwitchToRunning": "Switch to running",
        "cardBodyVersion": "Version",
        "cardTitleBackup": "Backup image",
        "cardTitleRunning": "Running image",
        "sectionTitleBmcCards": "BMC",
        "sectionTitleBmcCardsCombined": "BMC and server",
        "sectionTitleHostCards": "Host",
        "sectionTitleUpdateFirmware": "Update firmware",
        "alert": {
            "operationInProgress": "Server power operation in progress.",
            "serverMustBePoweredOffTo": "Server must be powered off to:",
            "serverMustBePoweredOffToUpdateFirmware": "Server must be powered off to update firmware",
            "switchRunningAndBackupImages": "Switch running and backup images",
            "updateFirmware": "Update firmware",
            "viewServerPowerOperations": "View server power operations"
        },
        "form": {
            "updateFirmware": {
                "fileAddress": "File address",
                "fileSource": "File source",
                "imageFile": "Image file",
                "startUpdate": "Start update",
                "tftpServer": "TFTP server",
                "workstation": "Workstation"
            }
        },
        "modal": {
            "switchImages": "Switch images",
            "switchRunningImage": "Switch running image",
            "switchRunningImageInfo": "A BMC reboot is required to run the backup image. The application might be unresponsive during this time.",
            "switchRunningImageInfo2": "Are you sure you want to switch to the backup image (%{backup})?",
            "updateFirmwareInfo": "The BMC will reboot during the update process. The server cannot be powered on until the update is finished.",
            "updateFirmwareInfo2": "The running image (%{running}) will be copied to backup. The backup image will be deleted.",
            "updateFirmwareInfo3": "Are you sure you want to proceed with the update?",
            "updateFirmwareInfoDefault": "The new image will be uploaded and activated. After that, the BMC or host will reboot automatically to run from the new image."
        },
        "toast": {
            "errorSwitchImages": "Error switching running and backup images.",
            "errorUpdateFirmware": "Error starting firmware update.",
            "rebootStarted": "Reboot started",
            "rebootStartedMessage": "Successfully started reboot from backup image.",
            "updateStarted": "Update started",
            "updateStartedMessage": "Wait for the firmware update notification before making any changes.",
            "verifySwitch": "Verify switch",
            "verifySwitchMessage": "Refresh the application to verify the running and backup images switched.",
            "verifyUpdate": "Verify update",
            "verifyUpdateMessage": "Refresh the application to verify firmware updated successfully"
        }
    },
    "pageInventory": {
        "dimmSlot": "DIMM slot",
        "fans": "Fans",
        "powerSupplies": "Power supplies",
        "bmcManager": "BMC manager",
        "chassis": "Chassis",
        "processors": "Processors",
        "quicklinkTitle": "Quick links to hardware components",
        "system": "System",
        "assemblies": "Assemblies",
        "systemIndicator": {
            "powerStatus": "Power status",
            "identifyLed": "System identify LED",
            "sectionTitle": "LED light control"
        },
        "table": {
            "assetTag": "Asset tag",
            "baseModuleType": "Base module type",
            "busWidthBits": "Bus width",
            "bmcDateTime": "BMC date and time",
            "capacityMiB": "Capacity",
            "chassisType": "Chassis type",
            "connectTypesSupported": "Connect types supported",
            "coreCount": "Core count",
            "count": "Count",
            "dataWidthBits": "Data width",
            "description": "Description",
            "efficiencyPercent": "Efficiency",
            "enabled": "Enabled",
            "errorCorrection": "Error correction",
            "fanSpeed": "Fan speed",
            "firmwareVersion": "Firmware version",
            "graphicalConsole": "Graphical console",
            "hardwareType": "Hardware type",
            "health": "Health",
            "healthRollup": "Health rollup",
            "id": "ID",
            "identifyLed": "Identify LED",
            "instructionSet": "Instruction set",
            "lastResetTime": "Last reset time",
            "locationNumber": "Location number",
            "managerType": "Manager type",
            "manufacturer": "Manufacturer",
            "maxConcurrentSessions": "Max concurrent sessions",
            "maxSpeedMHz": "Max speed",
            "maxPowerWatts": "Max power",
            "memoryType": "Memory type",
            "memorySummary": "Memory summary",
            "minPowerWatts": "Min power",
            "minSpeedMHz": "Min speed",
            "model": "Model",
            "name": "Name",
            "operatingSpeedMhz": "Operating speed",
            "partNumber": "Part number",
            "power": "Power",
            "powerInputWatts": "Power input",
            "processorArchitecture": "Processor architecture",
            "processorSummary": "Processor summary",
            "processorType": "Processor type",
            "rankCount": "Rank count",
            "serialConsole": "Serial console",
            "serialNumber": "Serial number",
            "serviceEnabled": "Service enabled",
            "serviceEntryPointUuid": "Service entry point UUID",
            "sparePartNumber": "Spare part number",
            "state": "State",
            "statusHealthRollup": "Status (Health rollup)",
            "statusState": "Status (State)",
            "subModel": "Sub model",
            "systemType": "System type",
            "totalCores": "Total cores",
            "totalSystemMemoryGiB": "Total system memory",
            "totalThreads": "Total threads",
            "uuid": "UUID",
            "version": "Version"
        },
        "toast": {
            "errorDisableIdentifyLed": "Error disabling Identify LED.",
            "errorEnableIdentifyLed": "Error enabling Identify LED."
        }
    },
    "pageKeyClear": {
        "description": "Securely clear sensitive data on the system",
        "alert": {
            "description": "Due to sensitivity of the data that will be cleared, verification through physical presence is required to authorize this operation.",
            "title": "This operation requires physical presence and system reboot"
        },
        "form": {
            "clearAllSetGenesisIPL": "Clear all and set genesis IPL",
            "clear": "Clear",
            "clearAllLabel": "Clear all",
            "clearAllHeperText": "Clear all the sensitive data that is controlled by the platform firmware",
            "clearHypervisorSystemKeyLabel": "Clear hypervisor system key",
            "clearHypervisorSystemKeyHelperText": "This indicates the hypervisor to clear the system key.",
            "clearOperatingSystemKeysLabel": "Clear operating system keys",
            "clearOperatingSystemKeysHelperText": "This indicates OPAL to clear the operating system Secure Boot keys.",
            "clearSystemSecurityKeyLabel": "Clear system security officer key",
            "clearSystemSecurityKeyHelperText": "This incicates OPAL/PEF to clear the system security officer key.",
            "keyClearOptionsLabel": "Key clear options",
            "keyClearNotRequested": "Key clear not requested",
            "none": "None",
            "setFactoryDefault": "Set factory default"
        },
        "modal": {
            "clear": "Clear keys",
            "clearAllMessage": "Any encryption keys contained in the selected data will be lost. System will not be able to decrypt any data that requires these keys.",
            "clearAllTitle": "Warning: This operation is not reversible"
        },
        "toast": {
            "selectedKeyClearedError": "Error clearing keys",
            "selectedKeyClearedSuccess": "Keys cleared successfully"
        }
    },
    "pageKvm": {
        "openNewTab": "Open in new tab",
        "buttonCtrlAltDelete": "Send Ctrl+Alt+Delete",
        "status": "Status",
        "connected": "Connected",
        "connecting": "Connecting",
        "disconnected": "Disconnected"
    },
    "pageLdap": {
        "pageDescription": "Configure LDAP settings and manage role groups",
        "roleGroups": "Role groups",
        "settings": "Settings",
        "addRoleGroup": "Add role group",
        "ariaLabel": {
            "ldapSettings": "LDAP settings"
        },
        "form": {
            "activeDirectory": "Active Directory",
            "baseDn": "Base DN",
            "bindDn": "Bind DN",
            "bindPassword": "Bind password",
            "caCertificateValidUntil": "CA Certificate valid until",
            "groupIdAttribute": "Group ID attribute",
            "ldapAuthentication": "LDAP authentication",
            "ldapCertificateValidUntil": "LDAP Certificate valid until",
            "manageSslCertificates": "Manage SSL certificates",
            "openLDAP": "OpenLDAP",
            "secureLdapHelper": "A CA certificate and an LDAP certificate are required to enable secure LDAP",
            "secureLdapUsingSsl": "Secure LDAP using SSL",
            "serverUri": "Server URI",
            "serverUriTooltip": "Enabling Secure LDAP changes URI scheme to ldaps",
            "serviceType": "Service type",
            "userIdAttribute": "User ID attribute"
        },
        "modal": {
            "addNewRoleGroup": "Add new role group",
            "deleteRoleGroupBatchConfirmMessage": "Are you sure you want to delete %{count} role group? This action cannot be undone. | Are you sure you want to delete %{count} role groups? This action cannot be undone.",
            "deleteRoleGroupConfirmMessage": "Are you sure you want to delete '%{groupName}'? This action cannot be undone.",
            "deleteRoleGroup": "Delete role group",
            "editRoleGroup": "Edit role group",
            "groupName": "Group name",
            "groupPrivilege": "Group privilege"
        },
        "tableRoleGroups": {
            "alertContent": "LDAP authentication must be enabled to modify role groups.",
            "groupName": "Group name",
            "groupPrivilege": "Group privilege"
        },
        "toast": {
            "errorAddRoleGroup": "Error adding role group.",
            "errorDeleteRoleGroup": "Error deleting role group. | Error deleting role groups.",
            "errorSaveActiveDirectorySettings": "Error saving Active Directory settings.",
            "errorSaveLdapSettings": "Error saving Open LDAP settings.",
            "errorSaveRoleGroup": "Error saving role group.",
            "successAddRoleGroup": "Successfully added role group '%{groupName}'.",
            "successDeleteRoleGroup": "Successfully deleted role group. | Successfully deleted role groups.",
            "successSaveActiveDirectorySettings": "Successfully saved Active Directory settings.",
            "successSaveLdapSettings": "Successfully saved Open LDAP settings.",
            "successSaveRoleGroup": "Successfully saved role group '%{groupName}'."
        }
    },
    "pageUserManagement": {
        "accountPolicySettings": "Account policy settings",
        "addUser": "Add user",
        "deleteUser": "Delete user | Delete users",
        "editUser": "Edit user",
        "viewPrivilegeRoleDescriptions": "View privilege role descriptions",
        "modal": {
            "accountLocked": "Account locked",
            "accountStatus": "Account status",
            "automaticAfterTimeout": "Automatic after timeout",
            "batchDeleteConfirmMessage": "Are you sure you want to delete %{count} user? This action cannot be undone. | Are you sure you want to delete %{count} users? This action cannot be undone.",
            "cannotStartWithANumber": "Cannot start with a number",
            "clickSaveToUnlockAccount": "Click \"Save\" to unlock account",
            "confirmUserPassword": "Confirm user password",
            "deleteConfirmMessage": "Are you sure you want to delete user '%{user}'? This action cannot be undone.",
            "manual": "Manual",
            "maxFailedLoginAttempts": "Max failed login attempts",
            "noSpecialCharactersExceptUnderscore": "No special characters except underscore",
            "passwordMustBeBetween": "Password must be between %{min} – %{max} characters",
            "passwordsDoNotMatch": "Passwords do not match",
            "privilege": "Privilege",
            "timeoutDurationSeconds": "Timeout duration (seconds)",
            "unlock": "Unlock",
            "username": "Username",
            "userPassword": "User password",
            "userUnlockMethod": "User unlock method"
        },
        "table": {
            "privilege": "Privilege",
            "status": "Status",
            "username": "Username"
        },
        "tableRoles": {
            "configureComponentsManagedByThisService": "Configure components managed by this service",
            "configureManagerResources": "Configure manager resources",
            "configureUsersAndTheirAccounts": "Configure users and their accounts",
            "logInToTheServiceAndReadResources": "Log in to the service and read resources",
            "updatePasswordForCurrentUserAccount": "Update password for current user account",
            "privilege": "Privilege",
            "administrator": "Administrator",
            "operator": "Operator",
            "readOnly": "ReadOnly",
            "noAccess": "NoAccess"
        },
        "toast": {
            "errorBatchDelete": "Error deleting %{count} user. | Error deleting %{count} users.",
            "errorBatchDisable": "Error disabling %{count} user. | Error disabling %{count} users.",
            "errorBatchEnable": "Error enabling %{count} user. | Error enabling %{count} users.",
            "errorCreateUser": "Error creating user '%{username}'.",
            "errorAlreadyExistUser": "Username '%{username}' already exists.",
            "errorDeleteUser": "Error deleting user '%{username}'.",
            "errorLoadAccountSettings": "Error loading account settings",
            "errorLoadUsers": "Error loading users.",
            "errorSaveSettings": "Error saving account settings.",
            "errorUpdateUser": "Error updating user '%{username}'.",
            "successBatchDelete": "Successfully deleted %{count} user. | Successfully deleted %{count} users.",
            "successBatchDisable": "Successfully disabled %{count} user. | Successfully disabled %{count} users.",
            "successBatchEnable": "Successfully enabled %{count} user. | Successfully enabled %{count} users.",
            "successCreateUser": "Created user '%{username}'.",
            "successDeleteUser": "Deleted user '%{username}'.",
            "successSaveSettings": "Successfully saved account settings.",
            "successUpdateUser": "Updated user '%{username}'."
        }
    },
    "pageLogin": {
        "language": "Language",
        "logIn": "Log in",
        "password": "Password",
        "username": "Username",
        "alert": {
            "message": "Invalid username or password"
        }
    },
    "pageOverview": {
        "backupVersion": "Backup",
        "bmcTime": "BMC date and time",
        "criticalEvents": "Critical",
        "dhcp": "DHCPv4",
        "dumps": "Dumps",
        "eventLogs": "Event logs",
        "firmwareInformation": "Firmware information",
        "firmwareVersion": "Firmware version",
        "hostName": "Hostname",
        "idlePower": "Idle power",
        "inventory": "Inventory and LEDs",
        "ipv4": "IPv4",
        "linkStatus": "Link status",
        "model": "Model",
        "networkInformation": "Network information",
        "powerCap": "Power cap",
        "powerConsumption": "Power consumption",
        "powerInformation": "Power information",
        "powerMode": "Power mode",
        "runningVersion": "Running",
        "serialNumber": "Serial number",
        "serverInformation": "Server information",
        "serverManufacturer": "Server manufacturer",
        "solConsole": "@:appNavigation.serialOverLan",
        "statusInformation": "Status information",
        "systemIdentifyLed": "System identify LED",
        "systemInformation": "System information",
        "total": "Total",
        "warningEvents": "Warning",
        "viewMore": "View more"
    },
    "pagePostCodeLogs": {
        "allExportFilePrefix": "All_POST_codes_log_",
        "downloadFilePrefix": "POST_codes_additional_details_",
        "exportFilePrefix": "POST_codes_log_",
        "action": {
            "downloadDetails": "Download additional details",
            "exportLogs": "Export log"
        },
        "button": {
            "exportAll": "Export all"
        },
        "modal": {
            "deleteAllTitle": "Delete all logs",
            "deleteAllMessage": "Are you sure you want to delete all logs? This action cannot be undone."
        },
        "table": {
            "created": "Created",
            "bootCount": "Boot count",
            "postCode": "POST code",
            "searchLogs": "Search logs",
            "timeStampOffset": "Time stamp offset"
        },
        "toast": {
            "errorDelete": "Error deleting %{count} log. | Error deleting %{count} logs.",
            "successDelete": "Successfully deleted %{count} log. | Successfully deleted %{count} logs."
        }
    },
    "pageProfileSettings": {
        "browserOffset": "Browser offset (%{timezone})",
        "changePassword": "Change password",
        "confirmPassword": "Confirm new password",
        "defaultUTC": "Default (UTC)",
        "newPassword": "New password",
        "currentPassword": "Current password",
        "newPassLabelTextInfo": "Password must be between %{min} - %{max} characters",
        "passwordsDoNotMatch": "Passwords do not match",
        "profileInfoTitle": "Profile information",
        "timezone": "Timezone",
        "timezoneDisplay": "Timezone display preference",
        "timezoneDisplayDesc": "Select how time is displayed throughout the application",
        "username": "Username",
        "toast": {
            "successUpdatingTimeZone": "Timezone updated successfully.",
            "wrongCredentials": "Wrong credentials"
        }
    },
    "pageNetwork": {
        "dhcp": "DHCP",
        "domainName": "domain name",
        "dns": "DNS server",
        "fqdn": "FQDN",
        "hostname": "Hostname",
        "interfaceSection": "Interface settings",
        "ipv4": "IPv4",
        "ipv4Addresses": "IPv4 addresses",
        "ipv6": "IPv6",
        "linkStatus": "Link status",
        "macAddress": "MAC address",
        "network": "network",
        "networkSettings": "Network settings",
        "ntp": "NTP server",
        "pageDescription": "Configure BMC network settings",
        "useDns": "Use DNS servers",
        "useDomainName": "Use domain name",
        "useNtp": "Use NTP servers",
        "speed": "Speed (mbps)",
        "staticDns": "Static DNS",
        "modal": {
            "confirmDisableDhcp": "Are you sure you want to disable DHCP?",
            "confirmEnableDhcp": "When DHCP is enabled, static IP addresses will not be accessible.",
            "dhcpConfirmTitle": "%{dhcpState} DHCP",
            "editHostnameTitle": "Edit hostname",
            "editMacAddressTitle": "Edit MAC address",
            "gateway": "Gateway",
            "ipAddress": "IP address",
            "staticDns": "Static DNS",
            "subnetMask": "Subnet mask"
        },
        "table": {
            "addDnsAddress": "Add IP address",
            "addIpv4Address": "Add static IPv4 address",
            "addressOrigin": "Address origin",
            "deleteDns": "Delete DNS address",
            "deleteIpv4": "Delete IPv4 address",
            "editDns": "Edit DNS address",
            "editIpv4": "Edit IPv4 address",
            "gateway": "Gateway",
            "ipAddress": "IP address",
            "subnet": "Subnet mask"
        },
        "toast": {
            "errorSaveNetworkSettings": "Error updating %{setting} settings.",
            "successSaveNetworkSettings": "Successfully updated %{setting} settings."
        }
    },
    "pagePageNotFound": {
        "description": "The requested resource could not be found."
    },
    "pagePowerRestorePolicy": {
        "description": "Configure power policy to determine how the system starts after a power disturbance.",
        "powerPoliciesLabel": "Power restore policies",
        "policies": {
            "AlwaysOn": "Always on",
            "AlwaysOff": "Always off",
            "LastState": "Last state"
        },
        "policiesDesc": {
            "AlwaysOn": "Always on - The system always powers on when power is applied.",
            "AlwaysOff": "Always off - The system always remains powered off when power is applied.",
            "LastState": "Last state - The system returns to its last on or off power state when power is applied."
        },
        "toast": {
            "errorSaveSettings": "Error saving settings.",
            "successSaveSettings": "Power restore policy updated successfully."
        }
    },
    "pageRebootBmc": {
        "lastReboot": "Last BMC reboot",
        "rebootBmc": "Reboot BMC",
        "rebootInformation": "When you reboot the BMC, your web browser loses contact with the BMC for several minutes. When the BMC is back online, you may need to log in again.",
        "modal": {
            "confirmMessage": "Are you sure you want to reboot the BMC?",
            "confirmTitle": "Confirm BMC reboot"
        },
        "toast": {
            "errorRebootStart": "Error rebooting BMC.",
            "successRebootStart": "Rebooting BMC."
        }
    },
    "pagePolicies": {
        "ipmi": "Network IPMI (out-of-band IPMI)",
        "ipmiDescription": "Allow remote management of the platform via IPMI. Tools such as ipmitool require this setting to be enabled.",
        "rtad": "RTAD",
        "rtadDescription": "This option enables or disables the Remote Trusted Attestation Daemon for host firmware",
        "ssh": "BMC shell (via SSH)",
        "sshDescription": "Allow access to shell sessions via SSH, through port 22 on the BMC.",
        "modal": {
            "disableMessage": {
                "ipmi": "Are you sure you want to disable @:pagePolicies.ipmi?",
                "ssh": "Are you sure you want to disable @:pagePolicies.ssh?"
            },
            "enableMessage": {
                "ipmi": "Are you sure you want to enable @:pagePolicies.ipmi?",
                "ssh": "Are you sure you want to enable @:pagePolicies.ssh?"
            }
        },
        "toast": {
            "errorIpmiDisabled": "Error disabling IPMI security setting.",
            "errorIpmiEnabled": "Error enabling IPMI security setting.",
            "errorRtadDisabled": "Error disabling RTAD security setting.",
            "errorRtadEnabled": "Error enabling RTAD security setting.",
            "errorSshDisabled": "Error disabling SSH security setting.",
            "errorSshEnabled": "Error enabling SSH security setting.",
            "errorVtpmDisabled": "Error disabling VirtualTPM security setting.",
            "errorVtpmEnabled": "Error enabling VirtualTPM security setting.",
            "errorSessionTimeout": "Error configuring session timeout.",
            "successIpmiDisabled": "Successfully disabled IPMI security setting.",
            "successIpmiEnabled": "Successfully enabled IPMI security setting.",
            "successRtadDisabled": "Successfully disabled RTAD security setting.",
            "successRtadEnabled": "Successfully enabled RTAD security setting.",
            "successSshDisabled": "Successfully disabled SSH security setting.",
            "successSshEnabled": "Successfully enabled SSH security setting.",
            "successVtpmDisabled": "Successfully disabled VirtualTPM security setting.",
            "successVtpmEnabled": "Successfully enabled VirtualTPM security setting.",
            "successSessionTimeout": "Successfully configured the session timeout."
        },
        "options": {
            "30minutes": "30 Minutes",
            "1hour": "1 Hour",
            "2hours": "2 Hours",
            "4hours": "4 Hours",
            "8hours": "8 Hours",
            "1day": "1 Day"
        },
        "vtpm": "VirtualTPM",
        "vtpmDescription": "Enabling vTPM makes a TPM available to the guest operating system.",
        "webSessionTimeOut": "WEB Session Timeout",
        "webSessionTimeOutDescription": "Change the Web session timeout in given options"
    },
    "pagePower": {
        "description": "Set a power cap to keep power consumption at or below the specified value in watts",
        "powerCapLabel": "Power cap value (in watts)",
        "powerCapLabelTextInfo": " Value must be between %{min} and %{max}",
        "powerCapSettingData": "Apply power cap",
        "powerCapSettingLabel": "Power cap setting",
        "powerConsumption": "Current power consumption",
        "serverPowCapSetting": "Server power cap setting"
    },
    "pageSensors": {
        "exportFilePrefix": "sensors_",
        "searchForSensors": "Search for sensors",
        "table": {
            "currentValue": "Current value",
            "lowerWarning": "Lower warning",
            "lowerCritical": "Lower critical",
            "name": "Name",
            "status": "Status",
            "upperWarning": "Upper warning",
            "upperCritical": "Upper critical"
        }
    },
    "pageSerialOverLan": {
        "alert": {
            "disconnectedAlertMessage": "System must be powered on to connect"
        },
        "connected": "Connected",
        "disconnected": "Disconnected",
        "openNewTab": "Open in new tab",
        "status": "Status",
        "subTitle": "SOL console redirects the server's serial port output to this window."
    },
    "pageServerPowerOperations": {
        "currentStatus": "Current status",
        "serverBootSettings": "Boot settings",
        "serverStatus": "Server status",
        "immediateReboot": "Immediate – Server reboots without operating system shutting down; may cause data corruption",
        "immediateShutdown": "Immediate - Server shuts down without operating system shutting down; may cause data corruption",
        "lastPowerOperation": "Last power operation",
        "oneTimeBootWarning": "Pending one time boot. Next boot will be performed with the specified one time boot settings. Subsequent boots will be performed with the default settings.",
        "operationInProgress": "There are no options to display while a power operation is in progress. When complete, power operations will be displayed here.",
        "operations": "Operations",
        "orderlyReboot": "Orderly – operating system shuts down, then server reboots",
        "orderlyShutdown": "Orderly - operating system shuts down, then server shuts down",
        "powerOn": "Power on",
        "reboot": "Reboot",
        "rebootServer": "Reboot server",
        "shutDown": "Shut down",
        "shutdownServer": "Shutdown server",
        "bootSettings": {
            "bootSettingsOverride": "Boot settings override",
            "enableOneTimeBoot": "Enable one time boot",
            "tpmRequiredPolicy": "TPM required policy",
            "tpmRequiredPolicyHelper": "Enable to ensure the system only boots when the TPM is functional."
        },
        "modal": {
            "confirmRebootMessage": "Are you sure you want to reboot?",
            "confirmRebootTitle": "Server reboot will cause outage",
            "confirmShutdownMessage": "Are you sure you want to shut down?",
            "confirmShutdownTitle": "Server shutdown will cause outage"
        },
        "toast": {
            "errorSaveSettings": "Error saving settings.",
            "successSaveSettings": "Successfully saved settings."
        }
    },
    "pageSnmpAlerts": {
        "addDestination": "Add destination",
        "deleteDestination": "Delete destination | Delete destinations",
        "pageDescription": "Set the Simple Network Management Protocol (SNMP) traps with an IP address and a port.",
        "modal": {
            "addSnmpDestinationTitle": "Add SNMP alert destination",
            "batchDeleteConfirmMessage": "Are you sure you want to delete the SNMP alert destination? This action cannot be undone. | Are you sure you want to delete %{count} SNMP alert destinations? This action cannot be undone.",
            "deleteConfirmMessage": "Are you sure you want to delete the SNMP alert destination? This action cannot be undone.",
            "deleteSnmpDestinationTitle": "Delete SNMP alert destination | Delete SNMP alert destinations",
            "ipaddress": "IP Address",
            "port": "Port"
        },
        "table": {
            "ipaddress": "IP Address",
            "port": "Port"
        },
        "toast": {
            "errorAddDestination": "Error in adding SNMP alert destination",
            "errorBatchDelete": "Error in deleting SNMP alert destination. | Error in deleting SNMP alert destinations.",
            "errorDeleteDestination": "Error deleting SNMP alert destination.",
            "errorLoadSnmpDetails": "Error loading SNMP alert details.",
            "successAddDestination": "Successfully added SNMP alert destination.",
            "successBatchDelete": "Successfully deleted SNMP alert destination. | Successfully deleted %{count} SNMP alert destinations.",
            "successDeleteDestination": "Successfully deleted SNMP alert destination."
        }
    },
    "pageCertificates": {
        "addNewCertificate": "Add new certificate",
        "caCertificate": "CA Certificate",
        "deleteCertificate": "Delete certificate",
        "generateCsr": "Generate CSR",
        "httpsCertificate": "HTTPS Certificate",
        "ldapCertificate": "LDAP Certificate",
        "replaceCertificate": "Replace certificate",
        "alert": {
            "certificateExpiredMessage": "%{certificate} has expired. Consider replacing it with a new certificate.",
            "certificateExpiringMessage": "%{certificate} is expiring soon. Consider replacing it with a new certificate.",
            "certificatesExpiredMessage": "Some certificates have expired. Consider replacing them with new certificates.",
            "certificatesExpiringMessage": "Some certificates are expiring soon. Consider replacing them with new certificates.",
            "incorrectCertificateFileType": "File is not a correct certificate type"
        },
        "modal": {
            "alternateName": "Alternate name",
            "alternateNameHelperText": "Add multiple alternate names separated by space",
            "certificateFile": "Certificate file",
            "certificateSigningRequest": "Certificate Signing Request (CSR)",
            "certificateType": "Certificate type",
            "challengePassword": "Challenge password",
            "city": "City",
            "commonName": "Common name",
            "companyName": "Company name",
            "companyUnit": "Company unit",
            "contactPerson": "Contact person",
            "country": "Country/Region",
            "deleteConfirmMessage": "Are you sure you want to delete '%{certificate}' issued by %{issuedBy}? This action cannot be undone.",
            "duplicateAlternateName": "Duplicate alternate name",
            "emailAddress": "Email address",
            "generateACertificateSigningRequest": "Generate a Certificate Signing Request (CSR)",
            "keyBitLength": "Key bit length",
            "keyCurveId": "Key curve ID",
            "keyPairAlgorithm": "Key pair algorithm",
            "privateKey": "Private key",
            "state": "State"
        },
        "table": {
            "certificate": "Certificate",
            "issuedBy": "Issued by",
            "issuedTo": "Issued to",
            "validFrom": "Valid from",
            "validUntil": "Valid until"
        },
        "toast": {
            "errorAddCertificate": "Error adding certificate.",
            "errorDeleteCertificate": "Error deleting certificate.",
            "errorReplaceCertificate": "Error replacing certificate.",
            "successAddCertificate": "Successfully added %{certificate}.",
            "successDeleteCertificate": "Successfully deleted %{certificate}.",
            "successReplaceCertificate": "Successfully replaced %{certificate}."
        }
    },
    "pageVirtualMedia": {
        "configureConnection": "Configure Connection",
        "defaultDeviceName": "Virtual media device",
        "start": "Start",
        "stop": "Stop",
        "virtualMediaSubTitleFirst": "Load image from web browser",
        "virtualMediaSubTitleSecond": "Load image from external server",
        "modal": {
            "password": "Password",
            "serverUri": "External server URI",
            "title": "Legacy mode configuration",
            "username": "Username"
        },
        "toast": {
            "errorMounting": "Error mounting",
            "errorReadingFile": "Error reading file. Closing server.",
            "errorUnmounting": "Error unmounting",
            "serverRunning": "Server running",
            "serverConnectionEstablished": "Server connection established",
            "serverClosedSuccessfully": "Server closed successfully",
            "serverClosedWithErrors": "Server closed with errors"
        }
    },
    "countries": {
        "AF": "Afghanistan",
        "AL": "Albania",
        "DZ": "Algeria",
        "AS": "American Samoa",
        "AD": "Andorra",
        "AO": "Angola",
        "AI": "Anguilla",
        "AQ": "Antarctica",
        "AG": "Antigua and Barbuda",
        "AR": "Argentina",
        "AM": "Armenia",
        "AW": "Aruba",
        "AU": "Australia",
        "AT": "Austria",
        "AZ": "Azerbaijan",
        "BS": "Bahamas, The",
        "BH": "Bahrain",
        "BD": "Bangladesh",
        "BB": "Barbados",
        "BY": "Belarus",
        "BE": "Belgium",
        "BZ": "Belize",
        "BJ": "Benin",
        "BM": "Bermuda",
        "BT": "Bhutan",
        "BO": "Bolivia",
        "BQ": "Bonaire, Sint Eustatius and Saba",
        "BA": "Bosnia and Herzegovina ",
        "BW": "Bostwana",
        "BV": "Bouvet Island",
        "BR": "Brazil",
        "IO": "British Indian Ocean Territory",
        "BN": "Brunei Darussalam ",
        "BG": "Bulgaria",
        "BF": "Burkina Faso",
        "BI": "Burundi",
        "CV": "Cabo Verde",
        "KH": "Cambodia",
        "CM": "Cameroon",
        "CA": "Canada",
        "KY": "Cayman Islands",
        "CF": "Central African Republic",
        "TD": "Chad",
        "CL": "Chile",
        "CN": "China",
        "CX": "Christmas Island ",
        "CC": "Cocos(Keeling) Islands",
        "CO": "Columbia",
        "KM": "Comoros",
        "CD": "Congo, The Democratic Republic of the",
        "CG": "Congo",
        "CK": "Cook Islands",
        "CR": "Costa Rica",
        "HR": "Croatia",
        "CU": "Cuba",
        "CW": "Curaçao",
        "CY": "Cyprus",
        "CZ": "Czechia",
        "CI": "Côte d\"Ivoire",
        "DK": "Denmark",
        "DJ": "Djibouti",
        "DM": "Dominica",
        "DO": "Dominican Republic",
        "EC": "Ecuador",
        "EG": "Egypt",
        "SV": "El Salvador",
        "GQ": "Equatorial Guinea ",
        "ER": "Eritrea",
        "EE": "Estonia",
        "SZ": "Eswatini",
        "ET": "Ethiopia",
        "FK": "Falkland Islands (Malvinas)",
        "FO": "Faroe Islands",
        "FJ": "Fiji",
        "FI": "Finland",
        "FR": "France",
        "GF": "French Guiana",
        "PF": "French Polynesia",
        "TF": "French Southern Territories",
        "GA": "Gabon",
        "GM": "Gambia, The",
        "GE": "Georgia",
        "DE": "Germany",
        "GH": "Ghana",
        "GI": "Gibraltar",
        "GR": "Greece",
        "GL": "Greenland",
        "GD": "Grenada",
        "GP": "Guadeloupe",
        "GU": "Guam",
        "GT": "Guatemala",
        "GG": "Guernsey",
        "GN": "Guinea",
        "GW": "Guinea-Bissau",
        "GY": "Guyana",
        "HT": "Haiti",
        "HM": "Heard Island and McDonald Islands",
        "VA": "Holy See",
        "HN": "Honduras",
        "HK": "Hong Kong",
        "HU": "Hungary",
        "IS": "Iceland",
        "IN": "India",
        "ID": "Indonesia",
        "IR": "Iran, Islamic Republic of",
        "IQ": "Iraq",
        "IE": "Ireland",
        "IM": "Isle of Man",
        "IL": "Israel",
        "IT": "Italy",
        "JM": "Jamaica",
        "JP": "Japan",
        "JE": "Jersey",
        "JO": "Jordan",
        "KZ": "Kazakhstan",
        "KE": "Kenya",
        "KI": "Kiribati",
        "KR": "Korea, Republic of",
        "KP": "Korea, Democratic People\"s Republic of",
        "KW": "Kuwait",
        "KG": "Kyrgyzstan",
        "LA": "Lao People\"s Democratic Republic",
        "LV": "Latvia",
        "LB": "Lebanon",
        "LS": "Lesotho",
        "LR": "Liberia",
        "LY": "Libya",
        "LI": "Liechtenstein",
        "LT": "Lithuania",
        "LU": "Luxembourg",
        "MO": "Macao",
        "MK": "Macedonia, The Former Yugoslav Republic of",
        "MG": "Madagascar",
        "MW": "Malawi",
        "MY": "Malaysia",
        "MV": "Maldives",
        "ML": "Mali",
        "MT": "Malta",
        "MH": "Marshall Islands",
        "MQ": "Martinique",
        "MR": "Mauritania",
        "MU": "Mauritius",
        "YT": "Mayotte",
        "MX": "Mexico",
        "FM": "Micronesia, Federated States of",
        "MD": "Moldova, Republic of",
        "MC": "Monaco",
        "MN": "Mongolia",
        "ME": "Montenegro",
        "MS": "Montserrat",
        "MA": "Morocco",
        "MZ": "Mozambique",
        "MM": "Myanmar",
        "NA": "Namibia",
        "NR": "Nauru",
        "NP": "Nepal",
        "NL": "Netherlands",
        "NC": "New Caledonia",
        "NZ": "New Zealand",
        "NI": "Nicaragua",
        "NE": "Niger",
        "NG": "Nigeria",
        "NU": "Niue",
        "NF": "Norfolk Island",
        "MP": "Northern Mariana Islands",
        "NO": "Norway",
        "OM": "Oman",
        "PK": "Pakistan",
        "PW": "Palau",
        "PS": "Palestine",
        "PA": "Panama",
        "PG": "Papua New Guinea",
        "PY": "Paraguay",
        "PE": "Peru",
        "PH": "Philippines",
        "PN": "Pitcairn",
        "PL": "Poland",
        "PT": "Portugal",
        "PR": "Puerto Rico",
        "QA": "Qatar",
        "RO": "Romania",
        "RU": "Russian Federation",
        "RW": "Rwanda",
        "RE": "Réunion",
        "BL": "Saint Barthélemy",
        "SH": "Saint Helena, Ascension and Tristan da Cunha",
        "KN": "Saint Kitts and Nevis ",
        "LC": "Saint Lucia",
        "MF": "Saint Martin",
        "PM": "Saint Pierre and Miquelon",
        "VC": "Saint Vincent and the Grenadines",
        "WS": "Samoa",
        "SM": "San Marino ",
        "ST": "Sao Tome and Principe",
        "SA": "Saudi Arabia",
        "SN": "Senegal",
        "RS": "Serbia",
        "SC": "Seychelles",
        "SL": "Sierra Leone",
        "SG": "Singapore",
        "SX": "Sint Maarten",
        "SK": "Slovakia",
        "SI": "Slovenia",
        "SB": "Solomon Islands",
        "SO": "Somalia",
        "ZA": "South Africa ",
        "GS": "South Georgia and the South Sandwich Islands",
        "SS": "South Sudan",
        "ES": "Spain",
        "LK": "Sri Lanka",
        "SD": "Sudan",
        "SR": "Suriname",
        "SJ": "Svalbard and Jan Mayen",
        "SE": "Sweden",
        "CH": "Switzerland",
        "SY": "Syrian Arab Republic",
        "TW": "Taiwan",
        "TJ": "Tajikistan",
        "TZ": "Tanzania, United Republic of",
        "TH": "Thailand",
        "TL": "Timor-Leste",
        "TG": "Togo",
        "TK": "Tokelau",
        "TO": "Tonga",
        "TT": "Trinidad and Tobago",
        "TN": "Tunisia",
        "TR": "Turkey",
        "TM": "Turkmenistan",
        "TC": "Turks and Caicos Islands",
        "TV": "Tuvalu",
        "UG": "Uganda",
        "UA": "Ukraine",
        "AE": "United Arab Emirates",
        "GB": "United Kingdom",
        "UM": "United States Minor Outlying Islands",
        "US": "United States of America",
        "UY": "Uruguay",
        "UZ": "Uzbekistan",
        "VU": "Vanuatu",
        "VE": "Venezuela",
        "VN": "Viet Nam",
        "VG": "Virgin Islands, British",
        "VI": "Virgin Islands, U.S",
        "WF": "Wallis and Futuna",
        "EH": "Western Sahara",
        "YE": "Yemen",
        "ZM": "Zambia",
        "ZW": "Zimbabwe",
        "AX": "Åland Islands"
    },
    "unit": {
        "℃": "℃",
        "A": "A",
        "bit": "bit",
        "GiB": "GiB",
        "MHz": "MHz",
        "MiB": "MiB",
        "Percent": "%",
        "RPM": "RPM",
        "V": "V",
        "W": "W"
    }
}