Merge pull request #160 from armando1980/patch-56

fix lang tempalte/build by: Armando
This commit is contained in:
Shadow
2014-05-12 08:41:32 +03:00
+9 -9
View File
@@ -2,16 +2,16 @@
include("next.tpl");
?>
<div id="build" class="gid10"><a href="#" onClick="return Popup(10,4);" class="build_logo">
<img class="building g10" src="img/x.gif" alt="Warehouse" title="Warehouse" />
<img class="building g10" src="img/x.gif" alt="Warehouse" title="<?php echo WAREHOUSE; ?>" />
</a>
<h1>Warehouse <span class="level">Level <?php echo $village->resarray['f'.$id]; ?></span></h1>
<p class="build_desc">The resources wood, clay and iron are stored in your Warehouse. By increasing its level you increase your Warehouse's capacity. .</p>
<h1><?php echo WAREHOUSE; ?> <span class="level"><?php echo LEVEL; ?> <?php echo $village->resarray['f'.$id]; ?></span></h1>
<p class="build_desc"><?php echo WAREHOUSE_DESC; ?></p>
<table cellpadding="1" cellspacing="1" id="build_value">
<tr>
<th>Current capacity:</th>
<td><b><?php echo $bid10[$village->resarray['f'.$id]]['attri']*STORAGE_MULTIPLIER; ?></b> Resource units</td>
<th><?php echo CURRENT_CAPACITY; ?></th>
<td><b><?php echo $bid10[$village->resarray['f'.$id]]['attri']*STORAGE_MULTIPLIER; ?></b> <?php echo RESOURCE_UNITS; ?></td>
</tr>
<tr>
<?php
@@ -19,13 +19,13 @@ include("next.tpl");
$next = $village->resarray['f'.$id]+1+$loopsame+$doublebuild+$master;
if($next<=20){
?>
<th>Capacity at level <?php echo $next ?>:</th>
<td><b><?php echo $bid10[$next]['attri']*STORAGE_MULTIPLIER; ?></b> Resource units</td>
<th><?php echo CAPACITY_LEVEL; ?> <?php echo $next ?>:</th>
<td><b><?php echo $bid10[$next]['attri']*STORAGE_MULTIPLIER; ?></b> <?php echo RESOURCE_UNITS; ?></td>
<?php
}else{
?>
<th>Capacity at level 20:</th>
<td><b><?php echo $bid10[20]['attri']*STORAGE_MULTIPLIER; ?></b> Resource units</td>
<th><?php echo CAPACITY_LEVEL; ?> 20:</th>
<td><b><?php echo $bid10[20]['attri']*STORAGE_MULTIPLIER; ?></b> <?php echo RESOURCE_UNITS; ?></td>
<?php
}
}