Update of /cvsroot/mantisbt/mantisbt/admin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21917
Modified Files:
install.php
Log Message:
Improve some user interface strings in install.php (capitalization,
punctuation, typos).
Index: install.php
===================================================================
RCS file: /cvsroot/mantisbt/mantisbt/admin/install.php,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- install.php 18 Feb 2006 04:21:58 -0000 1.25
+++ install.php 21 Mar 2006 18:02:23 -0000 1.26
@@ -142,7 +142,7 @@
<!-- Check PHP Version -->
<tr>
<td bgcolor="#ffffff">
- Checking PHP Version (Your version is <?php echo phpversion();
?>)
+ Checking PHP version (your version is <?php echo phpversion();
?>)
</td>
<?php
if (phpversion() == '4.0.6') {
@@ -152,17 +152,17 @@
if ( version_compare ( phpversion() , '4.0.6',
'>=' ) ) {
print_test_result( GOOD );
} else {
- print_test_result( BAD, true, 'Upgrade
the version of PHP to a more recent version' );
+ print_test_result( BAD, true, 'Upgrade
to a more recent version of PHP' );
}
} else {
- print_test_result( BAD, true, 'Upgrade the
version of PHP to a more recent version' );
+ print_test_result( BAD, true, 'Upgrade to a
more recent version of PHP' );
}
}
?>
</tr>
<!-- Check Safe Mode -->
-<?php print_test( 'Checking If Safe mode is enabled for install script',
+<?php print_test( 'Checking if safe mode is enabled for install script',
! ini_get ( 'SAFE_MODE' ),
true,
'Disable safe_mode in php.ini before proceeding' ) ?>
@@ -288,7 +288,7 @@
case 'mysqli':
if ( function_exists ( 'version_compare' ) ) {
if ( version_compare (
$t_version_info['version'] , '4.1.0', '>' ) ) {
- $t_warning = 'Please ensure
that you installation supports the new password scheme used in MySQL 4.1.0 and
later. See ' .
+ $t_warning = 'Please ensure
that your installation supports the new password scheme used in MySQL 4.1.0 and
later. See ' .
'<a
href="http://dev.mysql.com/doc/mysql/en/password-hashing.html">http://dev.mysql.com/doc/mysql/en/password-hashing.html</a>.';
}
}
@@ -562,7 +562,7 @@
if ( $f_log_queries ) {
# add a query to set the database version
echo 'INSERT INTO mantis_config_table ( value, type,
access_reqd, config_id, project_id, user_id ) VALUES (\'' . $lastid . '\', 1,
90, \'database_version\', 20, 0 );' . "\r\n";
- echo '</pre></br /><p style="color:red">Your database
has not been created yet. Please create the database, then install the tables
and data using the information above before proceeding</td></tr>';
+ echo '</pre></br /><p style="color:red">Your database
has not been created yet. Please create the database, then install the tables
and data using the information above before proceeding.</td></tr>';
}
}
@@ -654,7 +654,7 @@
<?php
if ( true == $t_write_failed ) {
echo '<tr><table width="50%" border="0" cellpadding="10"
cellspacing="1" align="center">';
- echo '<tr><td>Please add the following lines to ' .
$g_absolute_path . 'config_inc.php before continuing to the database upgrade
check</td></tr>';
+ echo '<tr><td>Please add the following lines to ' .
$g_absolute_path . 'config_inc.php before continuing to the database upgrade
check:</td></tr>';
echo '<tr><td><pre>' . htmlentities( $t_config ) .
'</pre></td></tr></table></tr>';
}
?>
@@ -816,4 +816,4 @@
</form>
</body>
-</html>
\ No newline at end of file
+</html>
-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
|