|
From: Jonathan H. <the...@us...> - 2002-01-29 22:46:20
|
Update of /cvsroot/phpbb/phpBB2/language/lang_english In directory usw-pr-cvs1:/tmp/cvs-serv5042/language/lang_english Modified Files: lang_admin.php Log Message: Some additional error checking in the install to make sure that the server's php configuration is going to work with phpBB2.. (two new lines in lang_admin.php sorry translators, & please don't shoot me Paul :D ) Index: lang_admin.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/lang_admin.php,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -r1.28 -r1.29 *** lang_admin.php 2002/01/28 02:44:26 1.28 --- lang_admin.php 2002/01/29 22:46:16 1.29 *************** *** 698,704 **** $lang['Install_Method'] = "Choose your installation method"; // // That's all Folks! // ------------------------------------------------- ! ?> \ No newline at end of file --- 698,708 ---- $lang['Install_Method'] = "Choose your installation method"; + $lang['Install_No_Ext'] = "The php configuration on your server doesn't support the database type that you choose"; + + $lang['Install_No_PCRE'] = "phpBB2 Requires the Perl-Compatible Regular Expressions Module for php which your php configuration doesn't appear to support!"; + // // That's all Folks! // ------------------------------------------------- ! ?> |