1/* 2 * Wininet 3 * French language support 4 * 5 * Copyright 2003 Mike McCormack for CodeWeavers 6 * Copyright 2003 Vincent Béron 7 * Copyright 2005 Jonathan Ernst 8 * Copyright 2009-2010 Frédéric Delanoy 9 * 10 * This library is free software; you can redistribute it and/or 11 * modify it under the terms of the GNU Lesser General Public 12 * License as published by the Free Software Foundation; either 13 * version 2.1 of the License, or (at your option) any later version. 14 * 15 * This library is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 18 * Lesser General Public License for more details. 19 * 20 * You should have received a copy of the GNU Lesser General Public 21 * License along with this library; if not, write to the Free Software 22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 23 */ 24 25/* UTF-8 */ 26#pragma code_page(65001) 27 28LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL 29 30STRINGTABLE 31{ 32 IDS_LANCONNECTION "LAN Connection" 33 IDS_CERT_CA_INVALID "The certificate is issued by an unknown or untrusted publisher." 34 IDS_CERT_DATE_INVALID "The date on the certificate is invalid." 35 IDS_CERT_CN_INVALID "The name on the certificate does not match the site." 36 IDS_CERT_ERRORS "There is at least one unspecified security problem with this certificate." 37 IDS_CERT_SUBJECT "Subject" 38 IDS_CERT_ISSUER "Issuer" 39 IDS_CERT_EFFECTIVE "Effective Date" 40 IDS_CERT_EXPIRATION "Expiration Date" 41 IDS_CERT_PROTOCOL "Security Protocol" 42 IDS_CERT_SIGNATURE "Signature Type" 43 IDS_CERT_ENCRYPTION "Encryption Type" 44 IDS_CERT_PRIVACY "Privacy Strength" 45 IDS_CERT_HIGH "High" 46 IDS_CERT_LOW "Low" 47 IDS_CERT_BITS "bits" 48} 49 50IDD_PROXYDLG DIALOGEX 36, 24, 220, 146 51STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 52CAPTION "Entrez le mot de passe réseau" 53FONT 8, "MS Shell Dlg" 54{ 55 LTEXT "Entrez votre nom d'utilisateur et votre mot de passe :", -1, 6, 6, 210, 15 56 LTEXT "Serveur mandataire", -1, 6, 26, 50, 18 57 LTEXT "Domaine", -1, 6, 46, 50, 18 58 LTEXT "Utilisateur", -1, 6, 66, 50, 18 59 LTEXT "Mot de passe", -1, 6, 86, 50, 18 60 LTEXT "", IDC_PROXY, 60, 26, 150, 14, 0 61 LTEXT "", IDC_REALM, 60, 46, 150, 14, 0 62 EDITTEXT IDC_USERNAME, 60, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP 63 EDITTEXT IDC_PASSWORD, 60, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD 64 CHECKBOX "&Enregistrer ce mot de passe (risqué)", IDC_SAVEPASSWORD, 65 60, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP 66 PUSHBUTTON "OK", IDOK, 90, 126, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 67 PUSHBUTTON "Annuler", IDCANCEL, 154, 126, 56, 14, WS_GROUP | WS_TABSTOP 68} 69 70IDD_AUTHDLG DIALOGEX 36, 24, 220, 146 71STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 72CAPTION "Authentification requise" 73FONT 8, "MS Shell Dlg" 74{ 75 LTEXT "Entrez votre nom d'utilisateur et votre mot de passe :", -1, 6, 6, 210, 15 76 LTEXT "Serveur", -1, 6, 26, 50, 18 77 LTEXT "Domaine", -1, 6, 46, 50, 18 78 LTEXT "Utilisateur", -1, 6, 66, 50, 18 79 LTEXT "Mot de passe", -1, 6, 86, 50, 18 80 LTEXT "", IDC_SERVER, 60, 26, 150, 14, 0 81 LTEXT "", IDC_REALM, 60, 46, 150, 14, 0 82 EDITTEXT IDC_USERNAME, 60, 66, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP 83 EDITTEXT IDC_PASSWORD, 60, 86, 150, 14, ES_AUTOHSCROLL | WS_BORDER | WS_TABSTOP | ES_PASSWORD 84 CHECKBOX "&Enregistrer ce mot de passe (risqué)", IDC_SAVEPASSWORD, 85 60, 106, 150, 12, BS_AUTOCHECKBOX | WS_GROUP | WS_TABSTOP 86 PUSHBUTTON "OK", IDOK, 90, 126, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 87 PUSHBUTTON "Annuler", IDCANCEL, 154, 126, 56, 14, WS_GROUP | WS_TABSTOP 88} 89 90IDD_INVCERTDLG DIALOGEX 3, 24, 250, 86 91STYLE DS_SHELLFONT | DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU 92CAPTION "Alerte de sécurité" 93FONT 8, "MS Shell Dlg" 94{ 95 LTEXT "Le certificat pour ce site pose problème.", -1, 40, 6, 200, 20 96 LTEXT "", IDC_CERT_ERROR, 40, 26, 200, 20 97 LTEXT "Voulez-vous tout de même continuer ?", -1, 40, 46, 200, 20 98 PUSHBUTTON "Oui", IDOK, 40, 66, 56, 14, WS_GROUP | WS_TABSTOP | BS_DEFPUSHBUTTON 99 PUSHBUTTON "Non", IDCANCEL, 100, 66, 56, 14, WS_GROUP | WS_TABSTOP 100} 101