Bug 246 - Changed text strings for filter actions to remove 'automatic'
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2032 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
ed0626492f
commit
2d2e41815c
|
@ -348,7 +348,7 @@ else
|
|||
<tr>
|
||||
<td colspan="4" class="text"><table width="100%" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td align="left" class="text"><?= $zmSlangAutoArchiveEvents ?>: </td>
|
||||
<td align="left" class="text"><?= $zmSlangFilterArchiveEvents ?>: </td>
|
||||
<td align="left" class="text" colspan="2"><input type="checkbox" name="auto_archive" value="1"<?php if ( $filter_data['AutoArchive'] ) { echo " checked"; } ?> class="form-noborder"></td>
|
||||
</tr>
|
||||
<?php
|
||||
|
@ -356,7 +356,7 @@ if ( ZM_OPT_MPEG != "no" )
|
|||
{
|
||||
?>
|
||||
<tr>
|
||||
<td align="left" class="text"><?= $zmSlangAutoVideoEvents ?>: </td>
|
||||
<td align="left" class="text"><?= $zmSlangFilterVideoEvents ?>: </td>
|
||||
<td align="left" class="text" colspan="2"><input type="checkbox" name="auto_video" value="1"<?php if ( $filter_data['AutoVideo'] ) { echo " checked"; } ?> class="form-noborder"></td>
|
||||
</tr>
|
||||
<?php
|
||||
|
@ -365,7 +365,7 @@ if ( ZM_OPT_UPLOAD )
|
|||
{
|
||||
?>
|
||||
<tr>
|
||||
<td align="left" class="text"><?= $zmSlangAutoUploadEvents ?>: </td>
|
||||
<td align="left" class="text"><?= $zmSlangFilterUploadEvents ?>: </td>
|
||||
<td align="left" class="text" colspan="2"><input type="checkbox" name="auto_upload" value="1"<?php if ( $filter_data['AutoUpload'] ) { echo " checked"; } ?> class="form-noborder"></td>
|
||||
</tr>
|
||||
<?php
|
||||
|
@ -374,7 +374,7 @@ if ( ZM_OPT_EMAIL )
|
|||
{
|
||||
?>
|
||||
<tr>
|
||||
<td align="left" class="text"><?= $zmSlangAutoEmailEvents ?>: </td>
|
||||
<td align="left" class="text"><?= $zmSlangFilterEmailEvents ?>: </td>
|
||||
<td align="left" class="text" colspan="2"><input type="checkbox" name="auto_email" value="1"<?php if ( $filter_data['AutoEmail'] ) { echo " checked"; } ?> class="form-noborder"></td>
|
||||
</tr>
|
||||
<?php
|
||||
|
@ -383,19 +383,19 @@ if ( ZM_OPT_MESSAGE )
|
|||
{
|
||||
?>
|
||||
<tr>
|
||||
<td align="left" class="text"><?= $zmSlangAutoMessageEvents ?>: </td>
|
||||
<td align="left" class="text"><?= $zmSlangFilterMessageEvents ?>: </td>
|
||||
<td align="left" class="text" colspan="2"><input type="checkbox" name="auto_message" value="1"<?php if ( $filter_data['AutoMessage'] ) { echo " checked"; } ?> class="form-noborder"></td>
|
||||
</tr>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<tr>
|
||||
<td align="left" class="text"><?= $zmSlangAutoExecuteEvents ?>: </td>
|
||||
<td align="left" class="text"><?= $zmSlangFilterExecuteEvents ?>: </td>
|
||||
<td align="left" class="text"><input type="checkbox" name="auto_execute" value="1"<?php if ( $filter_data['AutoExecute'] ) { echo " checked"; } ?> class="form-noborder"></td>
|
||||
<td align="left" class="text"><input type="text" name="auto_execute_cmd" value="<?= $filter_data['AutoExecuteCmd'] ?>" size="32" maxlength="255" class="form"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" class="text"><?= $zmSlangAutoDeleteEvents ?>: </td>
|
||||
<td align="left" class="text"><?= $zmSlangFilterDeleteEvents ?>: </td>
|
||||
<td align="left" class="text" colspan="2"><input type="checkbox" name="auto_delete" value="1"<?php if ( $filter_data['AutoDelete'] ) { echo " checked"; } ?> class="form-noborder"></td>
|
||||
</tr></table></td>
|
||||
<tr>
|
||||
|
|
|
@ -116,14 +116,14 @@ $zmSlangAttrTime = 'Time';
|
|||
$zmSlangAttrTotalScore = 'Total Score';
|
||||
$zmSlangAttrWeekday = 'Weekday';
|
||||
$zmSlangAuto = 'Auto';
|
||||
$zmSlangAutoArchiveEvents = 'Automatically archive all matches';
|
||||
$zmSlangAutoDeleteEvents = 'Automatically delete all matches';
|
||||
$zmSlangAutoEmailEvents = 'Automatically email details of all matches';
|
||||
$zmSlangAutoExecuteEvents = 'Automatically execute command on all matches';
|
||||
$zmSlangAutoMessageEvents = 'Automatically message details of all matches';
|
||||
$zmSlangFilterArchiveEvents = 'Archive all matches';
|
||||
$zmSlangFilterDeleteEvents = 'Delete all matches';
|
||||
$zmSlangFilterEmailEvents = 'Email details of all matches';
|
||||
$zmSlangFilterExecuteEvents = 'Execute command on all matches';
|
||||
$zmSlangFilterMessageEvents = 'Message details of all matches';
|
||||
$zmSlangAutoStopTimeout = 'Auto Stop Timeout';
|
||||
$zmSlangAutoUploadEvents = 'Automatically upload all matches';
|
||||
$zmSlangAutoVideoEvents = 'Automatically create video for all matches';
|
||||
$zmSlangFilterUploadEvents = 'Upload all matches';
|
||||
$zmSlangFilterVideoEvents = 'Create video for all matches';
|
||||
$zmSlangAvgBrScore = 'Avg.<br/>Score';
|
||||
$zmSlangBackground = 'Background';
|
||||
$zmSlangBackgroundFilter = 'Run filter in background';
|
||||
|
|
Loading…
Reference in New Issue