fix lang tempalte/build by: Armando

This commit is contained in:
armando1980
2014-05-10 00:21:04 -04:00
parent 3aab6b37df
commit c5ef8c3c97
+10 -10
View File
@@ -2,16 +2,16 @@
include("next.tpl");
?>
<div id="build" class="gid8"><a href="#" onClick="return Popup(8,4);" class="build_logo">
<img class="building g8" src="img/x.gif" alt="Grain Mill" title="Grain Mill" />
<img class="building g8" src="img/x.gif" alt="Grain Mill" title="<?php echo GRAINMILL; ?>" />
</a>
<h1>Grain Mill <span class="level">Level <?php echo $village->resarray['f'.$id]; ?></span></h1>
<p class="build_desc">Here your grain is milled in order to produce flour. Based on its level your grain mill can increase your crop production by up to 25 percent.</p>
<h1><?php echo GRAINMILL; ?> <span class="level"><?php echo LEVEL; ?> <?php echo $village->resarray['f'.$id]; ?></span></h1>
<p class="build_desc"><?php echo GRAINMILL_DESC; ?></p>
<table cellpadding="1" cellspacing="1" id="build_value">
<tr>
<th>Current crop bonus:</th>
<td><b><?php echo $bid8[$village->resarray['f'.$id]]['attri']; ?></b> Percent</td>
<th><?php echo CURRENT_CROP_BONUS; ?></th>
<td><b><?php echo $bid8[$village->resarray['f'.$id]]['attri']; ?></b> <?php echo PERCENT; ?></td>
</tr>
<tr>
<?php
@@ -19,13 +19,13 @@ include("next.tpl");
$next = $village->resarray['f'.$id]+1+$loopsame+$doublebuild+$master;
if($next<=5){
?>
<th>Crop bonus at level <?php echo $next; ?>:</th>
<td><b><?php echo $bid8[$next]['attri']; ?></b> Percent</td>
<th><?php echo CROP_BONUS_LEVEL; ?> <?php echo $next; ?>:</th>
<td><b><?php echo $bid8[$next]['attri']; ?></b> <?php echo PERCENT; ?></td>
<?php
}else{
?>
<th>Crop bonus at level 5:</th>
<td><b><?php echo $bid8[5]['attri']; ?></b> Percent</td>
<th><?php echo CROP_BONUS_LEVEL; ?> 5:</th>
<td><b><?php echo $bid8[5]['attri']; ?></b> <?php echo PERCENT; ?></td>
<?php
}}
?>
@@ -34,4 +34,4 @@ include("next.tpl");
<?php
include("upgrade.tpl");
?>
</p></div>
</p></div>