Update of /cvsroot/phpwebsite-comm/modules/rssfeeds/boost
In directory sc8-pr-cvs1:/tmp/cvs-serv29784
Modified Files:
install.php
Log Message:
Updated Language Translation
Index: install.php
===================================================================
RCS file: /cvsroot/phpwebsite-comm/modules/rssfeeds/boost/install.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** install.php 19 Oct 2003 01:15:43 -0000 1.2
--- install.php 19 Oct 2003 22:12:23 -0000 1.3
***************
*** 18,22 ****
/* if successful, report the fact */
! $content = "All RSS Feeds tables successfully written.<br />";
$status = 1;
--- 18,22 ----
/* if successful, report the fact */
! $content = $_SESSION['translate']->it("All RSS Feeds tables successfully written.") . "<br />";
$status = 1;
***************
*** 24,28 ****
if(isset($_SESSION["OBJ_help"])) {
CLS_help::setup_help("rssfeeds");
! $content .= "RSS Feeds successfully registered with Help system.<br />";
}
--- 24,28 ----
if(isset($_SESSION["OBJ_help"])) {
CLS_help::setup_help("rssfeeds");
! $content .= $_SESSION['translate']->it("RSS Feeds successfully registered with Help system.") . "<br />";
}
***************
*** 35,49 ****
$search['view_string'] = "&RSS_MAN_op=sView&RSS_id=";
$search['show_block'] = 1;
! $search['block_title'] = "News Feeds";
if(!$GLOBALS['core']->sqlInsert($search, "mod_search_register")) {
! $content .= "RSS Feeds NOT registered with Search system.<br />";
} else {
! $content .= "RSS Feeds successfully registered with Search system.<br />";
}
/* end of search section */
} else {
! $content .= "Unable to write to the database.<br />";
$status = 0;
}
--- 35,49 ----
$search['view_string'] = "&RSS_MAN_op=sView&RSS_id=";
$search['show_block'] = 1;
! $search['block_title'] = $_SESSION['translate']->it("News Feeds");
if(!$GLOBALS['core']->sqlInsert($search, "mod_search_register")) {
! $content .= $_SESSION['translate']->it("RSS Feeds NOT registered with Search system.") . "<br />";
} else {
! $content .= $_SESSION['translate']->it("RSS Feeds successfully registered with Search system.") . "<br />";
}
/* end of search section */
} else {
! $content .= $_SESSION['translate']->it("Unable to write to the database.") . "<br />";
$status = 0;
}
|