From: <var...@us...> - 2011-04-05 15:13:42
|
Revision: 8018 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=8018&view=rev Author: vargenau Date: 2011-04-05 15:13:36 +0000 (Tue, 05 Apr 2011) Log Message: ----------- No need to translate that Modified Paths: -------------- trunk/themes/default/templates/pagelink.tmpl Modified: trunk/themes/default/templates/pagelink.tmpl =================================================================== --- trunk/themes/default/templates/pagelink.tmpl 2011-04-05 14:16:50 UTC (rev 8017) +++ trunk/themes/default/templates/pagelink.tmpl 2011-04-05 15:13:36 UTC (rev 8018) @@ -15,16 +15,16 @@ ?> <tr><td width="100%" colspan="<?php echo $COLS ?>"><table 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> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |