Bug 301 - Added monitor specific alarm maximum FPS
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1901 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
778c98970a
commit
28cde4ed89
|
@ -96,6 +96,7 @@ else
|
||||||
$monitor['FrameSkip'] = 0;
|
$monitor['FrameSkip'] = 0;
|
||||||
$monitor['EventPrefix'] = 'Event-';
|
$monitor['EventPrefix'] = 'Event-';
|
||||||
$monitor['MaxFPS'] = "";
|
$monitor['MaxFPS'] = "";
|
||||||
|
$monitor['AlarmMaxFPS'] = "";
|
||||||
$monitor['FPSReportInterval'] = 1000;
|
$monitor['FPSReportInterval'] = 1000;
|
||||||
$monitor['RefBlendPerc'] = 7;
|
$monitor['RefBlendPerc'] = 7;
|
||||||
$monitor['DefaultRate'] = '100';
|
$monitor['DefaultRate'] = '100';
|
||||||
|
@ -111,7 +112,7 @@ if ( !isset( $new_monitor ) )
|
||||||
}
|
}
|
||||||
if ( !empty($preset) )
|
if ( !empty($preset) )
|
||||||
{
|
{
|
||||||
$result = mysql_query( "select Type, Device, Channel, Format, Host, Port, Path, Width, Height, Palette, MaxFPS, Controllable, ControlId, ControlDevice, ControlAddress, DefaultRate, DefaultScale from MonitorPresets where Id = '$preset'" );
|
$result = mysql_query( "select Type, Device, Channel, Format, Host, Port, Path, Width, Height, Palette, MaxFPS, AlarmMaxFPS, Controllable, ControlId, ControlDevice, ControlAddress, DefaultRate, DefaultScale from MonitorPresets where Id = '$preset'" );
|
||||||
if ( !$result )
|
if ( !$result )
|
||||||
die( mysql_error() );
|
die( mysql_error() );
|
||||||
$preset = mysql_fetch_assoc( $result );
|
$preset = mysql_fetch_assoc( $result );
|
||||||
|
@ -157,6 +158,10 @@ function validateForm(form)
|
||||||
{
|
{
|
||||||
errors[errors.length] = "<?= $zmSlangBadMaxFPS ?>";
|
errors[errors.length] = "<?= $zmSlangBadMaxFPS ?>";
|
||||||
}
|
}
|
||||||
|
if ( form.elements['new_monitor[AlarmMaxFPS]'].value && !(parseFloat(form.elements['new_monitor[AlarmMaxFPS]'].value) > 0 ) )
|
||||||
|
{
|
||||||
|
errors[errors.length] = "<?= $zmSlangBadAlarmMaxFPS ?>";
|
||||||
|
}
|
||||||
if ( !form.elements['new_monitor[RefBlendPerc]'].value || !(parseInt(form.elements['new_monitor[RefBlendPerc]'].value) > 0 ) )
|
if ( !form.elements['new_monitor[RefBlendPerc]'].value || !(parseInt(form.elements['new_monitor[RefBlendPerc]'].value) > 0 ) )
|
||||||
{
|
{
|
||||||
errors[errors.length] = "<?= $zmSlangBadRefBlendPerc ?>";
|
errors[errors.length] = "<?= $zmSlangBadRefBlendPerc ?>";
|
||||||
|
@ -388,6 +393,7 @@ if ( $tab != 'general' )
|
||||||
<input type="hidden" name="new_monitor[LinkedMonitors]" value="<?= $new_monitor['LinkedMonitors'] ?>">
|
<input type="hidden" name="new_monitor[LinkedMonitors]" value="<?= $new_monitor['LinkedMonitors'] ?>">
|
||||||
<input type="hidden" name="new_monitor[RefBlendPerc]" value="<?= $new_monitor['RefBlendPerc'] ?>">
|
<input type="hidden" name="new_monitor[RefBlendPerc]" value="<?= $new_monitor['RefBlendPerc'] ?>">
|
||||||
<input type="hidden" name="new_monitor[MaxFPS]" value="<?= $new_monitor['MaxFPS'] ?>">
|
<input type="hidden" name="new_monitor[MaxFPS]" value="<?= $new_monitor['MaxFPS'] ?>">
|
||||||
|
<input type="hidden" name="new_monitor[AlarmMaxFPS]" value="<?= $new_monitor['AlarmMaxFPS'] ?>">
|
||||||
<?php
|
<?php
|
||||||
if ( isset($new_monitor['Triggers']) )
|
if ( isset($new_monitor['Triggers']) )
|
||||||
{
|
{
|
||||||
|
@ -514,6 +520,7 @@ switch ( $tab )
|
||||||
<tr><td align="left" class="text"><?= $zmSlangEnabled ?></td><td align="left" class="text"><input type="checkbox" name="new_monitor[Enabled]" value="1" class="form-noborder"<?php if ( !empty($new_monitor['Enabled']) ) { ?> checked<?php } ?>></td></tr>
|
<tr><td align="left" class="text"><?= $zmSlangEnabled ?></td><td align="left" class="text"><input type="checkbox" name="new_monitor[Enabled]" value="1" class="form-noborder"<?php if ( !empty($new_monitor['Enabled']) ) { ?> checked<?php } ?>></td></tr>
|
||||||
<tr><td align="left" class="text"><?= $zmSlangLinkedMonitors ?></td><td align="left" class="text"><input type="text" name="new_monitor[LinkedMonitors]" value="<?= $new_monitor['LinkedMonitors'] ?>" size="16" class="form"> <a href="#" onClick="selectLinkedMonitors()"><?= $zmSlangSelect ?></a></td></tr>
|
<tr><td align="left" class="text"><?= $zmSlangLinkedMonitors ?></td><td align="left" class="text"><input type="text" name="new_monitor[LinkedMonitors]" value="<?= $new_monitor['LinkedMonitors'] ?>" size="16" class="form"> <a href="#" onClick="selectLinkedMonitors()"><?= $zmSlangSelect ?></a></td></tr>
|
||||||
<tr><td align="left" class="text"><?= $zmSlangMaximumFPS ?></td><td align="left" class="text"><input type="text" name="new_monitor[MaxFPS]" value="<?= $new_monitor['MaxFPS'] ?>" size="6" class="form"></td></tr>
|
<tr><td align="left" class="text"><?= $zmSlangMaximumFPS ?></td><td align="left" class="text"><input type="text" name="new_monitor[MaxFPS]" value="<?= $new_monitor['MaxFPS'] ?>" size="6" class="form"></td></tr>
|
||||||
|
<tr><td align="left" class="text"><?= $zmSlangAlarmMaximumFPS ?></td><td align="left" class="text"><input type="text" name="new_monitor[AlarmMaxFPS]" value="<?= $new_monitor['AlarmMaxFPS'] ?>" size="6" class="form"></td></tr>
|
||||||
<tr><td align="left" class="text"><?= $zmSlangRefImageBlendPct ?></td><td align="left" class="text"><input type="text" name="new_monitor[RefBlendPerc]" value="<?= $new_monitor['RefBlendPerc'] ?>" size="4" class="form"></td></tr>
|
<tr><td align="left" class="text"><?= $zmSlangRefImageBlendPct ?></td><td align="left" class="text"><input type="text" name="new_monitor[RefBlendPerc]" value="<?= $new_monitor['RefBlendPerc'] ?>" size="4" class="form"></td></tr>
|
||||||
<tr><td align="left" class="text"><?= $zmSlangTriggers ?></td><td align="left" class="text">
|
<tr><td align="left" class="text"><?= $zmSlangTriggers ?></td><td align="left" class="text">
|
||||||
<?php
|
<?php
|
||||||
|
|
|
@ -83,6 +83,7 @@ $zmSlangAlarmBrFrames = 'Alarm<br/>Sn
|
||||||
$zmSlangAlarmFrame = 'Alarm snímek';
|
$zmSlangAlarmFrame = 'Alarm snímek';
|
||||||
$zmSlangAlarmFrameCount = 'Poèet alarm snímkù';
|
$zmSlangAlarmFrameCount = 'Poèet alarm snímkù';
|
||||||
$zmSlangAlarmLimits = 'Limity alarmu';
|
$zmSlangAlarmLimits = 'Limity alarmu';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Alarm Px';
|
$zmSlangAlarmPx = 'Alarm Px';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
$zmSlangAlert = 'Pozor';
|
$zmSlangAlert = 'Pozor';
|
||||||
|
@ -132,6 +133,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = 'Prùm.<br/>Skóre';
|
$zmSlangAvgBrScore = 'Prùm.<br/>Skóre';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -83,6 +83,7 @@ $zmSlangAlarmBrFrames = 'Alarm<br />Bilder';
|
||||||
$zmSlangAlarmFrame = 'Alarm Bilder';
|
$zmSlangAlarmFrame = 'Alarm Bilder';
|
||||||
$zmSlangAlarmFrameCount = 'Alarm Bilderanzahl';
|
$zmSlangAlarmFrameCount = 'Alarm Bilderanzahl';
|
||||||
$zmSlangAlarmLimits = 'Alarm Limits';
|
$zmSlangAlarmLimits = 'Alarm Limits';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Alarm Pixel';
|
$zmSlangAlarmPx = 'Alarm Pixel';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
$zmSlangAlert = 'Alarm';
|
$zmSlangAlert = 'Alarm';
|
||||||
|
@ -132,6 +133,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = 'Mitt.<br/>Zähler';
|
$zmSlangAvgBrScore = 'Mitt.<br/>Zähler';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -84,6 +84,7 @@ $zmSlangAlarmBrFrames = 'Alarm<br/>Billeder';
|
||||||
$zmSlangAlarmFrame = 'Alarm Billede';
|
$zmSlangAlarmFrame = 'Alarm Billede';
|
||||||
$zmSlangAlarmFrameCount = 'Alarm Billede Tæller';
|
$zmSlangAlarmFrameCount = 'Alarm Billede Tæller';
|
||||||
$zmSlangAlarmLimits = 'Alarm Begrændsing';
|
$zmSlangAlarmLimits = 'Alarm Begrændsing';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Alarm Px';
|
$zmSlangAlarmPx = 'Alarm Px';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
$zmSlangAlert = 'Alarm';
|
$zmSlangAlert = 'Alarm';
|
||||||
|
@ -133,6 +134,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = 'Avg.<br/>Skore';
|
$zmSlangAvgBrScore = 'Avg.<br/>Skore';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -83,6 +83,7 @@ $zmSlangAlarmBrFrames = 'Alarm<br/>Frames';
|
||||||
$zmSlangAlarmFrame = 'Alarm Frame';
|
$zmSlangAlarmFrame = 'Alarm Frame';
|
||||||
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
||||||
$zmSlangAlarmLimits = 'Alarm Limits';
|
$zmSlangAlarmLimits = 'Alarm Limits';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Alarm Px';
|
$zmSlangAlarmPx = 'Alarm Px';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
$zmSlangAlert = 'Alert';
|
$zmSlangAlert = 'Alert';
|
||||||
|
@ -131,6 +132,7 @@ $zmSlangAutoUploadAbbr = 'Upload';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAutoVideoAbbr = 'Video';
|
$zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAvgBrScore = 'Avg.<br/>Score';
|
$zmSlangAvgBrScore = 'Avg.<br/>Score';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadNameChars = 'Names may only contain alphanumeric characters plus hyphen and underscore';
|
$zmSlangBadNameChars = 'Names may only contain alphanumeric characters plus hyphen and underscore';
|
||||||
$zmSlangBadMaxFPS = 'Maximum FPS must be a positive integer or floating point value';
|
$zmSlangBadMaxFPS = 'Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadRefBlendPerc = 'Reference blendpercentage must be a positive integer';
|
$zmSlangBadRefBlendPerc = 'Reference blendpercentage must be a positive integer';
|
||||||
|
|
|
@ -34,6 +34,7 @@ $zmSlangAlarmBrFrames = 'Alarma<br/>Cuadros';
|
||||||
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
||||||
$zmSlangAlarmFrame = 'Cuadro Alarma';
|
$zmSlangAlarmFrame = 'Cuadro Alarma';
|
||||||
$zmSlangAlarmLimits = 'Alarm Limits';
|
$zmSlangAlarmLimits = 'Alarm Limits';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Alarm Px';
|
$zmSlangAlarmPx = 'Alarm Px';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
$zmSlangAlert = 'Alerta';
|
$zmSlangAlert = 'Alerta';
|
||||||
|
@ -84,6 +85,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = 'Punt.<br/>Promedio';
|
$zmSlangAvgBrScore = 'Punt.<br/>Promedio';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -83,6 +83,7 @@ $zmSlangAlarmBrFrames = 'Images<br/>alarme';
|
||||||
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
||||||
$zmSlangAlarmFrame = 'Image alarme';
|
$zmSlangAlarmFrame = 'Image alarme';
|
||||||
$zmSlangAlarmLimits = 'Limites alarme';
|
$zmSlangAlarmLimits = 'Limites alarme';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Px Alarme';
|
$zmSlangAlarmPx = 'Px Alarme';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
$zmSlangAlert = 'Alerte';
|
$zmSlangAlert = 'Alerte';
|
||||||
|
@ -132,6 +133,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = 'Score<br/>moy.';
|
$zmSlangAvgBrScore = 'Score<br/>moy.';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -86,6 +86,7 @@ $zmSlangAlarmBrFrames = 'Immagini<br/>Allarme';
|
||||||
$zmSlangAlarmFrameCount = 'Allarme Conta frame';
|
$zmSlangAlarmFrameCount = 'Allarme Conta frame';
|
||||||
$zmSlangAlarmFrame = 'Immagine Allarme';
|
$zmSlangAlarmFrame = 'Immagine Allarme';
|
||||||
$zmSlangAlarmLimits = 'Limiti Allarme';
|
$zmSlangAlarmLimits = 'Limiti Allarme';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Px Allarme';
|
$zmSlangAlarmPx = 'Px Allarme';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
$zmSlangAlert = 'Attenzione';
|
$zmSlangAlert = 'Attenzione';
|
||||||
|
@ -135,6 +136,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = 'Punteggio<br/>medio';
|
$zmSlangAvgBrScore = 'Punteggio<br/>medio';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -82,6 +82,7 @@ $zmSlangAlarmBrFrames = '
|
||||||
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
||||||
$zmSlangAlarmFrame = '±×°Ñ ÌÚ°Ñ';
|
$zmSlangAlarmFrame = '±×°Ñ ÌÚ°Ñ';
|
||||||
$zmSlangAlarmLimits = '±×°ÑŒÀ“x';
|
$zmSlangAlarmLimits = '±×°ÑŒÀ“x';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarm = '±×°Ñ';
|
$zmSlangAlarm = '±×°Ñ';
|
||||||
$zmSlangAlarmPx = '±×°Ñ Px';
|
$zmSlangAlarmPx = '±×°Ñ Px';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
|
@ -132,6 +133,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = '•½‹Ï<br/>½º±°';
|
$zmSlangAvgBrScore = '•½‹Ï<br/>½º±°';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -83,6 +83,7 @@ $zmSlangAlarmBrFrames = 'Alarm<br/>Frames';
|
||||||
$zmSlangAlarmFrame = 'Alarm Frame';
|
$zmSlangAlarmFrame = 'Alarm Frame';
|
||||||
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
||||||
$zmSlangAlarmLimits = 'Alarm Limieten';
|
$zmSlangAlarmLimits = 'Alarm Limieten';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Alarm Px';
|
$zmSlangAlarmPx = 'Alarm Px';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
$zmSlangAlert = 'Waarschuwing';
|
$zmSlangAlert = 'Waarschuwing';
|
||||||
|
@ -133,6 +134,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = 'Gem.<br/>score';
|
$zmSlangAvgBrScore = 'Gem.<br/>score';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -83,6 +83,7 @@ $zmSlangAlarmBrFrames = 'Ramki<br/>alarmowe';
|
||||||
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
||||||
$zmSlangAlarmFrame = 'Ramka alarmowa';
|
$zmSlangAlarmFrame = 'Ramka alarmowa';
|
||||||
$zmSlangAlarmLimits = 'Ograniczenia alarmu';
|
$zmSlangAlarmLimits = 'Ograniczenia alarmu';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Alarm Px';
|
$zmSlangAlarmPx = 'Alarm Px';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
$zmSlangAlert = 'Gotowosc';
|
$zmSlangAlert = 'Gotowosc';
|
||||||
|
@ -133,6 +134,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = '¦red.<br/>wynik';
|
$zmSlangAvgBrScore = '¦red.<br/>wynik';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -23,6 +23,7 @@ $zmSlangAlarmBrFrames = 'Imagens<br/>Alarmadas';
|
||||||
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
||||||
$zmSlangAlarmFrame = 'Imagem Alarmada';
|
$zmSlangAlarmFrame = 'Imagem Alarmada';
|
||||||
$zmSlangAlarmLimits = 'Limites de Alarme';
|
$zmSlangAlarmLimits = 'Limites de Alarme';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Pixel de Alarme';
|
$zmSlangAlarmPx = 'Pixel de Alarme';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
$zmSlangAlert = 'Alerta';
|
$zmSlangAlert = 'Alerta';
|
||||||
|
@ -72,6 +73,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = 'Maior<br/>Score';
|
$zmSlangAvgBrScore = 'Maior<br/>Score';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -54,6 +54,7 @@ $zmSlangAlarmBrFrames = 'Alarm<br/>Frames';
|
||||||
$zmSlangAlarmFrame = 'Cadru alarma';
|
$zmSlangAlarmFrame = 'Cadru alarma';
|
||||||
$zmSlangAlarmFrameCount = 'Nr. cadru alarma';
|
$zmSlangAlarmFrameCount = 'Nr. cadru alarma';
|
||||||
$zmSlangAlarmLimits = 'Alarm Limits';
|
$zmSlangAlarmLimits = 'Alarm Limits';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Alarm Px';
|
$zmSlangAlarmPx = 'Alarm Px';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
$zmSlangAlert = 'Alert';
|
$zmSlangAlert = 'Alert';
|
||||||
|
@ -103,6 +104,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = 'Cota<br/>medie';
|
$zmSlangAvgBrScore = 'Cota<br/>medie';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -82,6 +82,7 @@ $zmSlangAlarmBrFrames = '
|
||||||
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
$zmSlangAlarmFrameCount = 'Alarm Frame Count';
|
||||||
$zmSlangAlarmFrame = 'ëÁÄÒ ÔÒÅ×ÏÇÉ';
|
$zmSlangAlarmFrame = 'ëÁÄÒ ÔÒÅ×ÏÇÉ';
|
||||||
$zmSlangAlarmLimits = 'çÒÁÎ. ÚÏÎÙ ÔÒÅ×.';
|
$zmSlangAlarmLimits = 'çÒÁÎ. ÚÏÎÙ ÔÒÅ×.';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarm = 'ôÒÅ×ÏÇÁ';
|
$zmSlangAlarm = 'ôÒÅ×ÏÇÁ';
|
||||||
$zmSlangAlarmPx = 'ðËÓ ÔÒÅ×.';
|
$zmSlangAlarmPx = 'ðËÓ ÔÒÅ×.';
|
||||||
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
$zmSlangAlarmRGBUnset = 'You must set an alarm RGB colour';
|
||||||
|
@ -133,6 +134,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||||
$zmSlangAvgBrScore = 'óÒÅÄ.<br/>ÏÃÅÎËÁ';
|
$zmSlangAvgBrScore = 'óÒÅÄ.<br/>ÏÃÅÎËÁ';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
|
@ -83,6 +83,7 @@ $zmSlangAlarmFrameCount = 'Larmramsr
|
||||||
$zmSlangAlarmFrame = 'Larmram';
|
$zmSlangAlarmFrame = 'Larmram';
|
||||||
$zmSlangAlarm = 'Larm';
|
$zmSlangAlarm = 'Larm';
|
||||||
$zmSlangAlarmLimits = 'Larmgränser';
|
$zmSlangAlarmLimits = 'Larmgränser';
|
||||||
|
$zmSlangAlarmMaximumFPS = 'Alarm Maximum FPS';
|
||||||
$zmSlangAlarmPx = 'Larm Pix';
|
$zmSlangAlarmPx = 'Larm Pix';
|
||||||
$zmSlangAlarmRGBUnset = 'Du måste sätta en lam RGB färg';
|
$zmSlangAlarmRGBUnset = 'Du måste sätta en lam RGB färg';
|
||||||
$zmSlangAlert = 'Varning';
|
$zmSlangAlert = 'Varning';
|
||||||
|
@ -132,6 +133,7 @@ $zmSlangAutoVideoAbbr = 'Video';
|
||||||
$zmSlangAutoVideoEvents = 'Skapa video för alla träffar automatiskt';
|
$zmSlangAutoVideoEvents = 'Skapa video för alla träffar automatiskt';
|
||||||
$zmSlangAvgBrScore = 'Ung.<br/>träff';
|
$zmSlangAvgBrScore = 'Ung.<br/>träff';
|
||||||
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
$zmSlangBadAlarmFrameCount = 'Alarm frame count must be an integer of one or more';
|
||||||
|
$zmSlangBadAlarmMaxFPS = 'Alarm Maximum FPS must be a positive integer or floating point value';
|
||||||
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
$zmSlangBadChannel = 'Channel must be set to an integer of zero or more';
|
||||||
$zmSlangBadDevice = 'Device must be set to a valid value';
|
$zmSlangBadDevice = 'Device must be set to a valid value';
|
||||||
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
$zmSlangBadFormat = 'Format must be set to an integer of zero or more';
|
||||||
|
|
Loading…
Reference in New Issue