Update of /cvsroot/phpwiki/phpwiki/lib/plugin
In directory usw-pr-cvs1:/tmp/cvs-serv30219/phpwiki/lib/plugin
Modified Files:
_BackendInfo.php
Log Message:
sprintf fine-tuning for gettext
Index: _BackendInfo.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/lib/plugin/_BackendInfo.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** _BackendInfo.php 2001/12/16 18:33:25 1.3
--- _BackendInfo.php 2001/12/19 12:07:30 1.4
***************
*** 12,16 ****
function getDescription () {
! return _("Get debugging information for [pagename].");
}
--- 12,16 ----
function getDescription () {
! return sprintf(_("Get debugging information for %s."),'[pagename]');
}
***************
*** 49,53 ****
$pagedata = $backend->get_pagedata($page);
if (!$pagedata)
! $html .= QElement('p', sprintf(_("No pagedata for %s\n"), $page));
else {
ksort($pagedata);
--- 49,53 ----
$pagedata = $backend->get_pagedata($page);
if (!$pagedata)
! $html .= QElement('p', sprintf(_("No pagedata for %s"), $page) . "\n");
else {
ksort($pagedata);
|