From: <var...@us...> - 2008-09-09 16:42:06
|
Revision: 6254 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6254&view=rev Author: vargenau Date: 2008-09-09 16:42:17 +0000 (Tue, 09 Sep 2008) Log Message: ----------- Make string translatable Modified Paths: -------------- trunk/lib/plugin/WatchPage.php Modified: trunk/lib/plugin/WatchPage.php =================================================================== --- trunk/lib/plugin/WatchPage.php 2008-09-09 16:40:25 UTC (rev 6253) +++ trunk/lib/plugin/WatchPage.php 2008-09-09 16:42:17 UTC (rev 6254) @@ -52,9 +52,9 @@ return in_array($page, $this->_explodePageList); } - // This could be expanded as in mediawiki to a list of each page with a remove button. + // This could be expanded as in Mediawiki to a list of each page with a remove button. function showWatchList($pagelist) { - return HTML::strong(HTML::tt(empty($pagelist) ? "<empty>" : $pagelist)); + return HTML::strong(HTML::tt(empty($pagelist) ? _("<empty>") : $pagelist)); } function addpagelist($page, $pagelist) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |