CC-1960: Internationalize Airtime / Support translations

-navigation bar was not showing localized text -fixed
This commit is contained in:
denise 2012-11-22 18:15:54 -05:00
parent dd0e71efcc
commit 4804685dfd
1 changed files with 3 additions and 3 deletions

View File

@ -4,18 +4,18 @@
<li class="top <?php if($page->isActive(true)){echo 'active';} ?>">
<?php if($page->hasPages()) : ?>
<a class="top_link" href="<?php echo $page->getHref(); ?>">
<span class="down"><?php echo $page->getLabel(); ?></span>
<span class="down"><?php echo _($page->getLabel()); ?></span>
</a>
<ul class="sub">
<?php foreach ($page->getPages() as $sub) : ?>
<li>
<a href="<?php echo $sub->getHref(); ?>" <?php echo ($sub->getTarget() != "")?"target=\"".$sub->getTarget()."\"":""; ?>><?php echo $sub->getLabel(); ?></a>
<a href="<?php echo $sub->getHref(); ?>" <?php echo ($sub->getTarget() != "")?"target=\"".$sub->getTarget()."\"":""; ?>><?php echo _($sub->getLabel()); ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php else: ?>
<a class="top_link" href="<?php echo $page->getHref(); ?>">
<span><?php echo $page->getLabel(); ?></span>
<span><?php echo _($page->getLabel()); ?></span>
</a>
<?php endif; ?>
</li>