remove :'s in labels to be consistent

pull/3477/head
Isaac Connor 2022-04-27 17:42:02 -04:00
parent aab717bc91
commit f88cbfb6de
1 changed files with 3 additions and 3 deletions

View File

@ -146,15 +146,15 @@ xhtmlHeaders(__FILE__, translate('CycleWatch'));
</div>
<div id="sizeControl">
<span id="widthControl">
<label><?php echo translate('Width') ?>:</label>
<label><?php echo translate('Width') ?></label>
<?php echo htmlSelect('width', $widths, $options['width'], array('id'=>'width', 'data-on-change-this'=>'changeSize') ); ?>
</span>
<span id="heightControl">
<label><?php echo translate('Height') ?>:</label>
<label><?php echo translate('Height') ?></label>
<?php echo htmlSelect('height', $heights, $options['height'], array('id'=>'height', 'data-on-change-this'=>'changeSize') ); ?>
</span>
<span id="scaleControl">
<label><?php echo translate('Scale') ?>:</label>
<label><?php echo translate('Scale') ?></label>
<?php echo htmlSelect('scale', $scales, $options['scale'], array('id'=>'scale', 'data-on-change-this'=>'changeScale') ); ?>
</span>
</div>