[phpMP-CVS] CVS: phpMP/languages/french lang_main.php,1.2,1.3
Status: Pre-Alpha
Brought to you by:
heimidal
From: Christopher C. <top...@us...> - 2002-12-04 16:09:25
|
Update of /cvsroot/phpmp/phpMP/languages/french In directory sc8-pr-cvs1:/tmp/cvs-serv31366/languages/french Modified Files: lang_main.php Log Message: Convert fr language file to new format. Escape single-quotes requiring escaping. Aesthetic cleanups. Index: lang_main.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/languages/french/lang_main.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** lang_main.php 3 Dec 2002 10:25:44 -0000 1.2 --- lang_main.php 4 Dec 2002 16:09:21 -0000 1.3 *************** *** 9,33 **** { // // General language used throughout site. // ! $this->lang['Welcome_to_Site'] = 'Bienvenue chez ' . SITE_NAME . '!'; ! $this->lang['Home'] = 'Accueil'; ! $this->lang['Profile'] = 'Profil'; ! $this->lang['Modules'] = 'Modules'; ! $this->lang['Downloads'] = 'Téléchargements'; ! $this->lang['Username'] = 'Nom d\'usager'; ! $this->lang['User_CP'] = 'User CP'; ! $this->lang['User_Control_Panel'] = 'Votre panneau de commande'; ! $this->lang['E-mail'] = 'Courriel'; ! $this->lang['Password'] = 'Mot de passe'; ! $this->lang['Confirm'] = 'Confirmez'; ! $this->lang['Real Name'] = 'Prénom et Nom'; ! $this->lang['Location'] = 'Location'; ! $this->lang['Register'] = 'Enregistrer'; ! $this->lang['Welcome'] = 'Bienvenue'; ! $this->lang['Administration_Area'] = 'Section Administrative'; ! $this->lang['Register_a_Username'] = 'Enregistrez votre nom d\'usager'; --- 9,37 ---- { + $lang = array( + // // General language used throughout site. // ! // Note: Always escape single quote characters (') with a backslash (\). ! // ! 'L_Welcome_to_Site' => 'Bienvenue chez ' . 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', *************** *** 35,53 **** // Below is language used almost specifically for auth. // ! $this->lang['Login'] = 'Ouvrir session'; ! $this->lang['Logout'] = 'Fermer session'; ! $this->lang['Account_Activated'] = 'Votre compte a été activé. Vous pouvez maintenant ouvrir une session.'; ! $this->lang['Required_Field'] = 'Ceci dénote de l\'information requise pour votre enregistrement'; ! $this->lang['Registration_Finished'] = 'Votre enregistrement a été traité. Un courriel expliquant l'activation de votre compte sera envoyé à l'adresse soumisse sous peu.'; ! $this->lang['Forgot_Password'] = 'Avez-vous oubliez votre mot de pass?'; ! $this->lang['You_are_not_logged_in'] = 'Veuillez ouvrir une session via votre compte personel.'; // ! // Other various language stuff. // ! $this->lang['Powered_by_phpMP'] = 'Actionné par phpMP ' . VERSION . ' © 2002 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.'; ! $this->lang['Copyright'] = 'Tout le contenu de se site est la propriété du propriétaire respectif. Tous droits réservés.'; } --- 39,62 ---- // 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 ' . 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. ! ! ); } |