Update monitor.php

Enable localization of the monitor function names in the monitor settings window.
This commit is contained in:
nagyrobi 2013-08-16 13:48:25 +02:00
parent 3a305522c4
commit a186981278
1 changed files with 1 additions and 1 deletions

View File

@ -576,7 +576,7 @@ switch ( $tab )
foreach ( getEnumValues( 'Monitors', 'Function' ) as $optFunction ) foreach ( getEnumValues( 'Monitors', 'Function' ) as $optFunction )
{ {
?> ?>
<option value="<?= $optFunction ?>"<?php if ( $optFunction == $newMonitor['Function'] ) { ?> selected="selected"<?php } ?>><?= $optFunction ?></option> <option value="<?= $optFunction ?>"<?php if ( $optFunction == $newMonitor['Function'] ) { ?> selected="selected"<?php } ?>><?= $SLANG['Fn'.$optFunction] ?></option>
<?php <?php
} }
?> ?>