]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Portland/templates/navbar.tmpl
Translate LikePages action (like the others)
[SourceForge/phpwiki.git] / themes / Portland / templates / navbar.tmpl
1 <?php // -*-php-*-
2 // rcs_id('$Id$');
3 ?>
4 <!-- The bottom navigation/search bar -->
5
6     <?php echo WikiLink(_("FindPage"), "button") ?> by searching
7     <?php if ($revision) { ?>
8       (or browse <?php echo Button(_("LikePages"), _("LikePages")) ?>)
9     <?php } ?>
10     <?php if ($user->isAdmin()) { ?>
11      <?php echo $SEP?><?php echo Button($page->get('locked') ? 'unlock' : 'lock')?>
12      <?php echo $SEP?><?php echo Button('remove') ?>
13     <?php } ?>
14    <hr />
15 <!-- I would like not to have to use these tables, and managed to
16      get this stuff to work more or less correctly using
17      CSSs float:left; and float:right;.  However float:right; seems
18      to cause MSIE4.01/NT to hang.
19      So, we use tables...  -->
20 <table summary="Toolbar 1: Navigation and user login."
21        class="toolbar" width="100%"
22        cellpadding="0" cellspacing="0" border="0"
23        id="actionbar">
24 <tr valign="baseline">
25   <td>
26    <?php echo WikiLink(_("RecentChanges"), "button") ?>
27     <?php if ($user->isAdmin()) { ?>
28      <?php echo $SEP?><?php echo WikiLink(_("PhpWikiAdministration"), "button") ?>
29     <?php } ?>
30   </td>
31   <td align="right">
32     <?php echo Template('signin') ?>
33   </td>
34 </tr></table>