Update of /cvsroot/phpwebsite-comm/modules/poll/class
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12934/class
Modified Files:
admin.php
Log Message:
Corrected a few phases that were not being translated
Index: admin.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/poll/class/admin.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** admin.php 14 Oct 2007 22:34:25 -0000 1.7
--- admin.php 22 Feb 2008 04:00:35 -0000 1.8
***************
*** 101,105 ****
case 'editPoll':
! $title = ('Edit Poll');
$content = Poll_Admin::editPoll($poll);
break;
--- 101,105 ----
case 'editPoll':
! $title = dgettext('poll', 'Edit Poll');
$content = Poll_Admin::editPoll($poll);
break;
***************
*** 146,150 ****
if (is_array($result))
{
! $title = ('Edit Poll');
$content = Poll_Admin::editPoll($poll, FALSE, $result);
}
--- 146,150 ----
if (is_array($result))
{
! $title = dgettext('poll', 'Edit Poll');
$content = Poll_Admin::editPoll($poll, FALSE, $result);
}
***************
*** 167,171 ****
if (is_array($result))
{
! $template['TITLE'] = ('Edit Poll');
$template['CONTENT'] = Poll_Admin::editPoll($poll, TRUE, $result);
$content = PHPWS_Template::process($template, 'poll', 'admin.tpl');
--- 167,171 ----
if (is_array($result))
{
! $template['TITLE'] = dgettext('poll', 'Edit Poll');
$template['CONTENT'] = Poll_Admin::editPoll($poll, TRUE, $result);
$content = PHPWS_Template::process($template, 'poll', 'admin.tpl');
|