Revision: 8019
http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8019&view=rev
Author: vargenau
Date: 2011-04-05 15:34:22 +0000 (Tue, 05 Apr 2011)
Log Message:
-----------
No need to translate that
Modified Paths:
--------------
trunk/themes/fusionforge/templates/pagelink.tmpl
Modified: trunk/themes/fusionforge/templates/pagelink.tmpl
===================================================================
--- trunk/themes/fusionforge/templates/pagelink.tmpl 2011-04-05 15:13:36 UTC (rev 8018)
+++ trunk/themes/fusionforge/templates/pagelink.tmpl 2011-04-05 15:34:22 UTC (rev 8019)
@@ -16,17 +16,17 @@
<tr><td width="100%" colspan="<?php echo $COLS ?>"> </td></tr>
<tr><td width="100%" colspan="<?php echo $COLS ?>"><table style="border-width: 1px; border-style: solid; border-color: black; font-weight: bold;" width="100%"><tr class="wikipaging">
<td class="wikipaging<?php echo $PREV ? "-enabled" : "-disabled" ?>" align="left">
- <?php echo $PREV ? HTML::a(array('href'=>$FIRST_LINK),_("|<<")) : _("|<<") ?>
+ <?php echo $PREV ? HTML::a(array('href'=>$FIRST_LINK), "|<<") : "|<<" ?>
- <?php echo $PREV ? HTML::a(array('href'=>$PREV_LINK),_("<< Prev")) : _("<<") ?>
+ <?php echo $PREV ? HTML::a(array('href'=>$PREV_LINK), "<< " . _("Prev")) : "<<" ?>
</td>
<td class="wikipaging-enabled" align="center">
<?php echo fmt(" - %d / %d - ", $ACTPAGE, $NUMPAGES) ?>
</td>
<td class="wikipaging<?php echo $NEXT ? "-enabled" : "-disabled" ?>" align="right">
- <?php echo $NEXT ? HTML::a(array('href'=>$NEXT_LINK),_("Next >>")) : _(">>") ?>
+ <?php echo $NEXT ? HTML::a(array('href'=>$NEXT_LINK), _("Next") . " >>") : ">>" ?>
- <?php echo $NEXT ? HTML::a(array('href'=>$LAST_LINK),_(">>|")) : _(">>|") ?>
+ <?php echo $NEXT ? HTML::a(array('href'=>$LAST_LINK), ">>|") : ">>|" ?>
</td>
</tr></table></td></tr>
<tr><td width="100%" colspan="<?php echo $COLS ?>"> </td></tr>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|