[phpMP-CVS] CVS: phpMP/languages/french lang_main.php,1.9,1.10
Status: Pre-Alpha
Brought to you by:
heimidal
From: Gordon P. H. <gph...@us...> - 2003-06-30 00:46:17
|
Update of /cvsroot/phpmp/phpMP/languages/french In directory sc8-pr-cvs1:/tmp/cvs-serv28977/languages/french Modified Files: lang_main.php Log Message: I updated the French lang_main to the English lang_main's standards. - GPHemsley Index: lang_main.php =================================================================== RCS file: /cvsroot/phpmp/phpMP/languages/french/lang_main.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** lang_main.php 29 Jun 2003 08:19:56 -0000 1.9 --- lang_main.php 30 Jun 2003 00:46:12 -0000 1.10 *************** *** 30,33 **** --- 30,34 ---- function Localization() { + global $Config; $this->lang = array( *************** *** 38,59 **** // 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', --- 39,61 ---- // Note: Always escape single quote characters (') with a backslash (\). // ! 'WELCOME_TO' => 'Bienvenue chez', ! 'HOME' => 'Accueil', ! 'PROFILE' => 'Profil', ! 'MODULES' => 'Modules', ! 'DOWNLOADS' => 'Téléchargements', ! 'USERNAME' => 'Nom d\'usager', ! 'USER_CP' => 'User CP', ! 'USER_CONTROL_PANEL' => 'Votre panneau de commande', ! 'E_MAIL' => 'Courriel', ! 'PASSWORD' => 'Mot de passe', ! 'CONFIRM' => 'Confirmez', ! 'REAL_NAME' => 'Prénom et Nom', ! 'LOCATION' => 'Location', ! 'REGISTER' => 'Enregistrer', ! 'MAIN_MENU' => 'Main Menu', ! 'USER_SETTINGS' => 'User Settings', ! 'ADMINISTRATION_AREA' => 'Section Administrative', ! 'REGISTER_A_USERNAME' => 'Enregistrez votre nom d\'usager', *************** *** 61,72 **** // 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.', --- 63,74 ---- // Below is language used almost specifically for auth. // ! 'LOGIN' => 'Ouvrir session', ! 'LOGOUT' => 'Fermer session', ! 'ACCOUNT_ACTIVATED' => 'Votre compte a été activé. Vous pouvez maintenant ouvrir une session.', ! 'REQUIRED_FIELD' => 'Ceci dénote de l\'information requise pour votre enregistrement', ! 'REGISTER_FINISHED' => 'Votre enregistrement a été traité. Un courriel expliquant l\'activation de votre compte sera envoyé à l\'adresse soumisse sous peu.', ! 'FORGOT_PASSWORD' => 'Avez-vous oubliez votre mot de pass?', ! 'NOT_LOGGED_IN' => 'Veuillez ouvrir une session via votre compte personel.', *************** *** 74,79 **** // 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) --- 76,81 ---- // Other various parts of the templates. // ! 'POWERED_BY' => 'Actionné par phpMP ' . $Config->get('version') . ' © 2003 <a href="http://phpmp.sourceforge.net/">phpMP Dev. Group</a>.', ! '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) |