Update of /cvsroot/phpmp/phpMP/languages/english
In directory sc8-pr-cvs1:/tmp/cvs-serv26421/languages/english
Modified Files:
lang_main.php
Log Message:
Huge update to variable storage system. See the Changelong.
Index: lang_main.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/languages/english/lang_main.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** lang_main.php 2 May 2003 04:52:57 -0000 1.18
--- lang_main.php 9 May 2003 08:07:39 -0000 1.19
***************
*** 17,21 ****
// Note: Always escape single quote characters (') with a backslash (\).
//
! 'L_Welcome_to_Site' => 'Welcome to ' . $Config['site_name'] . '!',
'L_Home' => 'Home',
'L_Profile' => 'Profile',
--- 17,21 ----
// Note: Always escape single quote characters (') with a backslash (\).
//
! 'L_Welcome_to_Site' => 'Welcome to ' . $Config->get('site_name') . '!',
'L_Home' => 'Home',
'L_Profile' => 'Profile',
***************
*** 53,57 ****
// Other various parts of the templates.
//
! 'L_Powered_by_phpMP' => 'powered by phpMP ' . $Config['version'] . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.',
'L_Copyright' => 'All content is property of its respective owner. All rights reserved.'
--- 53,57 ----
// Other various parts of the templates.
//
! 'L_Powered_by_phpMP' => 'powered by phpMP ' . $Config->get('version') . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.',
'L_Copyright' => 'All content is property of its respective owner. All rights reserved.'
|