mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-08-12 22:31:02 +00:00
Merge pull request #157 from armando1980/patch-53
fix lang tempalte/build by: Armando
This commit is contained in:
+10
-10
@@ -2,16 +2,16 @@
|
|||||||
include("next.tpl");
|
include("next.tpl");
|
||||||
?>
|
?>
|
||||||
<div id="build" class="gid7"><a href="#" onClick="return Popup(7,4);" class="build_logo">
|
<div id="build" class="gid7"><a href="#" onClick="return Popup(7,4);" class="build_logo">
|
||||||
<img class="building g7" src="img/x.gif" alt="Iron Foundry" title="Iron Foundry" />
|
<img class="building g7" src="img/x.gif" alt="Iron Foundry" title="<?php echo IRONFOUNDRY; ?>" />
|
||||||
</a>
|
</a>
|
||||||
<h1>Iron Foundry <span class="level">Level <?php echo $village->resarray['f'.$id]; ?></span></h1>
|
<h1><?php echo IRONFOUNDRY; ?> <span class="level"><?php echo LEVEL; ?> <?php echo $village->resarray['f'.$id]; ?></span></h1>
|
||||||
<p class="build_desc">Iron is smelted here. Based on its level your Iron Foundry can increase your iron production by up to 25 percent.</p>
|
<p class="build_desc"><?php echo IRONFOUNDRY_DESC; ?></p>
|
||||||
|
|
||||||
|
|
||||||
<table cellpadding="1" cellspacing="1" id="build_value">
|
<table cellpadding="1" cellspacing="1" id="build_value">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Current iron bonus:</th>
|
<th><?php echo CURRENT_IRON_BONUS; ?></th>
|
||||||
<td><b><?php echo $bid7[$village->resarray['f'.$id]]['attri']; ?></b> Percent</td>
|
<td><b><?php echo $bid7[$village->resarray['f'.$id]]['attri']; ?></b> <?php echo PERCENT; ?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<?php
|
<?php
|
||||||
@@ -19,13 +19,13 @@ include("next.tpl");
|
|||||||
$next = $village->resarray['f'.$id]+1+$loopsame+$doublebuild+$master;
|
$next = $village->resarray['f'.$id]+1+$loopsame+$doublebuild+$master;
|
||||||
if($next<=5){
|
if($next<=5){
|
||||||
?>
|
?>
|
||||||
<th>Iron bonus at level <?php echo $next; ?>:</th>
|
<th><?php echo IRON_BONUS_LEVEL; ?> <?php echo $next; ?>:</th>
|
||||||
<td><b><?php echo $bid7[$next]['attri']; ?></b> Percent</td>
|
<td><b><?php echo $bid7[$next]['attri']; ?></b> <?php echo PERCENT; ?></td>
|
||||||
<?php
|
<?php
|
||||||
}else{
|
}else{
|
||||||
?>
|
?>
|
||||||
<th>Iron bonus at level 5:</th>
|
<th><?php echo IRON_BONUS_LEVEL; ?> 5:</th>
|
||||||
<td><b><?php echo $bid7[5]['attri']; ?></b> Percent</td>
|
<td><b><?php echo $bid7[5]['attri']; ?></b> <?php echo PERCENT; ?></td>
|
||||||
<?php
|
<?php
|
||||||
}}
|
}}
|
||||||
?>
|
?>
|
||||||
@@ -34,4 +34,4 @@ include("next.tpl");
|
|||||||
<?php
|
<?php
|
||||||
include("upgrade.tpl");
|
include("upgrade.tpl");
|
||||||
?>
|
?>
|
||||||
</p></div>
|
</p></div>
|
||||||
|
|||||||
Reference in New Issue
Block a user