1LANGUAGE LANG_FRENCH, SUBLANG_NEUTRAL 2 3IDR_BROWSE_MAIN_MENU MENU 4{ 5 POPUP "&Fichier" 6 { 7 POPUP "&Nouveau" 8 { 9 MENUITEM "&Fenêtre", ID_BROWSE_NEW_WINDOW 10 } 11 MENUITEM "&Ouvrir...", ID_BROWSE_OPEN 12 MENUITEM "&Enregistrer", ID_BROWSE_SAVE 13 MENUITEM "Enregistrer &sous...", ID_BROWSE_SAVE_AS 14 MENUITEM SEPARATOR 15 MENUITEM "&Format d'impression...", ID_BROWSE_PRINT_FORMAT 16 MENUITEM "&Imprimer...", ID_BROWSE_PRINT 17 MENUITEM "&Aperçu de l'impression", ID_BROWSE_PRINT_PREVIEW 18 MENUITEM SEPARATOR 19 MENUITEM "&Propriétés", ID_BROWSE_PROPERTIES 20 MENUITEM "Fe&rmer", ID_BROWSE_QUIT 21 } 22 POPUP "&Affichage" 23 { 24 POPUP "&Barres d'outils" 25 { 26 MENUITEM "Barre &standard", ID_BROWSE_BAR_STD 27 MENUITEM "Barre d'a&dresse", ID_BROWSE_BAR_ADDR 28 } 29 } 30 POPUP "&Favoris" 31 { 32 MENUITEM "&Ajouter aux favoris...", ID_BROWSE_ADDFAV 33 MENUITEM SEPARATOR 34 } 35 POPUP "A&ide" 36 { 37 MENUITEM "À propos d'&Internet Explorer", ID_BROWSE_ABOUT 38 } 39} 40 41STRINGTABLE 42{ 43 IDS_INTERNET "Navigateur Internet" 44 IDS_INTERNET_DESCRIPTION "Opens a Web browser and displays information on the Internet." 45 46 IDS_TB_BACK "Précédent" 47 IDS_TB_FORWARD "Suivant" 48 IDS_TB_STOP "Arrêter" 49 IDS_TB_REFRESH "Rafraîchir" 50 IDS_TB_HOME "Accueil" 51 IDS_TB_PRINT "Imprimer..." 52} 53 54STRINGTABLE 55{ 56 IDS_ADDRESS "Adresse" 57} 58 59STRINGTABLE 60{ 61 IDS_FINDINGRESOURCE "Recherche de %s" 62 IDS_BEGINDOWNLOADDATA "Démarrage du téléchargement de %s" 63 IDS_ENDDOWNLOADDATA "Téléchargement de %s" 64 IDS_SENDINGREQUEST "Envoie d'une demande pour %s" 65} 66 67 68IDD_BROWSE_OPEN DIALOGEX 10, 10, 200, 70 69STYLE DS_SHELLFONT | DS_MODALFRAME | WS_CAPTION 70CAPTION "Ouvrir une URL" 71FONT 8, "MS Shell Dlg" 72{ 73 LTEXT "Spécifiez l'URL que vous désirez ouvrir dans Internet Explorer",-1, 35,5,160,25 74 LTEXT "Ouvrir :", -1, 5, 32, 30, 15 75#ifdef __REACTOS__ 76 ICON IDC_PAGEICO, IDC_PAGEICO, 2, 5, 21, 20, SS_ICON 77#endif 78 EDITTEXT IDC_BROWSE_OPEN_URL, 35, 30, 160, 13 79 DEFPUSHBUTTON "OK", IDOK, 90, 50, 50, 14 80 PUSHBUTTON "Annuler", IDCANCEL, 145, 50, 50, 14 81} 82