fix monitor import base object

+ add copy stream channels
pushover
Moe 2019-09-23 15:58:33 -07:00
parent 4a1789ae89
commit a2dcccd9b9
3 changed files with 39 additions and 170 deletions

View File

@ -631,7 +631,7 @@ module.exports = function(s,config,lang){
},
"Stream": {
"name": lang.Stream,
"color": "navy",
"id": "monSectionStream",
"isSection": true,
@ -1850,7 +1850,7 @@ module.exports = function(s,config,lang){
"Timelapse Watermark": {
"id": "monSectionRecordingWatermark",
"name": lang['Recording Watermark'],
"color": "red",
isAdvanced: true,
"section-class": "h_rec_ti_input h_rec_ti_1",
@ -2969,7 +2969,7 @@ module.exports = function(s,config,lang){
{
hidden: true,
"name": lang['Traditional Recording'],
"color": "orange",
id: "monSectionDetectorTraditionalRecording",
isSection: true,
@ -3369,7 +3369,7 @@ module.exports = function(s,config,lang){
"Copy Settings": {
id: "monSectionCopying",
"name": lang['Copy Settings'],
"color": "orange",
isSection: true,
"info": [
@ -3411,6 +3411,25 @@ module.exports = function(s,config,lang){
}
]
},
{
"field": lang['Copy Stream Channels'],
"description": "",
"default": "0",
"example": "",
"fieldType": "select",
"attribute": `copy="field=detail=stream_channels"`,
"form-group-class": "h_copy_settings_input h_copy_settings_1",
"possible": [
{
"name": lang.No,
"value": "0"
},
{
"name": lang.Yes,
"value": "1"
}
]
},
{
"field": lang['Copy Connection Settings'],
"description": "",

View File

@ -940,6 +940,7 @@
"Show Regions of Interest":"Show Regions of Interest",
"Confidence of Detection":"Confidence of Detection",
"Edit Selected":"Edit Selected",
"Copy Stream Channels":"Copy Stream Channels",
"Copy Settings":"Copy Settings",
"Copy to Settings":"Copy to Settings",
"Copy Mode":"Copy Mode",

File diff suppressed because one or more lines are too long