use CaptureResolution instead of CaptureDimensions because it is already in language

This commit is contained in:
Isaac Connor 2019-09-19 10:50:20 -04:00
parent 1bd70319a9
commit d5ee73a9ee
1 changed files with 2 additions and 2 deletions

View File

@ -918,7 +918,7 @@ if ( $monitor->Type() != 'NVSocket' && $monitor->Type() != 'WebSite' ) {
<tr><td><?php echo translate('TargetColorspace') ?></td><td><?php echo htmlSelect('newMonitor[Colours]', $Colours, $monitor->Colours() ); ?>
</td></tr>
<tr>
<td><?php echo translate('CaptureDimensions') ?> (<?php echo translate('Pixels') ?>)</td>
<td><?php echo translate('CaptureResolution') ?> (<?php echo translate('Pixels') ?>)</td>
<td>
<input type="number" name="newMonitor[Width]" value="<?php echo validHtmlStr($monitor->Width()) ?>"/>
<input type="number" name="newMonitor[Height]" value="<?php echo validHtmlStr($monitor->Height()) ?>"/>
@ -949,7 +949,7 @@ if ( $monitor->Type() != 'NVSocket' && $monitor->Type() != 'WebSite' ) {
</tr>
<tr>
<td><?php echo translate('Orientation') ?></td>
<td><?php echo htmlselect('newMonitor[Orientation]', $orientations, $monitor->Orientation() );?></td>
<td><?php echo htmlselect('newMonitor[Orientation]', $orientations, $monitor->Orientation());?></td>
</tr>
<?php
}