Skip to content

Commit ea11065

Browse files
authored
Merge branch 'ZoneMinder:master' into patch-771054
2 parents 0a820a9 + f513470 commit ea11065

31 files changed

+188
-147
lines changed

web/includes/Filter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1169,7 +1169,7 @@ public function simple_widget() {
11691169
}
11701170
if (isset($term['cookie'])) {
11711171
if ((!$term['val']) and isset($_COOKIE[$term['cookie']])) $term['val'] = $_COOKIE[$term['cookie']];
1172-
$html .= ' data-cookie="'.$term['cookie'].'"';
1172+
$html .= ' data-cookie="'.validHtmlStr($term['cookie']).'"';
11731173
}
11741174
$html .= ' value="'.(isset($term['val'])?validHtmlStr(str_replace('T', ' ', $term['val'])):'').'"';
11751175

web/includes/Monitor.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1403,5 +1403,11 @@ public function GetLastEventId() {
14031403
if (!$this->connect()) return false;
14041404
return $this->shared_read('SharedData', 'last_event');
14051405
}
1406+
1407+
public function getStreamMode() {
1408+
$streamMode = getStreamMode(); # from includs/functions.php
1409+
return $streamMode;
1410+
}
1411+
14061412
} // end class Monitor
14071413
?>

web/lang/ba_ba.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@
402402
'HasTurboTilt' => 'Posjeduje turbo nagib',
403403
'HasWhiteSpeed' => 'Posjeduje brzo podeš.bijele',
404404
'HasZoomSpeed' => 'Posjeduje brzi zoom',
405-
'HighBW' => 'High B/W',
405+
'Highband' => 'High B/W',
406406
'High' => 'veliku',
407407
'Home' => 'Početna',
408408
'Hostname' => 'Hostname',
@@ -438,7 +438,7 @@
438438
'LoggingIn' => 'Prijavljujem',
439439
'Login' => 'prijava',
440440
'Logout' => 'odjava',
441-
'LowBW' => 'Low B/W',
441+
'Lowband' => 'Low B/W',
442442
'Low' => 'nisku',
443443
'Main' => 'Glavno',
444444
'Man' => 'Man',
@@ -469,7 +469,7 @@
469469
'MaxZoomRange' => 'Max raspon zumiranja',
470470
'MaxZoomSpeed' => 'Max brzina zumiranja',
471471
'MaxZoomStep' => 'Max korak zumiranja',
472-
'MediumBW' => 'Medium B/W',
472+
'Medband' => 'Medium B/W',
473473
'Medium' => 'srednju',
474474
'MinAlarmAreaLtMax' => 'Min područje alarma mora biti manje od maksimalnog',
475475
'MinAlarmAreaUnset' => 'Morate zadati minimalni broj alarm piksela',

web/lang/big5_big5.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@
399399
'HasWhiteSpeed' => 'Has White Bal. Speed',
400400
'HasZoomSpeed' => 'Has Zoom Speed',
401401
'High' => '',
402-
'HighBW' => 'High B/W',
402+
'Highband' => 'High B/W',
403403
'Home' => 'Home',
404404
'Hostname' => 'Hostname', // Added - 2018-08-30
405405
'Hour' => '',
@@ -437,7 +437,7 @@
437437
'Logout' => '登出',
438438
'Logs' => 'Logs', // Added - 2011-06-17
439439
'Low' => '',
440-
'LowBW' => 'Low B/W',
440+
'Lowband' => 'Low B/W',
441441
'Main' => 'Main',
442442
'Man' => 'Man',
443443
'Manual' => 'Manual',
@@ -468,7 +468,7 @@
468468
'MaxZoomStep' => 'Max Zoom Step',
469469
'MaximumFPS' => '最大每秒框架數 fps',
470470
'Medium' => '',
471-
'MediumBW' => 'Medium B/W',
471+
'Medband' => 'Medium B/W',
472472
'Message' => 'Message', // Added - 2011-06-16
473473
'MinAlarmAreaLtMax' => 'Minimum alarm area should be less than maximum',
474474
'MinAlarmAreaUnset' => 'You must specify the minimum alarm pixel count',

web/lang/cs_cz.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@
395395
'HasWhiteSpeed' => 'Má rychlost vyvážení bílé',
396396
'HasZoomSpeed' => 'Má rychlost zoomu',
397397
'High' => 'Rychlá',
398-
'HighBW' => 'Rychlá B/W',
398+
'Highband' => 'Rychlá B/W',
399399
'Home' => 'Domů',
400400
'Hostname' => 'Hostname', // Added - 2018-08-30
401401
'Hour' => 'Hodina',
@@ -433,7 +433,7 @@
433433
'Logout' => 'Odhlásit',
434434
'Logs' => 'Logs', // Added - 2011-06-17
435435
'Low' => 'Pomalá',
436-
'LowBW' => 'Pomalá B/W',
436+
'Lowband' => 'Pomalá B/W',
437437
'Main' => 'Hlavní',
438438
'Man' => 'Man',
439439
'Manual' => 'Manuál',
@@ -464,7 +464,7 @@
464464
'MaxZoomStep' => 'Max krok zoomu',
465465
'MaximumFPS' => 'Maximum FPS',
466466
'Medium' => 'Střední',
467-
'MediumBW' => 'Střední B/W',
467+
'Medband' => 'Střední B/W',
468468
'Message' => 'Message', // Added - 2011-06-16
469469
'MinAlarmAreaLtMax' => 'Minimum alarm area should be less than maximum',
470470
'MinAlarmAreaUnset' => 'You must specify the minimum alarm pixel count',

web/lang/de_de.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@
397397
'HasWhiteSpeed' => 'Hat Weiß-Abgleichgeschwindigkeit',
398398
'HasZoomSpeed' => 'Hat Zoom-Geschwindigkeit',
399399
'High' => 'hohe',
400-
'HighBW' => 'Hohe B/W',
400+
'Highband' => 'Hohe B/W',
401401
'Home' => 'Home',
402402
'Hostname' => 'Hostname', // Added - 2018-08-30
403403
'Hour' => 'Stunde',
@@ -435,7 +435,7 @@
435435
'Logout' => 'Abmelden',
436436
'Logs' => 'Logs', // Added - 2011-06-17
437437
'Low' => 'niedrige',
438-
'LowBW' => 'Niedrige B/W',
438+
'Lowband' => 'Niedrige B/W',
439439
'Main' => 'Haupt',
440440
'Man' => 'Man',
441441
'Manual' => 'Manual',
@@ -466,7 +466,7 @@
466466
'MaxZoomStep' => 'Maximale Zoom-Stufe',
467467
'MaximumFPS' => 'Maximale FPS',
468468
'Medium' => 'mittlere',
469-
'MediumBW' => 'Mittlere B/W',
469+
'Medband' => 'Mittlere B/W',
470470
'Message' => 'Nachricht', // Added - 2011-06-16
471471
'MinAlarmAreaLtMax' => 'Der minimale Alarmbereich sollte kleiner sein als der maximale',
472472
'MinAlarmAreaUnset' => 'Sie müssen einen Minimumwert an Alarmflächenpixeln angeben',

web/lang/dk_dk.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@
396396
'HasWhiteSpeed' => 'Has White Bal. Speed',
397397
'HasZoomSpeed' => 'Has Zoom Speed',
398398
'High' => 'Høj',
399-
'HighBW' => 'High B/W',
399+
'Highband' => 'High B/W',
400400
'Home' => 'Hjemme',
401401
'Hostname' => 'Hostname',
402402
'Hour' => 'Time',
@@ -434,7 +434,7 @@
434434
'Logout' => 'Logud',
435435
'Logs' => 'Logs',
436436
'Low' => 'Lav',
437-
'LowBW' => 'Lav B/W',
437+
'Lowband' => 'Lav B/W',
438438
'Main' => 'Hoved',
439439
'Man' => 'Man',
440440
'Manual' => 'Manuel',
@@ -465,7 +465,7 @@
465465
'MaxZoomStep' => 'Max Zoom Step',
466466
'MaximumFPS' => 'Maximum FPS',
467467
'Medium' => 'Medium',
468-
'MediumBW' => 'Medium B/W',
468+
'Medband' => 'Medium B/W',
469469
'Message' => 'Meddelelse',
470470
'MinAlarmAreaLtMax' => 'Minimum alarm område skal være mindre end maksimum',
471471
'MinAlarmAreaUnset' => 'Du skal angive det minimale antal alarm pixels',

web/lang/en_gb.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@
117117
'AttrTotalScore' => 'Total Score',
118118
'AttrStartWeekday' => 'Start Weekday',
119119
'AttrEndWeekday' => 'End Weekday',
120+
'Auth' => 'Authentication',
120121
'AutoStopTimeout' => 'Auto Stop Timeout',
121122
'AvgBrScore' => 'Avg.<br/>Score',
122123
'BackgroundFilter' => 'Run filter in background',
@@ -251,6 +252,7 @@
251252
'DeviceNumber' => 'Device Number',
252253
'DevicePath' => 'Device Path',
253254
'DisableAlarms' => 'Disable Alarms',
255+
'Dnsmasq' => 'DHCP',
254256
'DonateAlready' => 'No, I\'ve already donated',
255257
'DonateEnticement' => 'You\'ve been running ZoneMinder for a while now and hopefully are finding it a useful addition to your home or workplace security. Although ZoneMinder is, and will remain, free and open source, it costs money to develop and support. If you would like to help support future development and new features then please consider donating. Donating is, of course, optional but very much appreciated and you can donate as much or as little as you like.<br/><br/>If you would like to donate please select the option below or go to <a href="https://zoneminder.com/donate/" target="_blank">https://zoneminder.com/donate/</a> in your browser.<br/><br/>Thank you for using ZoneMinder and don\'t forget to visit the forums on <a href="https://forums.zoneminder.com">ZoneMinder.com</a> for support or suggestions about how to make your ZoneMinder experience even better.',
256258
'Donate' => 'Please Donate',
@@ -339,7 +341,7 @@
339341
'HasTurboTilt' => 'Has Turbo Tilt',
340342
'HasWhiteSpeed' => 'Has White Bal. Speed',
341343
'HasZoomSpeed' => 'Has Zoom Speed',
342-
'HighBW' => 'High&nbsp;B/W',
344+
'Highband' => 'High&nbsp;B/W',
343345
'ImageBufferSize' => 'Image Buffer Size (frames)',
344346
'MaxImageBufferCount' => 'Maximum Image Buffer Size (frames)',
345347
'InvalidateTokens' => 'Invalidate all generated tokens',
@@ -350,7 +352,8 @@
350352
'ListMatches' => 'List Matches',
351353
'LoggedInAs' => 'Logged in as',
352354
'LoggingIn' => 'Logging In',
353-
'LowBW' => 'Low&nbsp;B/W',
355+
'Lowband' => 'Low&nbsp;B/W',
356+
'Mail' => 'Email',
354357
'MaxBandwidth' => 'Max Bandwidth',
355358
'MaxBrScore' => 'Max.<br/>Score',
356359
'MaxFocusRange' => 'Max Focus Range',
@@ -375,7 +378,7 @@
375378
'MaxZoomRange' => 'Max Zoom Range',
376379
'MaxZoomSpeed' => 'Max Zoom Speed',
377380
'MaxZoomStep' => 'Max Zoom Step',
378-
'MediumBW' => 'Medium&nbsp;B/W',
381+
'Medband' => 'Medium&nbsp;B/W',
379382
'MessageSavingDataWhenLeavingPage' => 'You are leaving the page.<br>Want to save data?',
380383
'MetaConfig' => 'Meta Config',
381384
'MinAlarmAreaLtMax' => 'Minimum alarm area should be less than maximum',

web/lang/es_ar.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@
346346
'HasWhiteSpeed' => 'Has White Bal. Speed',
347347
'HasZoomSpeed' => 'Has Zoom Speed',
348348
'High' => 'Alta',
349-
'HighBW' => 'Alta&nbsp;B/W',
349+
'Highband' => 'Alta&nbsp;B/W',
350350
'Home' => 'Home',
351351
'Hostname' => 'Hostname', // Added - 2018-08-30
352352
'Hour' => 'Hora',
@@ -384,7 +384,7 @@
384384
'Logout' => 'Salir',
385385
'Logs' => 'Logs', // Added - 2011-06-17
386386
'Low' => 'Baja',
387-
'LowBW' => 'Baja&nbsp;B/W',
387+
'Lowband' => 'Baja&nbsp;B/W',
388388
'Main' => 'Main',
389389
'Man' => 'Man',
390390
'Manual' => 'Manual',
@@ -415,7 +415,7 @@
415415
'MaxZoomStep' => 'Max Zoom Step',
416416
'MaximumFPS' => 'Maximos FPS',
417417
'Medium' => 'Media',
418-
'MediumBW' => 'Media&nbsp;B/W',
418+
'Medband' => 'Media&nbsp;B/W',
419419
'Message' => 'Message', // Added - 2011-06-16
420420
'MinAlarmAreaLtMax' => 'Minimum alarm area should be less than maximum',
421421
'MinAlarmAreaUnset' => 'You must specify the minimum alarm pixel count',

web/lang/es_es.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@
395395
'HasWhiteSpeed' => 'Tiene velocidad de balance de blancos',
396396
'HasZoomSpeed' => 'Tiene velocidad de zoom',
397397
'High' => 'Alto',
398-
'HighBW' => 'Alto&nbsp;B/B',
398+
'Highband' => 'Alto&nbsp;B/B',
399399
'Home' => 'Inicio',
400400
'Hostname' => 'Hostname', // Added - 2018-08-30
401401
'Hour' => 'Hora',
@@ -433,7 +433,7 @@
433433
'Logout' => 'Cerrar sesión',
434434
'Logs' => 'Registros',
435435
'Low' => 'Bajo',
436-
'LowBW' => 'Bajo&nbsp;B/B',
436+
'Lowband' => 'Bajo&nbsp;B/B',
437437
'Main' => 'Principal',
438438
'Man' => 'Man',
439439
'Manual' => 'Manual',
@@ -464,7 +464,7 @@
464464
'MaxZoomStep' => 'Grado de zoom máximo',
465465
'MaximumFPS' => 'MPS Máximos',
466466
'Medium' => 'Medio',
467-
'MediumBW' => 'Medio&nbsp;B/B',
467+
'Medband' => 'Medio&nbsp;B/B',
468468
'Message' => 'Mensaje',
469469
'MinAlarmAreaLtMax' => 'El área mínima de alarma debe ser menor que la máxima',
470470
'MinAlarmAreaUnset' => 'Debe especificar la mínima cantidad de píxeles de alarma',

0 commit comments

Comments
 (0)