Update of /cvsroot/phpmp/phpMP/languages/french
In directory sc8-pr-cvs1:/tmp/cvs-serv10648/languages/french
Modified Files:
lang_main.php
Log Message:
Still correctly the problem with the linebreaks. :-\
Index: lang_main.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/languages/french/lang_main.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** lang_main.php 4 Feb 2003 21:43:30 -0000 1.6
--- lang_main.php 8 Feb 2003 09:43:29 -0000 1.7
***************
*** 1 ****
! <?php
class Localization
{
var $lang;
function Localization()
{
$this->lang = array(
//
// General language used throughout site.
//
// Note: Always escape single quote characters (') with a backslash (\).
//
'L_Welcome_to_Site' => 'Bienvenue chez ' . C_SITE_NAME . '!',
'L_Home' => 'Accueil',
'L_Profile' => 'Profil',
'L_Modules' => 'Modules',
'L_Downloads' => 'Téléchargements',
'L_Username' => 'Nom d\'usager',
'L_User_CP' => 'User CP',
'L_User_Control_Panel' => 'Votre panneau de commande',
'L_E-mail' => 'Courriel',
'L_Password' => 'Mot de passe',
'L_Comfirm' => 'Confirmez',
'L_Real Name' => 'Prénom et Nom',
'L_Location' => 'Location',
'L_Register' => 'Enregistrer',
'L_Welcome' => 'Bienvenue',
'L_Administration_Area' => 'Section Administrative',
'L_Register_a_Username' => 'Enregistrez votre nom d\'usager',
//
// Below is language used almost specifically for auth.
//
'L_Login' => 'Ouvrir session',
'L_Logout' => 'Fermer session',
'L_Account_Activated' => 'Votre compte a été activé. Vous pouvez maintenant ouvrir une session.',
'L_Required_Field' => 'Ceci dénote de l\'information requise pour votre enregistrement',
'L_Register_Finished' => 'Votre enregistrement a été traité. Un courriel expliquant l\'activation de votre compte sera envoyé à l\'adresse soumisse sous peu.',
'L_Forgot_Password' => 'Avez-vous oubliez votre mot de pass?',
'L_Not_logged_in' => 'Veuillez ouvrir une session via votre compte personel.',
//
// Other various parts of the templates.
//
'L_Powered_by_phpMP' => 'Actionné par phpMP ' . C_VERSION . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.',
'L_Copyright' => 'Tout le contenu de se site est la propriété du propriétaire respectif. Tous droits réservés.'
// It is IMPERATIVE that the last array value entered (usually the copyright)
// does not end in a comma.
);
}
}
?>
\ No newline at end of file
--- 1,66 ----
! <?php
!
! class Localization
! {
!
! var $lang;
!
! function Localization()
! {
!
! $this->lang = array(
!
! //
! // General language used throughout site.
! //
! // Note: Always escape single quote characters (') with a backslash (\).
! //
! 'L_Welcome_to_Site' => 'Bienvenue chez ' . C_SITE_NAME . '!',
! 'L_Home' => 'Accueil',
! 'L_Profile' => 'Profil',
! 'L_Modules' => 'Modules',
! 'L_Downloads' => 'Téléchargements',
! 'L_Username' => 'Nom d\'usager',
! 'L_User_CP' => 'User CP',
! 'L_User_Control_Panel' => 'Votre panneau de commande',
! 'L_E-mail' => 'Courriel',
! 'L_Password' => 'Mot de passe',
! 'L_Comfirm' => 'Confirmez',
! 'L_Real Name' => 'Prénom et Nom',
! 'L_Location' => 'Location',
! 'L_Register' => 'Enregistrer',
! 'L_Welcome' => 'Bienvenue',
!
! 'L_Administration_Area' => 'Section Administrative',
! 'L_Register_a_Username' => 'Enregistrez votre nom d\'usager',
!
!
! //
! // Below is language used almost specifically for auth.
! //
! 'L_Login' => 'Ouvrir session',
! 'L_Logout' => 'Fermer session',
!
! 'L_Account_Activated' => 'Votre compte a été activé. Vous pouvez maintenant ouvrir une session.',
! 'L_Required_Field' => 'Ceci dénote de l\'information requise pour votre enregistrement',
! 'L_Register_Finished' => 'Votre enregistrement a été traité. Un courriel expliquant l\'activation de votre compte sera envoyé à l\'adresse soumisse sous peu.',
! 'L_Forgot_Password' => 'Avez-vous oubliez votre mot de pass?',
! 'L_Not_logged_in' => 'Veuillez ouvrir une session via votre compte personel.',
!
!
! //
! // Other various parts of the templates.
! //
! 'L_Powered_by_phpMP' => 'Actionné par phpMP ' . C_VERSION . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.',
! 'L_Copyright' => 'Tout le contenu de se site est la propriété du propriétaire respectif. Tous droits réservés.'
!
! // It is IMPERATIVE that the last array value entered (usually the copyright)
! // does not end in a comma.
!
! );
!
! }
!
! }
!
! ?>
\ No newline at end of file
|