Amelioration autotring traduc menulist

This commit is contained in:
Alan Garcia 2012-08-24 13:32:50 +00:00
parent 6747accc2d
commit a022ae4ae3
1 changed files with 3 additions and 3 deletions

View File

@ -70,15 +70,15 @@ __("Edit the file /etc/alternc/menulist.txt to enable, disable ou change order o
?> ?>
<h4><?php __("Menu actually activated"); ?></h4> <h4><?php __("Menu actually activated"); ?></h4>
<ul> <ul>
<?php foreach($menu_activated as $m){ echo "<li>$m - <i>"._("shortdesc_$m")."</i></li>";} ?> <?php foreach($menu_activated as $m){ echo "<li>$m - <i>"._("shortdesc_".basename($m,".php"))."</i></li>";} ?>
</ul> </ul>
<h4><?php __("Menu activated but not present"); ?></h4> <h4><?php __("Menu activated but not present"); ?></h4>
<ul> <ul>
<?php foreach($menu_error as $m){ echo "<li>$m - <i>"._("shortdesc_$m")."</i></li>";} ?> <?php foreach($menu_error as $m){ echo "<li>$m - <i>"._("shortdesc_".basename($m,".php"))."</i></li>";} ?>
</ul> </ul>
<h4><?php __("Menu avalaible but not activated"); ?></h4> <h4><?php __("Menu avalaible but not activated"); ?></h4>
<ul> <ul>
<?php foreach($menu_diff as $m){ echo "<li>$m - <i>"._("shortdesc_$m")."</i></li>";} ?> <?php foreach($menu_diff as $m){ echo "<li>$m - <i>"._("shortdesc_".basename($m,".php"))."</i></li>";} ?>
</ul> </ul>