Update of /cvsroot/phpmp/phpMP/languages/english
In directory sc8-pr-cvs1:/tmp/cvs-serv26704
Modified Files:
lang_main.php
Log Message:
Started updating the language file after changing from config array to constants. SOME WERE MISSED ON PURPOSE.
Index: lang_main.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/languages/english/lang_main.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** lang_main.php 12 Aug 2002 01:08:29 -0000 1.4
--- lang_main.php 30 Nov 2002 11:06:36 -0000 1.5
***************
*** 37,44 ****
function Language() {
- global $MPCONF;
-
$this->lang['l_home'] = 'Home';
! $this->lang['l_nav_bar'] = '<a href="' . $MPCONF['GEN']['uri'] . 'index.php">home</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'features.php">features</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'forums/index.php">forums</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'downloads.php">downloads</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'support.php">support</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'about.php">about</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'team.php">team</a> <font color="#0a4a67">•</font> <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpmp/phpMP/">cvs</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'devworld/modules/index.php?action=list">modules</a> <font color="#0a4a67">•</font> <a href="http://www.sourceforge.net/">sourceforge</a>';
$this->lang['l_username'] = 'Username';
--- 37,42 ----
function Language() {
$this->lang['l_home'] = 'Home';
! $this->lang['l_nav_bar'] = '<a href="' . REL_PATH . 'index.php">home</a> <font color="#0a4a67">•</font> <a href="' . REL_PATH . 'features.php">features</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'forums/index.php">forums</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'downloads.php">downloads</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'support.php">support</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'about.php">about</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'team.php">team</a> <font color="#0a4a67">•</font> <a href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/phpmp/phpMP/">cvs</a> <font color="#0a4a67">•</font> <a href="' . $MPCONF['GEN']['uri'] . 'devworld/modules/index.php?action=list">modules</a> <font color="#0a4a67">•</font> <a href="http://www.sourceforge.net/">sourceforge</a>';
$this->lang['l_username'] = 'Username';
***************
*** 52,58 ****
$this->lang['l_required_field'] = 'Denotes a Requires Field';
$this->lang['l_register_fin'] = 'Your registration has been proccessed. Please check your e-mail for a message explaining how to activate your new account.';
! $this->lang['l_fin_register_subject'] = 'Welcome to ' . $MPCONF['TPL']['sitename'] . '!';
$this->lang['l_fin_register_message'] = '
! $temp_message = "Welcome to {$MPCONF[\'TPL\'][\'sitename\']}!
To complete your registration, please click on the link below. You will be unable to log in until you do so.
--- 50,56 ----
$this->lang['l_required_field'] = 'Denotes a Requires Field';
$this->lang['l_register_fin'] = 'Your registration has been proccessed. Please check your e-mail for a message explaining how to activate your new account.';
! $this->lang['l_fin_register_subject'] = 'Welcome to ' . SITE_NAME . '!';
$this->lang['l_fin_register_message'] = '
! $temp_message = "Welcome to " . SITE_NAME . "!
To complete your registration, please click on the link below. You will be unable to log in until you do so.
***************
*** 75,79 ****
$this->lang['l_not_logged_in'] = 'You are not logged in.';
! $this->lang['l_powered_by'] = 'powered by phpMP ' . $MPCONF['GEN']['version'] . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.';
$this->lang['l_copyright'] = 'All content is property of its respective owner. All rights reserved.';
--- 73,77 ----
$this->lang['l_not_logged_in'] = 'You are not logged in.';
! $this->lang['l_powered_by'] = 'powered by phpMP ' . VERSION . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.';
$this->lang['l_copyright'] = 'All content is property of its respective owner. All rights reserved.';
***************
*** 82,84 ****
}
! ?>
\ No newline at end of file
--- 80,82 ----
}
! ?>
|