-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.json
1214 lines (1214 loc) · 62.6 KB
/
en.json
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
{
"agents.actions": "Actions",
"agents.agent_id": "Agent ID",
"agents.agents": "Agents",
"agents.cameras": "Camera",
"agents.cannot_load_agents": "Cannot load agent list",
"agents.change_streamer_confirm": "Are you sure you want to change agent streamer to {streamer}?",
"agent.status": "Статус",
"agents.ip_address": "IP address",
"agents.local_ip": "Local IP",
"agents.model": "Model",
"agents.model_id": "Model ID",
"agents.not_found": "No agents found",
"agents.pin": "PIN",
"agents.public_ip": "Public IP",
"agents.sn": "Serial Number",
"agents.streamer": "Streamer",
"agents.streamer_disable": "Disable",
"agents.streamer_reconnect": "Reconnect",
"agents.uptime": "Uptime",
"agents.version": "Version",
"auth.back_to_old_ui": "Back to old UI",
"auth.check_recovery_email": "Please check recovery email inbox to reset your password",
"auth.confirm_password": "Confirm password",
"auth.continue": "Continue",
"auth.signIn": "Sign in",
"auth.demo_access": "Continue with access to Public cameras",
"auth.enter_new_password": "Enter new password and confirm:",
"auth.enter_recovery_email": "Enter your recovery email",
"auth.firstrun_text": "This is the first run. Please set up superuser's credentials below.",
"auth.log_in": "Log in",
"auth.login": "Login",
"auth.password": "Password",
"auth.password_is_required": "Password is required",
"auth.passwords_dont_match": "Passwords don't match",
"auth.restore_password": "Restore password",
"auth.save": "Save",
"calendar.this_month": "This month",
"calendar.this_week": "This week",
"calendar.today": "Today",
"calendar.yesterday": "Yesterday",
"cameras.access": "Access",
"cameras.actions": "Actions",
"cameras.create_action": "Create action",
"cameras.edit_action": "Edit action",
"cameras.action_item_load_error": "Cannot load camera action",
"cameras.saving_action": "Saving action",
"cameras.action_saved_success": "Action saved",
"cameras.action_save_error": "Error with saving action",
"cameras.actions_load_error": "Cannot load camera actions",
"cameras.action_deleting_confirm": "Are you sure you want to delete camera action?",
"cameras.action_deleting": "Deleting camera action...",
"cameras.action_deleting_success": "Camera action deleted",
"cameras.action_deleting_error": "Camera action delete error",
"cameras.add_a_camera": "Add a camera",
"cameras.add_by_ip": "Add by IP",
"cameras.add_camera_by_ip": "Add a camera by IP",
"cameras.add_to_favorites": "Add to favorites",
"cameras.adding_to_favorites": "Adding the camera to favorites...",
"cameras.adding_to_favorites_fail": "Cannot add a camera to favorites",
"cameras.additional_settings": "Additional settings",
"cameras.administration": "Administration",
"cameras.dvr_depth_alert": "You have reduced the recording depth. All data older than the selected value will be deleted after saving",
"cameras.adjustable_preset_will_overwrite_camera_properties": "The selected preset has predefined values of fields \"DVR Depth\", \"DVR Days Limit for records with detected motion\", \"Precise event thumbnails\" and \"DVR Space\". Do you want to overwrite these fields in camera properties?",
"cameras.anpr": "ANPR",
"cameras.anpr_hint": "Use NVIDIA GPU to recognize license plate numbers.",
"cameras.anpr_warning": "Ensure your streamer has at least one GPU to get this feature to work.",
"cameras.apply_to_all_selected_cameras": "Apply for all selected cameras",
"cameras.archive": "Archive",
"cameras.attempt_to_login": "attempt to log in...",
"cameras.bitrate": "Bitrate",
"cameras.camera_properties": "Camera properties",
"cameras.onvif_configuration": "Onvif Configuration",
"cameras.cameras": "Cameras",
"cameras.camras": "Cameras",
"cameras.preset_was_deleted": "Preset was deleted",
"cameras.cancel_edit_confirm": "Are you sure you want to cancel editing? All changes will be lost.",
"cameras.cannot_load_camera_data": "Cannot load camera data",
"cameras.cannot_load_onvif_profiles": "Cannot load camera settings",
"cameras.change_organization_confirm": "Are you sure you want to move camera to another organization?",
"cameras.codec_profile": "H264 profile",
"cameras.collapse": "Collapse",
"cameras.collect_events": "Collect events",
"cameras.configure": "Configure",
"cameras.connect": "Connect",
"cameras.connecting_to_camera": "Connecting to the camera...",
"cameras.connecting_to_camera_fail": "Cannot connect to the camera",
"cameras.connecting_to_camera_by_onvif": "Connecting to the camera by onvif...",
"cameras.connecting_to_camera_by_onvif_fail": "Cannot connect to the camera",
"cameras.connecting_to_camera_by_onvif_enter_port": "Cannot connect to the camera via onvif. Please try to specify the port and reconnect.",
"cameras.coordinates": "Coordinates",
"cameras.copy_to_clipboard": "Copy to clipboard",
"cameras.create_camera": "Create a camera",
"cameras.current_time_on_camera": "Current time on camera",
"cameras.synchronize_label": "Synchronize with",
"cameras.timezone_label": "Timezone",
"cameras.datetime": "Date & Time",
"cameras.datetime_timezone": "Time zone",
"cameras.datetime_synchronize": "Synchronize",
"cameras.datetime_synchronize_with_browser": "browser time",
"cameras.datetime_synchronize_with_ntp_server": "ntp server",
"cameras.delete_camera": "Delete camera",
"cameras.delete_confirm": "Are you sure you want to delete camera {camera}?",
"cameras.delete_folder": "Delete folder",
"cameras.delete_from_favorites": "Delete from favorites",
"cameras.delete_from_favorites_confirm": "Are you sure you want to delete camera {camera} from favorites?",
"cameras.delete_group_confirm": "Are you sure you want to delete selected cameras?",
"cameras.delete_selected": "Delete selected",
"cameras.deleting_camera": "Deleting the camera...",
"cameras.deleting_camera_fail": "Cannot delete a camera",
"cameras.deleting_camera_successful": "Camera deleted",
"cameras.deleting_cameras": "Deleting the cameras...",
"cameras.deleting_from_favorites": "Deleting the camera from favorites...",
"cameras.deleting_from_favorites_fail": "Cannot delete a camera from favorites",
"cameras.deleting_from_favorites_successful": "Camera deleted from favorites",
"cameras.device_info": "Information about device",
"cameras.onvif_features": "ONVIF Features",
"cameras.disconnect_camera_agent_fail": "Cannot disconnect the agent",
"cameras.drag_combine_cameras_in_new_folder_hint": "Combine the {camera1} camera and the {camera2} camera in one folder",
"cameras.drag_create_folder_and_move_camera_hint": "Create a new folder in the {folder} folder and move the {camera} camera to it",
"cameras.drag_create_folder_and_move_folder_hint": "Create a new folder in the {parentFolder} folder and move the {childFolder} folder to it",
"cameras.drag_move_camera_to_folder_hint": "Move the {camera} camera to the {folder} folder",
"cameras.drag_move_camera_to_root_hint": "Move the {camera} camera to the root",
"cameras.drag_move_folder_after_folder_hint": "Move the {folder1} folder after the {folder2} folder",
"cameras.drag_move_folder_to_folder_hint": "Move the {childFolder} folder to the {parentFolder} folder",
"cameras.drag_move_folder_to_root_hint": "Move the {folder} folder to the root",
"cameras.dvr_depth": "DVR Depth",
"cameras.dvr_disabled_reason": "DVR is disabled because DVR path is not specified",
"cameras.dvr_disabled": "DVR disabled",
"cameras.dvr_lock_days": "DVR Days Limit for records with detected motion",
"cameras.dvr_lock_days_description": "This field allows to set up the number of days during which records with detected motion should be stored in addition to the DVR Depth.",
"cameras.dvr_lock_days_part_1": "DVR Days Limit for records ",
"cameras.dvr_lock_days_part_2": "with detected motion",
"cameras.dvr_misconfigured_message_admin1": "Archive recording is not supported on the server. Please set up the DVR path in ",
"cameras.dvr_misconfigured_message_admin2": "the server settings",
"cameras.dvr_misconfigured_message_user": "Archive recording is not supported on the server. Please contact the service administrator.",
"cameras.dvr_protect_hint": "Enables access restriction to camera's archive",
"cameras.dvr_protected": "DVR Protection",
"cameras.dvr_space": "DVR Space, GB",
"cameras.dvr_space_2": "DVR Space",
"cameras.edit_camera": "Edit the camera",
"cameras.edit_folder_location": "Edit folder location",
"cameras.edit_location": "Edit location",
"cameras.enabled": "Enabled",
"cameras.expand": "Expand",
"cameras.firmware": "Firmware:",
"cameras.firmware_file": "Firmware file",
"cameras.firmware_protocol": "Protocol",
"cameras.firmware_update_fail": "Cannot update camera firmware",
"cameras.firmware_update_in_progress": "Firmware update is in progress...",
"cameras.firmware_update_may_take_long_time": "This operation may take a long time. Please do not close the page until the update is complete.",
"cameras.firmware_update_success": "Camera firmware updated successfully",
"cameras.folder": "Folder",
"cameras.folder_floor_plan": "Floor plan",
"cameras.folder_map_file_help": "If the building has several floors, you can create a subfolder and upload a floor plan for each floor",
"cameras.folder_plan_type_error": "Invalid file type — only images (.png, .jpeg, .gif, .webp) are allowed",
"cameras.folder_title": "Title",
"cameras.folder_update_fail": "Cannot update the folder",
"cameras.folder_update_success": "The folder updated successfully",
"cameras.for_example": "For example:",
"cameras.for_selected": "For selected:",
"cameras.general_settings": "General settings",
"cameras.hevc_warning": "HEVC/H.265 video format is not supported by many browsers.",
"cameras.hevc_warning_detailed": "Video from this camera cannot be played as the browser does not support H265 (HEVC) video codec. Please contact the administrator or change the codec in the camera settings.",
"cameras.host": "Host",
"cameras.imaging_settings": "Imaging settings",
"cameras.import_flussonic": "Import from flussonic",
"cameras.ip_address": "IP address",
"cameras.keep_current_values": "Keep current values",
"cameras.last_change": "Last change",
"cameras.last_disk_usages": "Last Disk Usages",
"cameras.last_event": "Last event",
"cameras.last_stream_usages": "Last Stream Usages",
"cameras.license_plate_recognition": "License plate recognition",
"cameras.load_more": "Load more",
"cameras.location": "Location",
"cameras.login": "Login",
"cameras.login_and_password_required": "Login and password are required",
"cameras.manual_search": "Manual search",
"cameras.manufacturer": "Manufacturer:",
"cameras.model": "Model:",
"cameras.network_settings": "Network",
"cameras.network_settings_update_success": "Network settings have been saved. Camera is rebooting.",
"cameras.new_camera": "New camera",
"cameras.no_cameras_found": "No cameras found",
"cameras.no_folders_found": "No folders found",
"cameras.not_adjustable_preset_will_overwrite_camera_properties": "The selected preset is not adjustable. Fields \"DVR Depth\", \"DVR Days Limit for records with detected motion\", \"Precise event thumbnails\" and \"DVR Space\" in the camera properties will be overwritten. Are you sure you want to apply this preset?",
"cameras.not_selected": "Not selected",
"cameras.note": "Note",
"cameras.additional": "Additional",
"cameras.on_demand": "On-demand",
"cameras.online": "Online",
"cameras.onvif": "Onvif",
"cameras.onvif_ptz": "PTZ",
"cameras.onvif_search": "Search",
"cameras.onvif_stop_search": "Stop search",
"cameras.onvif_text": "Search cameras by IP address",
"cameras.organization": "Organization",
"cameras.output_streams_settings": "Output streams settings",
"cameras.overwrite_from_preset": "Overwrite from preset",
"cameras.owner": "Owner",
"cameras.password": "Password",
"cameras.persistent": "Persistent",
"cameras.popup_embed_url": "Embed url",
"cameras.port": "Port",
"cameras.preset": "Preset",
"cameras.properties": "Properties",
"cameras.ptz_works_only_with_onvif": "These features require valid ONVIF configuration.",
"cameras.reboot_camera": "Reboot camera",
"cameras.rebooting_camera": "The camera is rebooting...",
"cameras.rebooting_camera_fail": "Cannot reboot the camera",
"cameras.rebooting_camera_success": "Reboot request has been sent. Camera will reboot.",
"cameras.recognize_faces": "Recognize faces",
"cameras.recognize_plates": "Recognize license plates",
"cameras.resolution": "Resolution",
"cameras.saving_camera": "Saving the camera...",
"cameras.saving_camera_fail": "Cannot save the camera",
"cameras.saving_camera_successful": "Camera saved",
"cameras.saving_cameras": "Saving cameras...",
"cameras.saving_cameras_fail": "Cannot save cameras",
"cameras.search_camera_by_ip": "Search for a camera",
"cameras.search_cameras": "Search cameras",
"cameras.searching": "searching...",
"cameras.select_dvr_depth": "- select DVR depth value -",
"cameras.select_field": "- select field -",
"cameras.select_folder": "Select folder",
"cameras.select_preset": "- select preset -",
"cameras.select_streamer": "- select streamer -",
"cameras.select_user": "Select user...",
"cameras.sending_request_to_reboot_camera": "Sending a request to reboot the camera...",
"cameras.server": "Server",
"cameras.settings": "Settings",
"cameras.share": "Share",
"cameras.sn": "Serial number:",
"cameras.stream_url": "Stream URL",
"cameras.stream_url_copied_to_clipboard": "Stream URL copied to clipboard",
"cameras.streamer": "Streamer",
"cameras.streamer_confirm": "Are you sure you want to choose offline streamer?",
"cameras.substream_url": "Substream URL",
"cameras.player_link": "Go to player",
"cameras.thumbnails": "Thumbnails",
"cameras.thumbnails_hint_1": "This option enables extracting video frames as JPEG images. Please note that this is a resource-intensive operation.",
"cameras.thumbnails_hint_2": "If you enable DVR on a stream, all of the generated JPEGs will be written to the disk.",
"cameras.thumbnails_hint_2_1": "Strongly not recommended to use.",
"cameras.thumbnails_hint_2_2": "Use {video_thumbnails_link} if camera previews are required for your app or website.",
"cameras.thumbnails_hint_2_2_link_label": "Video Thumbnails",
"cameras.thumbnails_hint_2_3": "This option is deprecated and will be deleted soon.",
"cameras.thumbnails_hint_3": "To reduce CPU usage on thumbnail generation, you can specify the URL where Flussonic Media Server can get thumbnails. Many cameras have a special URL for screenshots.",
"cameras.title": "Title",
"cameras.quality": "Quality",
"cameras.update_firmware": "Update firmware",
"cameras.upload_csv": "Upload CSV",
"cameras.upload_csv_confirm": "Are you sure you want to upload file {filename}?",
"cameras.upload_csv_fail": "Cannot upload the file",
"cameras.upload_csv_success": "The file has been uploaded successfully",
"cameras.upload_csv_success_info": "created: {created}, updated: {updated}, deleted: {deleted}",
"cameras.upload_csv_waiting": "Uploading file {filename}...",
"cameras.url_copied_to_clipboard": "URL copied to clipboard",
"cameras.usage_statistics": "Usage statistics",
"cameras.users_settings": "Users",
"cameras.video_only": "Capture only video",
"cameras.transcode_audio": "Transcode audio to aac for viewing via web/mobile",
"cameras.view": "View",
"cameras.vision_enabled": "Enable recognition",
"cameras.setup_detection_zone": "Set up the detection zone",
"cameras.vision_areas_error_convex": "The figures should be convex",
"cameras.vision_areas_error_min_area": "The area of the figures should be more than a quarter of the frame",
"cameras.vision_areas_draw_mode_on": "Drawing mode: enabled",
"cameras.vision_areas_description": "The figures should be convex, without intersecting sides, with a minimum area of a quarter frame.",
"dashboard.add_camera": "Add camera",
"dashboard.cameras": "Cameras",
"dashboard.collapse_sidebar": "Collapse sidebar",
"dashboard.copy": "Copy",
"dashboard.copying_mosaic": "Copying the mosaic...",
"dashboard.copying_mosaic_successful": "Mosaic copied",
"dashboard.copying_mosaic_fail": "Cannot copy a mosaic",
"dashboard.create": "Create",
"dashboard.create_mosaic": "Create a mosaic",
"dashboard.delete": "Delete",
"dashboard.delete_camera_confirm": "Are you sure you want to delete camera \"{camera}\"?",
"dashboard.delete_camera_from_mosaic": "Delete camera from the mosaic",
"dashboard.delete_mosaic_confirm": "Are you sure you want to delete mosaic \"{mosaic}\"?",
"dashboard.deleting_camera": "Deleting the camera...",
"dashboard.deleting_camera_fail": "Cannot delete a camera",
"dashboard.deleting_camera_successful": "Camera deleted",
"dashboard.deleting_camera_from_mosaic_fail": "Cannot delete a camera from the mosaic",
"dashboard.deleting_mosaic": "Deleting the mosaic...",
"dashboard.deleting_mosaic_fail": "Cannot delete a mosaic",
"dashboard.deleting_mosaic_successful": "Mosaic deleted",
"dashboard.drag_camera_here": "Drag camera here",
"dashboard.edit": "Edit",
"dashboard.edit_mosaic": "Edit a mosaic",
"dashboard.expand_sidebar": "Expand sidebar",
"dashboard.mosaic_type": "Mosaic type",
"dashboard.mosaics": "Mosaics",
"dashboard.mosaics_not_found": "No mosaics found",
"dashboard.saving_mosaic": "Saving the mosaic...",
"dashboard.saving_mosaic_fail": "Cannot save a mosaic",
"dashboard.saving_mosaic_successful": "Mosaic saved",
"dashboard.title": "Title",
"events.camera": "Camera name",
"events.cannot_load_events": "Cannot load events",
"events.cannot_load_image": "Cannot load image",
"events.download": "Download",
"events.end_time": "End time",
"events.event_source": "Event source",
"events.event_type": "Event type",
"events.extra_info": "Extra info",
"events.face_detector": "Face detector",
"events.license_plates": "License plates",
"events.motion_detector": "Motion detector",
"events.not_found": "No events found",
"events.object_action": "action: ",
"events.object_class": "Object class",
"events.object_id": "Object ID",
"events.person": "Person",
"events.plates": "Plate number",
"events.person_lists": "Persons",
"events.preview_is_not_available": "Preview is not available",
"events.screenshot": "Screenshot",
"events.source": "Source",
"events.start_time": "Date and Time",
"events.title": "Events",
"events.type": "Type",
"events.view_in_archive": "Footage from Archive",
"events.video": "Video",
"events.video_analytics": "Video analytics",
"global.accept": "Accept",
"global.access_denied": "Access to the requested page is denied",
"global.actions": "Actions",
"global.add": "Add",
"global.address": "Address",
"global.Advanced": "Advanced",
"global.all": "All",
"global.any": "any",
"global.apply": "Apply",
"global.autofill_not_available": "Autofilling is not available.",
"global.autofill_not_available_admin": "Please provide map key in the ",
"global.autofill_not_available_admin_settings": "settings",
"global.back": "Back",
"global.cancel": "Cancel",
"global.Cancel": "Cancel",
"global.cancel_changes": "Cancel changes",
"global.cancel_edit_confirm": "Are you sure you want to cancel editing? All changes will be lost.",
"global.cannot_load_data": "Cannot load data",
"global.cannot_load_image": "Cannot load image",
"global.change": "Change",
"global.clear_filter": "Clear filters",
"global.clear_filters": "Clear filters",
"global.clear_selection": "Clear selection",
"global.close": "Close",
"global.columns": "Columns",
"global.cookie_notification_1": "This site uses cookies. By continuing to browse the site you are agreeing to our use of cookies.",
"global.cookie_notification_2": "We also use third-party services: Google Analytics, Yandex metrika and Tawk which can collect some info about you. We use them to make our website better for you.",
"global.cookie_notification_3": "about our use of your personal data.",
"global.coordinates": "Coordinates",
"global.copy_to_clipboard": "Copy to clipboard",
"global.copied": "Copied",
"global.create": "Create",
"global.delete": "Delete",
"global.display_mode_cards": "Cards",
"global.display_mode_cardsSm": "Small cards",
"global.display_mode_list": "List",
"global.display_mode_dashboard": "Dashboard",
"global.edit": "Edit",
"global.email_is_invalid": "Email is invalid",
"global.email_is_required": "Email is required",
"global.error": "Error",
"global.filter": "Filter",
"global.auto_update": "AUTO UPDATE",
"global.From": "From",
"global.from": "from",
"global.from2": "from",
"global.gb": "GB",
"global.ip_is_alrady_taken": "The user with the same internal IP already exists.",
"global.login_and_password_are_required": "Login and password are required",
"global.login_is_alrady_taken": "The user with the same login already exists. Please, try another login.",
"global.more": "more",
"global.n_of": "{count, number} of {total, number} items",
"global.next": "Next",
"global.No": "No",
"global.no_items_found": "No items found",
"global.not_found": "Requested page is not found",
"global.not_set": "not set",
"global.note": "Note",
"global.optional": "optional",
"global.password_is_required": "Password is required.",
"global.print": "print",
"global.read": "Read",
"global.remove": "Remove",
"global.reset_default_settings": "Reset default settings",
"global.report": "Report",
"global.Save": "Save",
"global.save": "Save",
"global.save_changes": "Save changes",
"global.Search": "Search",
"global.select_all": "Select all",
"global.select_value": "- select value -",
"global.submit": "Submit",
"global.this_field_is_invalid": "This field is invalid",
"global.this_field_is_required": "This field is required",
"global.this_field_must_be_positive_integer": "This field must be positive integer",
"global.this_field_must_be_valid_ip": "This field must be a valid IP address",
"global.this_field_must_be_valid_url": "This field must be a valid URL",
"global.To": "To",
"global.to": "to",
"global.to2": "to",
"global.or": "or",
"global.unknown_error": "Unknown error",
"global.Unlimited": "Unlimited",
"global.unlimited": "unlimited",
"global.User": "User",
"global.wrong_login_or_password": "Wrong login or password",
"global.Yes": "Yes",
"global.yes": "Yes",
"global.incorrect_format": "Incorrect format",
"group_cameras.access": "Access",
"group_cameras.actions": "Actions",
"group_cameras.add_cameras_to_group": "Add cameras to a group",
"group_cameras.additional_info": "Additional info",
"group_cameras.archive": "Archive (days)",
"group_cameras.camera_id": "Camera ID",
"group_cameras.delete_camera": "Delete camera",
"group_cameras.no_cameras": "There are no cameras to add",
"group_cameras.no_cameras_found": "No cameras found",
"group_cameras.owner": "Owner",
"group_cameras.title": "Title",
"group_users.actions": "Actions",
"group_users.admin": "Administrator",
"group_users.add_users": "Add users to a group",
"group_users.cameras": "Cameras",
"group_users.delete_group_user_with_user_confirm": "<p>\n Are you sure you want to delete user {user} from group?\n <br />\n Warning: user {user} will be deleted too\n </p>",
"group_users.delete_user": "Delete user from the group",
"group_users.delete_user_checkbox_label": "Delete user {user}",
"group_users.groups": "Groups",
"group_users.no_users_to_add": "There are no users to add",
"group_users.permissions": "Permissions",
"group_users.user": "User",
"group_users.user_delete_confirm": "Are you sure you want to delete user {user} from group?",
"groups.actions": "Actions",
"groups.add_cameras": "Add cameras",
"groups.add_group": "Add a group",
"groups.add_user": "Add a user",
"groups.add_users": "Add users",
"groups.address": "Address",
"groups.admin_limits": "Group Administrator Limits",
"groups.camera_delete_confirm": "Are you sure you want to delete camera {cameraId} from group?",
"groups.camera_limit": "Camera Limit",
"groups.cameras": "Cameras",
"groups.create_camera": "Create a camera",
"groups.create_group": "Create a group",
"groups.create_user": "Create a user",
"groups.default_streamer": "Default streamer",
"groups.delete_camera_checkbox_lable": "Delete camera {cameraTitle}",
"groups.delete_confirm": "Are you sure you want to delete group {groupTitle}?",
"groups.delete_group": "Delete group",
"groups.delete_group_camera_with_camera_confirm": "<p>\n Are you sure you want to delete camera {cameraId} from\n group? <br />\n Warning: camera {cameraTitle} will be deleted too\n </p>",
"groups.deleting_group": "Deleting the group...",
"groups.deleting_group_fail": "Cannot delete a group",
"groups.deleting_group_successful": "Group deleted",
"groups.dvr_limit": "Per-camera DVR Limit",
"groups.dvr_space": "Per-camera DVR Space Limit, GB",
"groups.group": "Group",
"groups.group_cameras_count": "{camerasCount, number} {camerasCount, plural, one {camera} two {cameras} few {cameras} other {cameras}}",
"groups.group_users_count": "{usersCount, number} {usersCount, plural, one {user} two {users} few {users} other {users}}",
"groups.group_was_reorganized": "Warning! The group was reorganized in the Organization. About how to work with them, you can read here:",
"groups.groups": "Groups",
"groups.no_groups_found": "No groups found",
"groups.no_users_found": "No users found",
"groups.note": "Note",
"groups.streamer_confirm": "Are you sure you want to choose offline streamer?",
"groups.title": "Title",
"groups.user_limit": "User Limit",
"groups.users": "Users",
"image_input.choose": "choose",
"image_input.file_not_chosen": "File is not chosen",
"image_input.invalid": "invalid file format",
"image_input.too_big": "file is too big",
"layout.access_log": "Access log",
"layout.agents": "Agents",
"layout.camera_presets": "Camera presets",
"layout.cameras": "My cameras",
"layout.admin_cameras": "Cameras",
"layout.events": "Events",
"layout.favorites": "Favorites",
"layout.groups": "Groups",
"layout.health": "Health status",
"layout.logout": "Logout",
"layout.map": "Map",
"layout.messages": "Messages",
"layout.mosaics": "Mosaics",
"layout.operator_id": "Operator ID:",
"layout.organizations": "Organizations",
"layout.profile": "Profile",
"layout.settings": "Settings",
"layout.settingsNew": "Settings (new)",
"layout.admin": "Admin",
"layout.statistics": "Statistics",
"layout.usage": "Usage",
"layout.users": "Users",
"layout.version": "Version:",
"layout.powered_by": "Powered by",
"layout.nvr": "NVRs",
"layout.try_new_ui": "Watcher Client UI (PWA)",
"layout.back_to_old": "Back to the Watcher UI",
"layout.streamers": "Streamers",
"log.action_type": "Action type",
"log.changed_data": "changed data: ",
"log.event_info": "Event Info",
"log.login": "login: ",
"log.logs": "Logs",
"log.no_entries": "No log entries found",
"log.object": "object: ",
"log.object_data": "object data: ",
"log.object_type": "Object type",
"log.time": "Time",
"log.user": "User",
"map.title": "Map",
"messages.delete_message_confirm": "Are you sure you want to delete this message?",
"messages.deleting_message": "Deleting the message...",
"messages.deleting_message_fail": "Cannot delete a message",
"messages.is_dashboard": "Show message on dashboard",
"messages.is_push": "Send push-notification to mobile device",
"messages.message": "Message",
"messages.message_type": "Message type",
"messages.messages": "Messages",
"messages.mobile_notification_has_not_been_sent": " Mobile notification has not been sent because the user never logged in through a mobile application.",
"messages.no_messages_found": "No messages found",
"messages.number_of_registered_devices": " Number of registered devices: {devices}.",
"messages.sending_message": "Sending the message...",
"messages.sending_message_fail": "Cannot send a message",
"messages.sending_message_success": "Message has been sent successfully.{deviceInfo}",
"messages.show_deleted": "Show deleted",
"messages.title": "Title",
"messages.to": "To",
"mosaics.actions": "Actions",
"mosaics.cancel_edit_confirm": "Are you sure you want to cancel editing? All changes will be lost.",
"mosaics.cannot_load_mosaic_data": "Cannot load mosaic data",
"mosaics.cannot_load_mosaics": "Cannot load mosaic list",
"mosaics.choose_camera": "Choose a camera",
"mosaics.create_mosaic": "Create a mosaic",
"mosaics.delete_confirm": "Are you sure you want to delete mosaic {title}?",
"mosaics.delete_mosaic": "Delete mosaic",
"mosaics.deleting_mosaic": "Deleting the mosaic...",
"mosaics.deleting_mosaic_fail": "Cannot delete the mosaic",
"mosaics.deleting_mosaic_successful": "Mosaic deleted",
"mosaics.mosaic": "Mosaic",
"mosaics.mosaics": "Mosaics",
"mosaics.no_cameras": "There are no cameras to add",
"mosaics.not_found": "No mosaics found",
"mosaics.organization": "Organization",
"mosaics.saving_mosaic": "Saving the mosaic...",
"mosaics.saving_mosaic_fail": "Cannot save the mosaic",
"mosaics.size": "Size",
"mosaics.title": "Title",
"mosaics.type": "Type",
"navbar_pagination.out of": "out of",
"navbar_pagination.out_of": "out of",
"organizations.access_to_archive": "Access to archive",
"organizations.access_to_cameras": "Access to cameras",
"organizations.access_to_ptz": "Access to PTZ",
"organizations.add_presets": "Add presets",
"organizations.add_user_to_organization": "Add",
"organizations.add_users_from_another_organization": "Add users from other organizations",
"organizations.add_users_to_organization": "Add users to organization",
"organizations.adding_users_to_organization": "Adding users to organization...",
"organizations.admin": "Administrator",
"organizations.all_organizations": "All organizations",
"organizations.any_user": "any user",
"organizations.camera_limit": "Camera limit",
"organizations.camera_presets": "Camera presets",
"organizations.cameras": "Cameras",
"organizations.cameras_count": "Number of cameras",
"organizations.can_edit_cameras": "Can edit cameras",
"organizations.can_edit_organizations": "Can edit organizations",
"organizations.can_edit_user": "Can edit users",
"organizations.can_view_organizations": "Can view organizations",
"organizations.can_view_stats": "Can view statistics",
"organizations.cancel_edit_confirm": "Are you sure you want to cancel editing? All changes will be lost.",
"organizations.cannot_delete_not_empty_folder": "A folder cannot be deleted because it or its child folders contain cameras. Please move the camera before deleting.",
"organizations.cannot_load_organization_data": "Cannot load organization data",
"organizations.cannot_load_organization_folders": "Cannot load organization folders",
"organizations.cannot_load_organizations": "Cannot load organizations",
"organizations.cannot_load_user_data": "Cannot load user data",
"organizations.cannot_load_users": "Cannot load users",
"organizations.change_owner": "Change an owner",
"organizations.choose_owner_from_existing_users": "Choose owner from existing users",
"organizations.create_organization": "Create an organization",
"organizations.create_organization_user": "Create",
"organizations.create_organization_user_full": "Create a user",
"organizations.create_root_folder": "Create root folder",
"organizations.create_subfolder": "Create subfolder",
"organizations.delete_confirm": "Are you sure you want to delete organization {title}?",
"organizations.delete_folder": "Delete folder",
"organizations.delete_folder_confirm": "Are you sure you want to delete folder {title}?",
"organizations.delete_folder_confirm_not_empty": "Are you sure you want to delete folder {title}? All child folders will be deleted.",
"organizations.delete_force_confirm": "The organization has related entities that will be deleted as well. Are you sure you want to delete the organization and all entities listed below?<br /><br />{children}",
"organizations.delete_organization": "Delete organization",
"organizations.delete_organization_user": "Delete from organization",
"organizations.delete_user_confirm": "Are you sure you want to delete user {login} from organization {organization}?",
"organizations.deleting_organization": "Deleting the organization...",
"organizations.deleting_organization_fail": "Cannot delete the organization",
"organizations.deleting_organization_folder": "Deleting the folder...",
"organizations.deleting_organization_folder_fail": "Cannot delete a folder",
"organizations.deleting_organization_folder_successful": "Folder deleted",
"organizations.deleting_organization_successful": "Organization deleted",
"organizations.deleting_organization_user": "Deleting the user...",
"organizations.deleting_organization_user_fail": "Cannot delete a user",
"organizations.deleting_organization_user_successful": "User deleted",
"organizations.dvr_limit": "DVR limit, GB",
"organizations.email": "Email",
"organizations.enabled": "Enabled",
"organizations.folder_structure": "Folder structure",
"organizations.general_settings": "General settings",
"organizations.input_organization_title": "Input organization title",
"organizations.internal_ip": "Internal IP",
"organizations.limits": "Limits",
"organizations.login": "Login",
"organizations.managing organizations": "Managing Organizations",
"organizations.mosaics": "Mosaics",
"organizations.name": "Name",
"organizations.no_organization_users_found": "No organization users found",
"organizations.no_organization_folders_found": "No organization folders found",
"organizations.no_organizations_found": "No organizations found",
"organizations.no_users_found": "No users found",
"organizations.note": "Note",
"organizations.only_my_organizations": "Only my organizations",
"organizations.organization": "Organizations",
"organizations.organization_permissions": "Permissions in the organization",
"organizations.organization_users": "Organization users",
"organizations.owner": "Owner",
"organizations.password": "Password",
"organizations.permissions": "Permissions",
"organizations.phone": "Phone",
"organizations.saving_organization": "Saving the organization...",
"organizations.saving_organization_fail": "Cannot save an organization",
"organizations.saving_organization_folder": "Saving the folder...",
"organizations.saving_organization_folder_fail": "Cannot save a folder",
"organizations.saving_organization_folder_successful": "Folder saved",
"organizations.saving_organization_successful": "Organization saved",
"organizations.saving_organization_user": "Saving the organization user...",
"organizations.saving_organization_user_fail": "Cannot save an organization user",
"organizations.saving_organization_user_successful": "Organization user saved",
"organizations.select_user": "Select user...",
"organizations.settings": "Settings",
"organizations.title": "Title",
"organizations.user_limit": "User limit",
"organizations.user": "User",
"organizations.users": "Users",
"organizations.users_count": "Number of users",
"pagination.next_page": "Next page",
"pagination.out_of": " out of {totalPages}",
"pagination.prev_page": "Previous page",
"password.hide": "Hide",
"password.show": "Show",
"persons.add_cameras": "Add cameras",
"persons.add_person": "Add person",
"persons.add_person_list": "Add person list",
"persons.external_id": "External ID",
"persons.cameras": "Cameras",
"persons.change_photo": "Change photo",
"persons.delete_person_confirm": "Are you sure you want to delete person {name}?",
"persons.delete_person_list_confirm": "Are you sure you want to delete person list {name}?",
"persons.deleting_person": "Deleting the person...",
"persons.deleting_person_fail": "Cannot delete the person",
"persons.deleting_person_list": "Deleting the person list...",
"persons.deleting_person_list_fail": "Cannot delete the person list",
"persons.edit_person": "Edit person",
"persons.edit_person_list": "Edit person list",
"persons.last_visit": "Last visit",
"persons.lists": "Lists",
"persons.name": "Name",
"persons.no_person_lists_found": "No person lists found",
"persons.no_persons_found": "No persons found",
"persons.note": "Note",
"persons.person_information": "Person information",
"persons.person_list": "Person list",
"persons.person_lists": "Person lists",
"persons.persons": "Persons",
"persons.persons_not_on_any_list": "Persons not on any list",
"persons.organization": "Organization",
"persons.list_name": "Person list",
"persons.first_seen_at": "First seen at",
"persons.last_seen_at": "Last seen at",
"persons.photo_type_error": "Invalid file type — only images (.png, .jpeg, .gif, .webp) are allowed",
"persons.saving_person": "Saving the person...",
"persons.saving_person_fail": "Cannot save the person",
"persons.saving_person_items_success": "Person saved",
"persons.saving_person_list": "Saving the person list...",
"persons.saving_person_success": "Person list saved",
"persons.saving_person_list_fail": "Cannot save the person list",
"persons.select_person_list": "Select person list...",
"persons.select_organization": "Select organization...",
"persons.title": "Title",
"presets.camera_presets": "Camera presets",
"presets.cannot_load_preset_data": "Cannot load preset data",
"presets.cannot_load_presets": "Cannot load preset list",
"presets.create_preset": "Create a preset",
"presets.delete_preset": "Delete preset",
"presets.delete_preset_confirm": "Are you sure you want to delete preset {title}?",
"presets.deleting_preset": "Deleting the preset...",
"presets.deleting_preset_fail": "Cannot delete a preset",
"presets.deleting_preset_success": "Preset deleted",
"presets.dvr_depth": "DVR Days Limit",
"presets.dvr_lock_days": "DVR Days Limit for records with detected motion",
"presets.dvr_space": "DVR GB Limit",
"presets.device": "Device",
"presets.transcoder_title": "Transcoder settings",
"presets.transcoder_enable": "Enable transcoder",
"presets.transcoder_disable": "Disable transcoder",
"presets.tracks": "Tracks",
"presets.width": "Width",
"presets.height": "Height",
"presets.bitrate": "Bitrate",
"presets.is_adjustable": "Adjustable",
"presets.is_default": "Available in all organizations",
"presets.is_deleted": "Deleted",
"presets.no_presets_found": "No presets found",
"presets.parameters": "Parameters",
"presets.saving_preset": "Saving the preset...",
"presets.saving_preset_successful": "Preset saved",
"presets.title": "Title",
"profile.api_key": "API key",
"profile.cancel_edit_confirm": "Are you sure you want to cancel editing? All changes will be lost.",
"profile.cannot_load_profile_data": "Cannot load profile data",
"profile.change_password": "Change password",
"profile.confirm_password": "Confirm password",
"profile.new_password": "New password",
"profile.notification_email": "Notification email",
"profile.passwords_do_not_match": "Passwords do not match",
"profile.phone": "Phone",
"profile.profile": "Profile",
"profile.saving_profile": "Saving the profile...",
"profile.send_test_mobile_notification": "Send test mobile notification",
"profile.sending_notification": "Sending the notification...",
"profile.sending_notification_fail": "Cannot send a notification",
"profile.sending_notification_success": "Notification has been sent successfully. Number of registered devices: {devices}.",
"profile.sending_notification_success_empty": "Notification has not been sent. The user never logged in through a mobile application.",
"profile.username": "Username",
"settings.additional_footer_text": "Additional footer text",
"settings.api_key": "API key",
"settings.api_key_confirm_create": "Are you sure you want to create API key?",
"settings.api_key_confirm_reset": "This action will change the API key. Are you sure you want to change it?",
"settings.api_key_copied_to_clipboard": "API key copied to clipboard",
"settings.api_key_create": "create",
"settings.api_key_reset": "reset",
"settings.api_key_resetting_fail": "Cannot {action} API key",
"settings.api_key_resetting_success_1": "API key has changed. Please be sure your API integrations use the new one.",
"settings.api_key_resetting_success_2": "An unsynchronized API key will not allow you to accept new agents.",
"settings.automatically": "Automatically from browser settings",
"settings.back_to_old_ui": "Back to old UI",
"settings.brand_accent_color": "Accent color",
"settings.brand_background_color": "Background color",
"settings.brand_error_color": "Error color",
"settings.brand_footer_address": "Address",
"settings.brand_footer_phone": "Phone",
"settings.brand_footer_work_hours": "Working Hours",
"settings.brand_header_color": "Header color",
"settings.brand_info_text": "Custom header text",
"settings.brand_page_title": "Custom page title",
"settings.brand_primary_color": "Primary color",
"settings.brand_sidebar_color": "Sidebar color",
"settings.brand_success_color": "Success color",
"settings.brand_text_dark_color": "Dark text color",
"settings.brand_text_light_color": "Light text color",
"settings.brand_warning_color": "Warning color",
"settings.branding": "Branding",
"settings.cameras_sn": "Cameras serial numbers management",
"settings.cancel_edit_confirm": "Are you sure you want to cancel editing? All changes will be lost.",
"settings.cannot_load_current_status": "Cannot load current status",
"settings.cannot_load_settings": "Cannot load settings",
"settings.cannot_update_settings": "Cannot update settings",
"settings.choice_cameras": "Cameras",
"settings.choice_dashboard": "Dashboard",
"settings.choice_groups": "Groups",
"settings.choice_login": "Login",
"settings.choice_map": "Map",
"settings.color_scheme": "Color scheme",
"settings.common": "Common settings",
"settings.copy_to_clipboard": "Copy to clipboard",
"settings.current_status": "Current status",
"settings.custom_auth_logo": "Login page custom logo",
"settings.custom_favicon": "Favicon",
"settings.custom_favicon_error": "Invalid favicon size — the image should be square and image resolution should be at least 64x64px",
"settings.custom_favicon_type_error": "Invalid file type — only png images are allowed",
"settings.custom_logo": "Custom logo",
"settings.default_language": "Default language",
"settings.demo_access": "Demo access",
"settings.domain_api_key_is_matched": "Watcher API key is updated in agent's server",
"settings.dvr_path": "DVR path",
"settings.event_notifications": "Event notifications",
"settings.experimental_dashboard": "Experimental dashboard",
"settings.external_event_filter_url": "External event filter URL",
"settings.external_event_notification_url": "External event notification URL",
"settings.ga_key": "Google Analytics Key",
"settings.get_operator_id_and_update_status": "Get Operator ID and update status",
"settings.global_allow_registration": "Registration allowed",
"settings.global_auth_backend": "External authentication",
"settings.global_dashboard_type": "Dashboard",
"settings.global_homepage": "Homepage",
"settings.global_homepage_guest": "Guest homepage",
"settings.global_use_v1_ui": "Use old UI by default",
"settings.guest_access": "Guest access",
"settings.incoming_messages": "Incoming messages",
"settings.interface_languages": "Interface languages",
"settings.locale_file_type_error": "Invalid file type — only json files are allowed",
"settings.locale_title": "Title",
"settings.locales": "Locales",
"settings.mail": "Mail",
"settings.mail_from": "Sender",
"settings.mail_from_description": "For example: Flussonic Watcher <[email protected]>",
"settings.mail_sendgrid_api_key": "SendGrid API key",
"settings.mail_smtp_login": "Login",
"settings.mail_smtp_password": "Password",
"settings.mail_smtp_port": "Port",
"settings.mail_smtp_server": "SMTP server",
"settings.mail_ssl": "SSL",
"settings.mail_tls": "TLS",
"settings.main_page": "Main page",
"settings.map": "Map",
"settings.map_center": "Map center",
"settings.map_gmap_key": "Google Maps API key",
"settings.map_gmap_key_hint": "This option is used to autocomplete addresses in camera settings",
"settings.map_osm_url": "OpenStreetMap server URL",
"settings.map_osm_url_example": "Example: //osm-custom-server.com",
"settings.map_provider": "Map provider",
"settings.map_show_in_nav": "Show map in main menu",
"settings.max_user_sessions": "Maximum number of user sessions",
"settings.messages": "Messages",
"settings.mobile_app_and_agents": "Mobile app and agents",
"settings.mode": "Mode",
"settings.notification_email_should_be_filled": "To test mail settings, fill in the \"Notification email\" field in the profile",
"settings.operator_id_copied_to_clipboard": "Operator ID is copied to clipboard",
"settings.outgoing_messages": "Outgoing messages",
"settings.peeklio_disable_notifications": "Disable push notifications",
"settings.peeklio_license_id": "Operator ID",
"settings.peeklio_not_set": "Not set",
"settings.peeklio_connect": "Connect",
"settings.peeklio_connect_check": "Check",
"settings.peeklio_connect_confirm": "Are you sure you want to connect mobile application login?",
"settings.peeklio_connect_fail": "Cannot connect",
"settings.peeklio_connect_started": "Connecting...",
"settings.peeklio_connect_success": "Connected",
"settings.peeklio_check_update": "Update",
"settings.saving_settings": "Saving settings...",
"settings.sending_test_email": "Sending the test email...",
"settings.sending_test_email_confirm": "Are you sure you want to send the test message to {email}?",
"settings.sending_test_email_fail": "Cannot send the message",
"settings.sending_test_email_success": "The message has been sent",
"settings.serivce": "SERVICE",
"settings.set_default_colors": "Set default colors",
"settings.settings": "Settings",
"settings.settings_saved": "Settings saved",
"settings.test_mail": "Test",
"settings.transfer_type": "Transfer type",
"settings.translations_file": "Translations file",
"settings.translations_file_has_incorrect_format": "Translations file has incorrect format",
"settings.update_api_key_in_agents_server": "Update API key in agents server",
"settings.update_status": "Update status",
"settings.watcher_host": "Watcher host",
"settings.watcher_url_is_available": "Watcher is available from the Internet",
"settings.watcher_url_is_matched": "Watcher host is updated in agent's server",
"streamers.add_streamer": "Add a streamer",
"streamers.api_url": "API URL",
"streamers.bitrate_limit": "Bitrate limit",
"streamers.cancel_edit_confirm": "Are you sure you want to cancel editing? All changes will be lost.",
"streamers.cannot_load_streamers": "Cannot load streamer list",
"streamers.cannot_load_streamer_data": "Cannot load streamer data",
"streamers.cluster_health": "Cluster health",
"streamers.cluster_key": "Cluster key",
"streamers.comment": "Comment",
"streamers.create_streamer": "Create a streamer",
"streamers.edit": "Edit",
"streamers.errors": "Errors",
"streamers.default": "Default",
"streamers.delete_confirm": "Are you sure you want to delete streamer {hostname}?",
"streamers.delete_streamer": "Delete streamer",
"streamers.deleting_streamer": "Deleting the streamer...",
"streamers.deleting_streamer_fail": "Cannot delete the streamer",
"streamers.deleting_streamer_successful": "Streamer deleted",
"streamers.dvr_path": "DVR Path",
"streamers.health": "Health",
"streamers.hostname": "Hostname",
"streamers.last_upload_debug_info": "Last upload from {date}",
"streamers.public_url": "Public URL",
"streamers.resolving_warnings_fail": "Cannot resolve issues",
"streamers.saving_streamer": "Saving the streamer...",
"streamers.saving_streamer_fail": "Cannot save the streamer",
"streamers.saving_streamer_successful": "Streamer saved",
"streamers.show_less": "Show less",
"streamers.show_more": "Show more",
"streamers.ticket_uuid": "UUID",
"streamers.ticket_uuid_copied_to_clipboard": "UUID copied to clipboard",
"streamers.title": "Streamers",
"streamers.upload_debug_info": "Upload debug info",
"streamers.uploading_debug_info": "Uploading debug info...",
"streamers.uploading_debug_info_fail": "Cannot upload debug info",
"streamers.uuid": "UUID",
"streamers.storage_configurations": "Storage configuration",
"usages.alive_cameras": "Alive cameras",
"usages.avg_cams_alive": "Avg cams alive",
"usages.bitrate": "Bitrate",
"usages.camera_name": "Camera name",
"usages.cannot_load_disk_usages": "Cannot load disk usages",
"usages.cannot_load_stream_usages": "Cannot load stream usages",
"usages.cannot_load_usage_statistics": "Cannot load usage statistics",
"usages.created_at": "Connected At",
"usages.date": "Date",
"usages.disk_usages": "Disk Usages",
"usages.duration": "Duration",
"usages.dvr_request_duration": "DVR Request Duration",
"usages.dvr_request_from": "DVR Request From",
"usages.event_at": "Event At",
"usages.event_count": "Event count",
"usages.groups": "Groups",
"usages.ip": "IP",
"usages.last_disk_usages": "Last disk usages",
"usages.last_stream_usages": "Last stream usages",
"usages.max_disk_size": "Max disk size",
"usages.max_disk_size_с": "Max disk size",
"usages.median_cams_alive": "Median cams alive",
"usages.min_disk_size": "Min disk size",
"usages.min_disk_size_с": "Min disk size",
"usages.min_disk_sizw": "Min disk size",
"usages.more": "more",
"usages.no_disk_usages_found": "No disk usages found",
"usages.no_stream_usages_found": "No stream usages found",
"usages.referer": "Referer",
"usages.report_title": "Usage statistics",
"usages.report_title_camera": "for {cameraName}",
"usages.report_title_period": "from {usagesDateFrom} to {usagesDateTo}",
"usages.select_groups": "Select groups...",
"usages.select_users": "Select users...",
"usages.server": "Server",
"usages.session_duration": "Session duration",
"usages.session_traffic": "Session traffic",
"usages.stream_bitrate": "Stream bitrate",
"usages.stream_duration": "Stream duration",
"usages.stream_traffic": "Stream traffic",
"usages.stream_usages": "Stream Usages",
"usages.total_cameras": "Total cameras",
"usages.traffic": "Traffic",
"usages.type": "Type",
"usages.updated_at": "Updated At",
"usages.usage_statistics": "Usage Statistics",
"usages.user_name": "User name",
"usages.users": "Users",
"users.access_to_cameras": "Access to cameras",
"users.actions": "Actions",
"users.add_user": "Add a user",
"users.add_groups": "Add groups",
"users.add_groups_to_user": "Add groups to a user",
"users.additional_settings": "Additional settings",
"users.admin_limits": "User administrator limits",
"users.administrator": "Administrator",
"users.api_key": "API key",
"users.api_key_confirm": "Are you sure you want to {action} API key?",
"users.apikey.create": "create",
"users.apikey.reset": "reset",
"users.apikey_create": "Create",
"users.apikey_reset": "Reset",
"users.adding_user_to_groups": "Adding the user to groups...",
"users.adding_user_to_groups_fail": "Cannot add a user to groups",
"users.adding_user_to_groups_successful": "User added to groups",
"users.camera_limit": "Camera limit",
"users.cameras": "Cameras",
"users.can_edit_organizations": "Can edit organizations",
"users.can_view_organizations": "Can view organizations",
"users.cannot_load_user_data": "Cannot load user data",
"users.cannot_load_users": "Cannot load user list",
"users.create_organization": "Create an organization",
"users.create_organization_first": "Please create an organization first",
"users.create_user": "Create a user",
"users.delete_group": "Delete user from the group",
"users.delete_group_confirm": "Are you sure you want to delete user {login} from group {group}?",
"users.deleting_group": "Deleting the user from the group...",
"users.deleting_group_fail": "Cannot delete a user from the group",
"users.deleting_group_successful": "User deleted from the group",
"users.delete_user": "Delete user",
"users.delete_user_confirm": "Are you sure you want to delete user {user}?",
"users.deleting_user": "Deleting the user...",
"users.deleting_user_fail": "Cannot delete a user",
"users.deleting_user_successful": "User deleted",
"users.dvr_allowed": "DVR allowed",
"users.dvr_limit": "Per-camera DVR limit",
"users.dvr_space": "Per-camera DVR space limit, GB",
"users.email": "Email",
"users.enabled": "Enabled",
"users.general_settings": "General settings",
"users.groups": "Groups",
"users.internal_ip": "Internal IP",
"users.login": "Login",
"users.max_sessions": "Maximum number of sessions",
"users.name": "Name",
"users.note": "Note",
"users.notifications": "Notifications",
"users.no_groups_found": "No groups found",
"users.no_one_organizations_selected": "No organizations selected",
"users.no_users_found": "No users found",
"users.not_enabled": "Not enabled",