Merge pull request #156 from armando1980/patch-52

fix lang tempalte/build by: Armando
This commit is contained in:
Shadow
2014-05-12 08:41:57 +03:00
+10 -10
View File
@@ -2,16 +2,16 @@
include("next.tpl");
?>
<div id="build" class="gid6"><a href="#" onClick="return Popup(6,4);" class="build_logo">
<img class="building g6" src="img/x.gif" alt="Brickyard" title="Brickyard" />
<img class="building g6" src="img/x.gif" alt="Brickyard" title="<?php echo BRICKYARD; ?>" />
</a>
<h1>Brickyard <span class="level">Level <?php echo $village->resarray['f'.$id]; ?></span></h1>
<p class="build_desc">Here clay is processed into bricks. Based on its level your Brickyard can increase your clay production by up to 25 percent.</p>
<h1><?php echo BRICKYARD; ?> <span class="level"><?php echo LEVEL; ?> <?php echo $village->resarray['f'.$id]; ?></span></h1>
<p class="build_desc"><?php echo BRICKYARD_DESC; ?></p>
<table cellpadding="1" cellspacing="1" id="build_value">
<tr>
<th>Current clay bonus:</th>
<td><b><?php echo $bid6[$village->resarray['f'.$id]]['attri']; ?></b> Percent</td>
<th><?php echo CURRENT_WOOD_BONUS; ?></th>
<td><b><?php echo $bid6[$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>Clay bonus at level <?php echo $next; ?>:</th>
<td><b><?php echo $bid6[$next]['attri']; ?></b> Percent</td>
<th><?php echo CLAY_BONUS_LEVEL; ?> <?php echo $next; ?>:</th>
<td><b><?php echo $bid6[$next]['attri']; ?></b> <?php echo PERCENT; ?></td>
<?php
}else{
?>
<th>Clay bonus at level 5:</th>
<td><b><?php echo $bid6[5]['attri']; ?></b> Percent</td>
<th><?php echo CLAY_BONUS_LEVEL; ?> 5:</th>
<td><b><?php echo $bid6[5]['attri']; ?></b> <?php echo PERCENT; ?></td>
<?php
}}
?>
@@ -34,4 +34,4 @@ include("next.tpl");
<?php
include("upgrade.tpl");
?>
</p></div>
</p></div>