forked from edgehog-device-manager/edgehog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathen.json
More file actions
3740 lines (3740 loc) · 129 KB
/
en.json
File metadata and controls
3740 lines (3740 loc) · 129 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"components.AddAvailableApplications.deployButton": {
"defaultMessage": "Deploy"
},
"components.AddAvailableApplications.deployErrorFeedback": {
"defaultMessage": "Could not deploy the Application, please try again."
},
"components.AddAvailableApplications.deviceOfflineError": {
"defaultMessage": "The device is disconnected. You cannot deploy an application while it is offline."
},
"components.AddAvailableApplications.noApplicationsAvailable": {
"defaultMessage": "No applications available"
},
"components.AddAvailableApplications.noApplicationsFoundMatching": {
"defaultMessage": "No applications found matching \"{inputValue}\""
},
"components.AddAvailableApplications.noReleasesAvailable": {
"defaultMessage": "No releases available for this application"
},
"components.AddAvailableApplications.noReleasesFoundMatching": {
"defaultMessage": "No releases found matching \"{inputValue}\""
},
"components.AddAvailableApplications.searchPlaceholder": {
"defaultMessage": "Search or select an application..."
},
"components.AddAvailableApplications.selectARelease": {
"defaultMessage": "Select a release"
},
"components.AddAvailableApplications.selectApplication": {
"defaultMessage": "Select Application"
},
"components.AddAvailableApplications.selectApplicationFirst": {
"defaultMessage": "Please select an application first"
},
"components.AddAvailableApplications.selectRelease": {
"defaultMessage": "Select Release"
},
"components.ApplicationDevicesTable.applicationStateTitle": {
"defaultMessage": "Application State",
"description": "Title for the Application State column of the application devices table"
},
"components.ApplicationDevicesTable.nameTitle": {
"defaultMessage": "Device Name",
"description": "Title for the Name column of the application devices table"
},
"components.ApplicationDevicesTable.releaseVersionTitle": {
"defaultMessage": "Release Version",
"description": "Title for the Release Version column of the application devices table"
},
"components.ApplicationDevicesTable.statusTitle": {
"defaultMessage": "Status",
"description": "Title for the Status column of the devices table"
},
"components.ApplicationsTable.action": {
"defaultMessage": "Action"
},
"components.ApplicationsTable.nameTitle": {
"defaultMessage": "Application Name",
"description": "Title for the Name column of the applications table"
},
"components.BaseImageCollectionsTable.handleTitle": {
"defaultMessage": "Handle",
"description": "Title for the Handle column of the base image collections table"
},
"components.BaseImageCollectionsTable.nameTitle": {
"defaultMessage": "Base Image Collection Name",
"description": "Title for the Name column of the base image collections table"
},
"components.BaseImageCollectionsTable.systemModelTitle": {
"defaultMessage": "System Model",
"description": "Title for the System Model column of the base image collections table"
},
"components.BaseImageSelect.ErrorFallback.message": {
"defaultMessage": "Failed to load Base Images list."
},
"components.BaseImageSelect.ErrorFallback.reloadButton": {
"defaultMessage": "Reload"
},
"components.BaseImageSelect.baseImageOption": {
"defaultMessage": "Search or select a base image..."
},
"components.BaseImageSelect.noBaseImagesAvailable": {
"defaultMessage": "No base images available"
},
"components.BaseImageSelect.noBaseImagesFoundMatching": {
"defaultMessage": "No base images found matching \"{inputValue}\""
},
"components.BaseImagesTable.releaseDisplayNameTitle": {
"defaultMessage": "Release Name",
"description": "Title for the Release Name column of the base images table"
},
"components.BaseImagesTable.startingVersionRequirementTitle": {
"defaultMessage": "Supported Starting Versions",
"description": "Title for the Supported Starting Versions column of the base images table"
},
"components.BaseImagesTable.versionTitle": {
"defaultMessage": "Base Image Version",
"description": "Title for the Version column of the base images table"
},
"components.BatteryTable.chargeLevelTitle": {
"defaultMessage": "Charge Level"
},
"components.BatteryTable.noBattery.message": {
"defaultMessage": "The device has not detected any battery yet."
},
"components.BatteryTable.noBattery.title": {
"defaultMessage": "No battery"
},
"components.BatteryTable.slotTitle": {
"defaultMessage": "Slot"
},
"components.BatteryTable.status.Charging": {
"defaultMessage": "Charging"
},
"components.BatteryTable.status.Discharging": {
"defaultMessage": "Discharging"
},
"components.BatteryTable.status.Either_idle_or_charging": {
"defaultMessage": "Idle/Charging"
},
"components.BatteryTable.status.Failure": {
"defaultMessage": "Failure"
},
"components.BatteryTable.status.Idle": {
"defaultMessage": "Idle"
},
"components.BatteryTable.status.Removed": {
"defaultMessage": "Removed"
},
"components.BatteryTable.status.Unknown": {
"defaultMessage": "Unknown"
},
"components.BatteryTable.statusTitle": {
"defaultMessage": "Status"
},
"components.CampaignOutcome.Failure": {
"defaultMessage": "Failure"
},
"components.CampaignOutcome.Success": {
"defaultMessage": "Success"
},
"components.CampaignStatus.Finished": {
"defaultMessage": "Finished"
},
"components.CampaignStatus.Idle": {
"defaultMessage": "Idle"
},
"components.CampaignStatus.InProgress": {
"defaultMessage": "In progress"
},
"components.CampaignStatus.Paused": {
"defaultMessage": "Paused"
},
"components.CampaignStatus.Pausing": {
"defaultMessage": "Pausing"
},
"components.CellularConnectionTabs.Modem.APN": {
"defaultMessage": "APN"
},
"components.CellularConnectionTabs.Modem.Carrier": {
"defaultMessage": "Carrier"
},
"components.CellularConnectionTabs.Modem.CellID": {
"defaultMessage": "Cell ID"
},
"components.CellularConnectionTabs.Modem.IMEI": {
"defaultMessage": "IMEI"
},
"components.CellularConnectionTabs.Modem.IMSI": {
"defaultMessage": "IMSI"
},
"components.CellularConnectionTabs.Modem.LocalAreaCode": {
"defaultMessage": "Local Area Code"
},
"components.CellularConnectionTabs.Modem.MobileCountryCode": {
"defaultMessage": "Mobile Country Code"
},
"components.CellularConnectionTabs.Modem.MobileNetworkCode": {
"defaultMessage": "Mobile Network Code"
},
"components.CellularConnectionTabs.Modem.RSSI": {
"defaultMessage": "RSSI"
},
"components.CellularConnectionTabs.Modem.RegistrationStatus": {
"defaultMessage": "Registration Status"
},
"components.CellularConnectionTabs.Modem.technology": {
"defaultMessage": "Technology"
},
"components.CellularConnectionTabs.noModems.message": {
"defaultMessage": "The device has not detected any modems yet."
},
"components.CellularConnectionTabs.noModems.title": {
"defaultMessage": "No modem"
},
"components.ChannelsTable.handleTitle": {
"defaultMessage": "Handle",
"description": "Title for the Handle column of the channels table"
},
"components.ChannelsTable.nameTitle": {
"defaultMessage": "Channel Name",
"description": "Title for the Name column of the channels table"
},
"components.ChannelsTable.targetGroupsTitle": {
"defaultMessage": "Target Groups",
"description": "Title for the Target Groups column of the channels table"
},
"components.CollapseItem.collapseList": {
"defaultMessage": "Collapse list"
},
"components.CollapseItem.expandList": {
"defaultMessage": "Expand list"
},
"components.ConfirmModal.cancelButton": {
"defaultMessage": "Cancel",
"description": "Title for the button to cancel and dismiss a confirmation modal"
},
"components.ConnectionStatus.statusConnected": {
"defaultMessage": "Connected"
},
"components.ConnectionStatus.statusDisconnected": {
"defaultMessage": "Disconnected"
},
"components.ContainerStatus.created": {
"defaultMessage": "Created"
},
"components.ContainerStatus.dead": {
"defaultMessage": "Dead"
},
"components.ContainerStatus.exited": {
"defaultMessage": "Exited"
},
"components.ContainerStatus.paused": {
"defaultMessage": "Paused"
},
"components.ContainerStatus.removing": {
"defaultMessage": "Removing"
},
"components.ContainerStatus.restarting": {
"defaultMessage": "Restarting"
},
"components.ContainerStatus.running": {
"defaultMessage": "Running"
},
"components.ContainerStatus.unknown": {
"defaultMessage": "Unknown"
},
"components.ContainersTable.bindsLabel": {
"defaultMessage": "Binds"
},
"components.ContainersTable.capAdd": {
"defaultMessage": "Cap Add"
},
"components.ContainersTable.capDrop": {
"defaultMessage": "Cap Drop"
},
"components.ContainersTable.cpuPeriodLabel": {
"defaultMessage": "CPU Period (microseconds)"
},
"components.ContainersTable.cpuQuotaLabel": {
"defaultMessage": "CPU Quota (microseconds)"
},
"components.ContainersTable.cpuRealtimePeriodLabel": {
"defaultMessage": "CPU Real Time Period (microseconds)"
},
"components.ContainersTable.cpuRealtimeRuntimeLabel": {
"defaultMessage": "CPU Realtime Runtime (microseconds)"
},
"components.ContainersTable.deviceMappingsLabel": {
"defaultMessage": "Device Mappings"
},
"components.ContainersTable.envLabel": {
"defaultMessage": "Environment (JSON String)"
},
"components.ContainersTable.extraHostsLabel": {
"defaultMessage": "Extra Hosts"
},
"components.ContainersTable.hostnameLabel": {
"defaultMessage": "Hostname"
},
"components.ContainersTable.imageConfigSection": {
"defaultMessage": "Image Configuration"
},
"components.ContainersTable.imageCredentialsLabel": {
"defaultMessage": "Image Credentials"
},
"components.ContainersTable.imageReferenceLabel": {
"defaultMessage": "Image Reference"
},
"components.ContainersTable.memoryLabel": {
"defaultMessage": "Memory (bytes)"
},
"components.ContainersTable.memoryReservationLabel": {
"defaultMessage": "Memory Reservation (bytes)"
},
"components.ContainersTable.memorySwapLabel": {
"defaultMessage": "Memory + Swap (bytes)"
},
"components.ContainersTable.memorySwappinessLabel": {
"defaultMessage": "Memory Swappiness (0-100)"
},
"components.ContainersTable.networkConfigSection": {
"defaultMessage": "Network Configuration"
},
"components.ContainersTable.networkDriverLabel": {
"defaultMessage": "Driver"
},
"components.ContainersTable.networkEnableIPv6Label": {
"defaultMessage": "Enable IPv6"
},
"components.ContainersTable.networkInternalLabel": {
"defaultMessage": "Internal"
},
"components.ContainersTable.networkLabelLabel": {
"defaultMessage": "Label"
},
"components.ContainersTable.networkModeLabel": {
"defaultMessage": "Network Mode"
},
"components.ContainersTable.networkOptionsLabel": {
"defaultMessage": "Options (JSON)"
},
"components.ContainersTable.networksLabel": {
"defaultMessage": "Networks"
},
"components.ContainersTable.noContainers": {
"defaultMessage": "No containers available."
},
"components.ContainersTable.noDeviceMappings": {
"defaultMessage": "No device mappings assigned."
},
"components.ContainersTable.noNetworks": {
"defaultMessage": "No networks assigned."
},
"components.ContainersTable.noVolumes": {
"defaultMessage": "No volumes assigned."
},
"components.ContainersTable.options": {
"defaultMessage": "Options"
},
"components.ContainersTable.portBindingsLabel": {
"defaultMessage": "Port Bindings"
},
"components.ContainersTable.privilegedLabel": {
"defaultMessage": "Privileged"
},
"components.ContainersTable.readOnlyRootfsLabel": {
"defaultMessage": "Read-Only Root Filesystem"
},
"components.ContainersTable.resourceLimitsSection": {
"defaultMessage": "Resource Limits"
},
"components.ContainersTable.restartPolicyLabel": {
"defaultMessage": "Restart Policy"
},
"components.ContainersTable.runtimeSection": {
"defaultMessage": "Runtime & Environment"
},
"components.ContainersTable.securitySection": {
"defaultMessage": "Security & Capabilities"
},
"components.ContainersTable.storageConfigSection": {
"defaultMessage": "Storage Configuration"
},
"components.ContainersTable.storageOptLabel": {
"defaultMessage": "Storage Options"
},
"components.ContainersTable.targetLabel": {
"defaultMessage": "Target"
},
"components.ContainersTable.tmpfsLabel": {
"defaultMessage": "Tmpfs"
},
"components.ContainersTable.volumeDriver": {
"defaultMessage": "Volume Driver"
},
"components.ContainersTable.volumeDriverLabel": {
"defaultMessage": "Driver"
},
"components.ContainersTable.volumeLabelLabel": {
"defaultMessage": "Label"
},
"components.ContainersTable.volumesLabel": {
"defaultMessage": "Volumes"
},
"components.DeleteApplicationModal.deleteModal.description": {
"defaultMessage": "This action cannot be undone. This will permanently delete the application."
},
"components.DeleteApplicationModal.deleteModal.title": {
"defaultMessage": "Delete Application"
},
"components.DeleteApplicationModal.deletionErrorFeedback": {
"defaultMessage": "Could not delete the application, please try again."
},
"components.DeleteModal.confirmButton": {
"defaultMessage": "Delete",
"description": "Title for the button to confirm a deletion modal"
},
"components.DeleteModal.confirmPrompt": {
"defaultMessage": "Please type <bold>{confirmText}</bold> to confirm.",
"description": "Description of the action to perform to confirm the deletion modal"
},
"components.DeleteReleaseModal.deletionErrorFeedback": {
"defaultMessage": "Could not delete the release, please try again."
},
"components.DeleteReleaseModal.description": {
"defaultMessage": "This action cannot be undone. This will permanently delete the release."
},
"components.DeleteReleaseModal.title": {
"defaultMessage": "Delete Release"
},
"components.DeployedApplicationsTable.deleteButtonTitle": {
"defaultMessage": "Delete Deployment"
},
"components.DeployedApplicationsTable.latest": {
"defaultMessage": "Latest"
},
"components.DeployedApplicationsTable.noDeployedApplications": {
"defaultMessage": "No deployed applications"
},
"components.DeployedApplicationsTable.sendButtonTitle": {
"defaultMessage": "Redeploy Application"
},
"components.DeployedApplicationsTable.startButtonTitle": {
"defaultMessage": "Start Deployment"
},
"components.DeployedApplicationsTable.stopButtonTitle": {
"defaultMessage": "Stop Deployment"
},
"components.DeployedApplicationsTable.upgradeButtonTitle": {
"defaultMessage": "Upgrade Deployment"
},
"components.DeploymentCampaignsTable.applicationNameTitle": {
"defaultMessage": "Application Name",
"description": "Title for the Application Name column of the Deployment Campaigns table"
},
"components.DeploymentCampaignsTable.deploymentChannelNameTitle": {
"defaultMessage": "Channel",
"description": "Title for the Channel column of the Deployment Campaigns table"
},
"components.DeploymentCampaignsTable.nameTitle": {
"defaultMessage": "Deployment Campaign Name",
"description": "Title for the Name column of the Deployment Campaigns table"
},
"components.DeploymentCampaignsTable.operationTypeTitle": {
"defaultMessage": "Operation type"
},
"components.DeploymentCampaignsTable.outcomeTitle": {
"defaultMessage": "Outcome"
},
"components.DeploymentCampaignsTable.releaseVersionTitle": {
"defaultMessage": "Release Version",
"description": "Title for the Release column of the Deployment Campaigns table"
},
"components.DeploymentCampaignsTable.statusTitle": {
"defaultMessage": "Status"
},
"components.DeploymentDetails.confirmLabel": {
"defaultMessage": "Confirm"
},
"components.DeploymentDetails.confirmModal.description": {
"defaultMessage": "Are you sure you want to upgrade the deployment <bold>{application}</bold> from version <bold>{currentVersion}</bold> to version:"
},
"components.DeploymentDetails.confirmModal.title": {
"defaultMessage": "Upgrade Deployment"
},
"components.DeploymentDetails.containerWithIndex": {
"defaultMessage": "Container {index}"
},
"components.DeploymentDetails.deleteErrorOffline": {
"defaultMessage": "The device is disconnected. You cannot delete an application while it is offline."
},
"components.DeploymentDetails.deleteModal.description": {
"defaultMessage": "This action cannot be undone. This will permanently delete the deployment."
},
"components.DeploymentDetails.deleteModal.note": {
"defaultMessage": "Note: A deletion request will be sent to the device to start the deletion process. Please note that it may take some time for the request to be processed. This is expected behavior."
},
"components.DeploymentDetails.deleteModal.title": {
"defaultMessage": "Delete Deployment"
},
"components.DeploymentDetails.deletionErrorFeedback": {
"defaultMessage": "Could not delete the deployment, please try again."
},
"components.DeploymentDetails.deviceMappings": {
"defaultMessage": "Device Mappings"
},
"components.DeploymentDetails.incompatibleVersion": {
"defaultMessage": "{version} (Incompatible system model)"
},
"components.DeploymentDetails.networks": {
"defaultMessage": "Networks"
},
"components.DeploymentDetails.noContainers": {
"defaultMessage": "No containers"
},
"components.DeploymentDetails.noReleasesAvailable": {
"defaultMessage": "No Release Versions Available"
},
"components.DeploymentDetails.noReleasesFoundMatching": {
"defaultMessage": "No release versions found matching \"{inputValue}\""
},
"components.DeploymentDetails.none": {
"defaultMessage": "None"
},
"components.DeploymentDetails.releaseVersion": {
"defaultMessage": "v.{version}"
},
"components.DeploymentDetails.selectOption": {
"defaultMessage": "Select a Release Version"
},
"components.DeploymentDetails.sendErrorFeedback": {
"defaultMessage": "Could not send the Application to the device, please try again."
},
"components.DeploymentDetails.sendErrorOffline": {
"defaultMessage": "The device is disconnected. You cannot deploy an application while it is offline."
},
"components.DeploymentDetails.startErrorFeedback": {
"defaultMessage": "Could not Start the Deployed Application, please try again."
},
"components.DeploymentDetails.startErrorOffline": {
"defaultMessage": "The device is disconnected. You cannot start an application while it is offline."
},
"components.DeploymentDetails.stopErrorFeedback": {
"defaultMessage": "Could not Stop the Deployed Application, please try again."
},
"components.DeploymentDetails.stopErrorOffline": {
"defaultMessage": "The device is disconnected. You cannot stop an application while it is offline."
},
"components.DeploymentDetails.unnamed": {
"defaultMessage": "Unnamed"
},
"components.DeploymentDetails.unnamedImage": {
"defaultMessage": "Unnamed image"
},
"components.DeploymentDetails.upgradeErrorFeedback": {
"defaultMessage": "Could not upgrade the deployment, please try again."
},
"components.DeploymentDetails.upgradeErrorOffline": {
"defaultMessage": "The device is disconnected. You cannot upgrade an application while it is offline."
},
"components.DeploymentDetails.volumes": {
"defaultMessage": "Volumes"
},
"components.DeploymentEventMessage.noMessage": {
"defaultMessage": "No message in event."
},
"components.DeploymentEventMessage.noShortMessage": {
"defaultMessage": "No short message. Click to show extended info."
},
"components.DeploymentLogs.EventType.Deleting": {
"defaultMessage": "Deleting"
},
"components.DeploymentLogs.EventType.Error": {
"defaultMessage": "Error"
},
"components.DeploymentLogs.EventType.Started": {
"defaultMessage": "Started"
},
"components.DeploymentLogs.EventType.Starting": {
"defaultMessage": "Starting"
},
"components.DeploymentLogs.EventType.Stopped": {
"defaultMessage": "Stopped"
},
"components.DeploymentLogs.EventType.Stopping": {
"defaultMessage": "Stopping"
},
"components.DeploymentLogs.EventType.Updating": {
"defaultMessage": "Updating"
},
"components.DeploymentReadiness.notReady": {
"defaultMessage": "Deploying"
},
"components.DeploymentReadiness.ready": {
"defaultMessage": "Ready"
},
"components.DeploymentStateComponent.deleting": {
"defaultMessage": "Deleting"
},
"components.DeploymentStateComponent.deploying": {
"defaultMessage": "Deploying"
},
"components.DeploymentStateComponent.error": {
"defaultMessage": "Error"
},
"components.DeploymentStateComponent.pending": {
"defaultMessage": "Pending"
},
"components.DeploymentStateComponent.sent": {
"defaultMessage": "Sent"
},
"components.DeploymentStateComponent.started": {
"defaultMessage": "Started"
},
"components.DeploymentStateComponent.starting": {
"defaultMessage": "Starting"
},
"components.DeploymentStateComponent.stopped": {
"defaultMessage": "Stopped"
},
"components.DeploymentStateComponent.stopping": {
"defaultMessage": "Stopping"
},
"components.DeploymentTargetsTable.completionTimestampTitle": {
"defaultMessage": "Completed at",
"description": "Title for the Completed at column of the Deployment Targets table"
},
"components.DeploymentTargetsTable.deviceNameTitle": {
"defaultMessage": "Device Name",
"description": "Title for the Device Name column of the Deployment Targets table"
},
"components.DeploymentTargetsTable.lastErrorMessageTitle": {
"defaultMessage": "Failure Reason",
"description": "Title for the Last Error Message column of the Deployment Targets table"
},
"components.DeploymentTargetsTable.latestAttemptTitle": {
"defaultMessage": "Latest attempt at",
"description": "Title for the Latest attempt at column of the Deployment Targets table"
},
"components.DeploymentTargetsTable.readinessTitle": {
"defaultMessage": "Readiness",
"description": "Title for the Readiness column of the Deployment Targets table"
},
"components.DeploymentTargetsTable.retryCountTitle": {
"defaultMessage": "Retry Count",
"description": "Title for the Retry Count column of the Deployment Targets table"
},
"components.DeploymentTargetsTable.stateTitle": {
"defaultMessage": "State",
"description": "Title for the State column of the Deployment Targets table"
},
"components.DeploymentTargetsTabs.deploymentTargetsLabel": {
"defaultMessage": "Devices"
},
"components.DeploymentsTable.applicationNameTitle": {
"defaultMessage": "Application Name",
"description": "Title for the Application Name column of the deployments table"
},
"components.DeploymentsTable.applicationStateTitle": {
"defaultMessage": "Application State",
"description": "Title for the Application State column of the deployments table"
},
"components.DeploymentsTable.deploymentOnDeviceTitle": {
"defaultMessage": "Deployment on Device",
"description": "Title for the Deployment on Device column of the deployments table"
},
"components.DeploymentsTable.releaseVersionTitle": {
"defaultMessage": "Release Version",
"description": "Title for the Release Version column of the deployments table"
},
"components.DeviceGroupsTable.handleTitle": {
"defaultMessage": "Handle",
"description": "Title for the Handle column of the device groups table"
},
"components.DeviceGroupsTable.nameTitle": {
"defaultMessage": "Group Name",
"description": "Title for the Name column of the device groups table"
},
"components.DeviceGroupsTable.selectorTitle": {
"defaultMessage": "Selector",
"description": "Title for the Selector column of the device groups table"
},
"components.DeviceMappingsFormInput.addDeviceMappingButton": {
"defaultMessage": "Add Device Mapping"
},
"components.DeviceMappingsFormInput.cgroupPermissionsLabel": {
"defaultMessage": "Container Group Permissions"
},
"components.DeviceMappingsFormInput.pathInContainerLabel": {
"defaultMessage": "Path In Container"
},
"components.DeviceMappingsFormInput.pathOnHostLabel": {
"defaultMessage": "Path On Host"
},
"components.DeviceTabs.ApplicationsTab": {
"defaultMessage": "Applications"
},
"components.DeviceTabs.ApplicationsTab.DeployedApplications": {
"defaultMessage": "Deployed Applications"
},
"components.DeviceTabs.ApplicationsTab.InstallNewApp": {
"defaultMessage": "Install Applications"
},
"components.DeviceTabs.BaseImageTab": {
"defaultMessage": "Base Image"
},
"components.DeviceTabs.BaseImageTab.buildId": {
"defaultMessage": "Build identifier"
},
"components.DeviceTabs.BaseImageTab.fingerprint": {
"defaultMessage": "Fingerprint"
},
"components.DeviceTabs.BaseImageTab.name": {
"defaultMessage": "Name"
},
"components.DeviceTabs.BaseImageTab.version": {
"defaultMessage": "Version"
},
"components.DeviceTabs.BatteryTab": {
"defaultMessage": "Battery"
},
"components.DeviceTabs.CellularConnectionTab": {
"defaultMessage": "Cellular Connection"
},
"components.DeviceTabs.FileManagementTab.fileManagementLabel": {
"defaultMessage": "File Management Mode"
},
"components.DeviceTabs.FileManagementTab.fromDevice": {
"defaultMessage": "From Device"
},
"components.DeviceTabs.FileManagementTab.toDeviceDirect": {
"defaultMessage": "To Device - Direct File"
},
"components.DeviceTabs.FileManagementTab.toDeviceRepository": {
"defaultMessage": "To Device - Repository"
},
"components.DeviceTabs.FilesDownloadTab": {
"defaultMessage": "Files Download"
},
"components.DeviceTabs.FilesDownloadTab.error.unknownError": {
"defaultMessage": "An unknown error occurred."
},
"components.DeviceTabs.FilesDownloadTab.requestHistory": {
"defaultMessage": "Request History"
},
"components.DeviceTabs.FilesDownloadTab.sourceType.filesystem": {
"defaultMessage": "File System"
},
"components.DeviceTabs.FilesDownloadTab.sourceType.storage": {
"defaultMessage": "Storage"
},
"components.DeviceTabs.FilesDownloadTab.uploadSource": {
"defaultMessage": "Upload Source"
},
"components.DeviceTabs.FilesUploadTab": {
"defaultMessage": "Files Upload"
},
"components.DeviceTabs.FilesUploadTab.archivationErrorFeedback": {
"defaultMessage": "Could not process files locally. Please try again."
},
"components.DeviceTabs.FilesUploadTab.creationErrorFeedback": {
"defaultMessage": "Could not create file download request, please try again."
},
"components.DeviceTabs.FilesUploadTab.destinationType.filesystem": {
"defaultMessage": "File System"
},
"components.DeviceTabs.FilesUploadTab.destinationType.storage": {
"defaultMessage": "Storage"
},
"components.DeviceTabs.FilesUploadTab.destinationType.streaming": {
"defaultMessage": "Streaming"
},
"components.DeviceTabs.FilesUploadTab.modeFile": {
"defaultMessage": "Direct File"
},
"components.DeviceTabs.FilesUploadTab.modeRepository": {
"defaultMessage": "Repository"
},
"components.DeviceTabs.FilesUploadTab.requestHistory": {
"defaultMessage": "Request History"
},
"components.DeviceTabs.FilesUploadTab.uploadErrorFeedback": {
"defaultMessage": "Upload failed. Please check your connection."
},
"components.DeviceTabs.FilesUploadTab.uploadLocation": {
"defaultMessage": "Upload Location"
},
"components.DeviceTabs.HardwareInfoTab": {
"defaultMessage": "Hardware Info"
},
"components.DeviceTabs.HardwareInfoTab.cpuArchitecture": {
"defaultMessage": "CPU architecture"
},
"components.DeviceTabs.HardwareInfoTab.cpuModel": {
"defaultMessage": "CPU model code"
},
"components.DeviceTabs.HardwareInfoTab.cpuModelName": {
"defaultMessage": "CPU model name"
},
"components.DeviceTabs.HardwareInfoTab.cpuVendor": {
"defaultMessage": "CPU vendor"
},
"components.DeviceTabs.HardwareInfoTab.memoryTotalBytes": {
"defaultMessage": "Total memory"
},
"components.DeviceTabs.LocationTab": {
"defaultMessage": "Geolocation"
},
"components.DeviceTabs.LocationTab.lastUpdateAt": {
"defaultMessage": "Last known location, updated at {date}"
},
"components.DeviceTabs.NetworkInterfacesTab": {
"defaultMessage": "Network Interfaces"
},
"components.DeviceTabs.OSInfoTab": {
"defaultMessage": "Operating System"
},
"components.DeviceTabs.OSInfoTab.name": {
"defaultMessage": "OS name"
},
"components.DeviceTabs.OSInfoTab.version": {
"defaultMessage": "OS version"
},
"components.DeviceTabs.RuntimeInfoTab": {
"defaultMessage": "Runtime"
},
"components.DeviceTabs.RuntimeInfoTab.environment": {
"defaultMessage": "Environment"
},
"components.DeviceTabs.RuntimeInfoTab.name": {
"defaultMessage": "Name"
},
"components.DeviceTabs.RuntimeInfoTab.url": {
"defaultMessage": "URL"
},
"components.DeviceTabs.RuntimeInfoTab.version": {
"defaultMessage": "Version"
},
"components.DeviceTabs.SoftwareUpdateTab": {
"defaultMessage": "Software Updates"
},
"components.DeviceTabs.SoftwareUpdateTab.manualOTAUpdate": {
"defaultMessage": "Manual OTA Update"
},
"components.DeviceTabs.SoftwareUpdateTab.modeCollection": {
"defaultMessage": "Collection"
},
"components.DeviceTabs.SoftwareUpdateTab.modeFile": {
"defaultMessage": "File"
},
"components.DeviceTabs.SoftwareUpdateTab.otaUpdateCreationErrorFeedback": {
"defaultMessage": "Could not start the OTA update, please try again."
},
"components.DeviceTabs.SoftwareUpdateTab.updatesHistory": {
"defaultMessage": "History"
},
"components.DeviceTabs.StorageUsageTab": {
"defaultMessage": "Storage"
},
"components.DeviceTabs.SystemStatusTab": {
"defaultMessage": "System Status"
},
"components.DeviceTabs.SystemStatusTab.lastUpdateAt": {
"defaultMessage": "Last updated at {date}"
},
"components.DeviceTabs.SystemStatusTab.memoryFreeBytes": {
"defaultMessage": "Free Memory"
},
"components.DeviceTabs.SystemStatusTab.taskCount": {
"defaultMessage": "Active Tasks"
},
"components.DeviceTabs.SystemStatusTab.uptimeMilliseconds": {
"defaultMessage": "Last boot at"
},
"components.DeviceTabs.WiFiScanResultsTab": {
"defaultMessage": "WiFi APs"
},
"components.DevicesGroupsTable.deviceIdTitle": {
"defaultMessage": "Device ID",
"description": "Title for the Device ID column of the devices table"
},
"components.DevicesGroupsTable.hardwareType": {
"defaultMessage": "Hardware Type"
},
"components.DevicesGroupsTable.lastSeenTitle": {
"defaultMessage": "Last Seen",
"description": "Title for the Last Seen column of the devices table"
},
"components.DevicesGroupsTable.nameTitle": {
"defaultMessage": "Device Name",
"description": "Title for the Name column of the devices table"
},
"components.DevicesGroupsTable.statusTitle": {
"defaultMessage": "Status",
"description": "Title for the Status column of the devices table"
},
"components.DevicesGroupsTable.systemModel": {
"defaultMessage": "System Model"
},
"components.DevicesGroupsTable.tagsTitle": {
"defaultMessage": "Tags",
"description": "Title for the Tags column of the devices table"
},
"components.DevicesTable.deviceIdTitle": {
"defaultMessage": "Device ID",
"description": "Title for the Device ID column of the devices table"
},
"components.DevicesTable.hardwareType": {
"defaultMessage": "Hardware Type"
},
"components.DevicesTable.lastSeenTitle": {
"defaultMessage": "Last Seen",
"description": "Title for the Last Seen column of the devices table"
},
"components.DevicesTable.nameTitle": {
"defaultMessage": "Device Name",
"description": "Title for the Name column of the devices table"
},
"components.DevicesTable.statusTitle": {
"defaultMessage": "Status",
"description": "Title for the Status column of the devices table"
},
"components.DevicesTable.systemModel": {
"defaultMessage": "System Model"
},
"components.DevicesTable.tagsTitle": {
"defaultMessage": "Tags",
"description": "Title for the Tags column of the devices table"
},
"components.FieldHelp.exampleTitle": {
"defaultMessage": "Example:"
},
"components.FileDownloadCampaignsTable.channelNameTitle": {
"defaultMessage": "Channel"
},
"components.FileDownloadCampaignsTable.destinationTypeTitle": {
"defaultMessage": "Destination Type"
},
"components.FileDownloadCampaignsTable.fileNameTitle": {
"defaultMessage": "File"
},
"components.FileDownloadCampaignsTable.nameTitle": {
"defaultMessage": "File Download Campaign Name"
},
"components.FileDownloadCampaignsTable.outcomeTitle": {
"defaultMessage": "Outcome"
},
"components.FileDownloadCampaignsTable.repositoryNameTitle": {
"defaultMessage": "Repository"
},
"components.FileDownloadCampaignsTable.statusTitle": {
"defaultMessage": "Status"
},
"components.FileDownloadRequestsTable.campaignName": {
"defaultMessage": "File Download Campaign"
},
"components.FileDownloadRequestsTable.destination": {
"defaultMessage": "Destination"
},
"components.FileDownloadRequestsTable.destination.filesystem": {
"defaultMessage": "FILESYSTEM: {destination}"
},
"components.FileDownloadRequestsTable.destination.storage": {
"defaultMessage": "STORAGE: {path}"
},
"components.FileDownloadRequestsTable.fileName": {
"defaultMessage": "File Name"
},
"components.FileDownloadRequestsTable.fileSize": {
"defaultMessage": "Uncompressed File Size"
},
"components.FileDownloadRequestsTable.noRequests": {
"defaultMessage": "No file download requests have been sent yet."
},
"components.FileDownloadRequestsTable.progress": {
"defaultMessage": "Progress"
},
"components.FileDownloadRequestsTable.responseMessage": {
"defaultMessage": "Response Message"
},
"components.FileDownloadRequestsTable.status": {
"defaultMessage": "Status"
},
"components.FileDownloadRequestsTable.status.notTracked": {
"defaultMessage": "Not Tracked"
},
"components.FileDownloadRequestsTable.ttl": {
"defaultMessage": "TTL (s)"
},
"components.FileDownloadRequestsTable.ttl.infinite": {
"defaultMessage": "Infinite"
},
"components.FileDownloadTargetsTable.completionTimestampTitle": {
"defaultMessage": "Completed at"
},
"components.FileDownloadTargetsTable.deviceTitle": {
"defaultMessage": "Device"
},
"components.FileDownloadTargetsTable.failureReasonTitle": {
"defaultMessage": "Failure Reason"
},
"components.FileDownloadTargetsTable.latestAttemptTitle": {
"defaultMessage": "Latest attempt at"
},
"components.FileDownloadTargetsTable.pathOnDeviceTitle": {
"defaultMessage": "Path on device"
},
"components.FileDownloadTargetsTable.requestProgressTitle": {
"defaultMessage": "Progress"
},
"components.FileDownloadTargetsTable.requestStatusTitle": {
"defaultMessage": "Request Status"
},
"components.FileDownloadTargetsTable.retryCountTitle": {
"defaultMessage": "Retry Count"
},
"components.FileDownloadTargetsTabs.targetsLabel": {
"defaultMessage": "Devices"
},