|
From: Benjamin C. <bc...@us...> - 2001-08-06 03:28:35
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv20141
Modified Files:
index.php report.php strings-en.php
Log Message:
Use the localization strings
Index: index.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/index.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- index.php 2001/08/03 03:50:28 1.5
+++ index.php 2001/08/06 03:28:32 1.6
@@ -12,7 +12,7 @@
));
$t->set_block('content', 'statsblock', 'sblock');
$t->set_block('statsblock','row','rows');
-$t->set_var('TITLE','Home');
+$t->set_var('TITLE',$TITLE['home']);
if (USE_JPGRAPH) {
$t->set_var('sblock', '<img src="images.php" align="right">');
Index: report.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/report.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- report.php 2001/08/06 01:59:49 1.6
+++ report.php 2001/08/06 03:28:32 1.7
@@ -68,7 +68,7 @@
$t->set_file('content','report.html');
$t->set_var(array(
'projects' => build_select('Project', $projectid),
- 'TITLE' => 'Reporting'
+ 'TITLE' => $TITLE['reporting']
));
resolution_by_engineer($projectid);
Index: strings-en.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/strings-en.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- strings-en.php 2001/07/21 03:03:05 1.7
+++ strings-en.php 2001/08/06 03:28:32 1.8
@@ -49,7 +49,9 @@
'os' => 'Operating Systems',
'resolution' => 'Resolutions',
'status' => 'Statuses',
- 'user' => 'Users'
+ 'user' => 'Users',
+ 'home' => 'Home',
+ 'reporting' => 'Reporting'
);
?>
|