|
|
#include "custom.rcv" #include "resource.h" #include "winver.h" #include "ntverp.h" #include "windows.h"
IDR_MAINMENU MENU DISCARDABLE BEGIN POPUP "&File" BEGIN MENUITEM "&New", IDM_FILENEW MENUITEM "&Open...", IDM_FILEOPEN MENUITEM SEPARATOR MENUITEM "&Save", IDM_FILESAVE MENUITEM "Save &As...", IDM_FILESAVEAS MENUITEM SEPARATOR MENUITEM "E&xit", IDM_FILEEXIT END POPUP "&Policy" BEGIN MENUITEM "&Import", IDM_ADMIMPORT MENUITEM "&Delete", IDM_ADMDELETE MENUITEM "&Check Duplicate Keys" IDM_CHKDUPKEYS END POPUP "Ma&nage" BEGIN MENUITEM "&All Policies", IDM_PLATFORM_WIN32, CHECKED MENUITEM "&Non-Admin Policies" IDM_PLATFORM_W2K END POPUP "&Help" BEGIN MENUITEM "&Contents and Index\tF1", IDM_HELP END
END
STRINGTABLE PRELOAD BEGIN IDS_TITLE "IEAK 6 Profile Manager" IDS_TITLE1 "IEAK 6 Profile Manager - Untitled" IDS_TITLE2 "IEAK 6 Profile Manager - %s" IDS_SAVE "Would you like to save changes to %s?" IDS_UNTITLED "Untitled" IDS_ERRDLL "Error: could not load insedit.dll" IDS_ADMDELWARN "Are you sure you wish to delete this file?" IDS_WIZARDBRANCHTEXT "The settings listed in the left-hand pane under this branch are the same settings you made when you ran the wizard.\r\nYou can import an .INS file that has these settings preset in them, but this .INS file also specifies other files that will need to be modified. If you make changes here, they will be reflected in all files necessary to deploy the updated package.\r\nTo begin using the Profile Manager, you must open an existing .INS or create a new one using the File menu." IDS_NOPOLICYFILE "No policy files found" IDS_OPENFILEMSG "Opening file..." IDS_SAVEFILEMSG "Saving file..." IDS_IMPORTADMFILEMSG "Importing policy template file..." IDS_READYMSG "Ready" IDS_LOADADMFILEMSG "Loading policy template files..." IDS_CHKDUPKEYMSG "Checking for duplicate keys..." IDS_WIZARDSETTINGS "Wizard Settings" IDS_POLICYSETTINGS "Policies and Restrictions" IDS_INSFILTERNAME "INS Files" IDS_LANGUAGE "Language" IDS_NOIE "You must have Internet Explorer 6 installed before using IEAK 6. You can install from the original CD or visit http://www.microsoft.com/ie." IDS_WIZARDBRANCHTITLE "Wizard Settings" IDS_DSCRWNDFAIL "Failed to create description window. You may not be able to view any system policies." IDS_WRONGIE "You must install Internet Explorer Version 3.0 or later to use the IEAK's HTML Help." IDS_FILENOTFOUND "Cannot open file %s.\nFile not found." IDS_CABSIGN_ERROR "The following file(s) could not be signed: \r\n %s" IDS_INVALIDEXTN "The filename specified should have a .ins extension." IDS_CHECKFOREXCHAR "You have selected Windows 3.1/WFW/NT 3.51 platform and extended characters in file paths are not legal. The Profile Manager will now search for extended characters. If extended characters are found, the platform will not be switched and you will be notified of where the violation occurs." IDS_STATUS "\n Status : %s" IDS_CABSURLPATH "\n Cabs URL Path : %s" IDS_VERSIONINFO "\n Version Information : %s" IDS_PROFILE_DIRTY "Profile not saved" IDS_PROFILE_NOCHANGE "Profile unchanged" IDS_NOTAVAILABLE "Not Available" IDS_COMINITFAILURE "Failed to initialize the COM library." IDS_NOLANGDIR "You cannot use the Profile Manager for this configuration because you have not downloaded the necessary files for the %1 platform. To download these files, you must run Automatic Version Synchronization for a particular language and platform in the IE Customization Wizard." IDS_NOPLATFORMDIR "You cannot use the Profile Manager for this configuration because you have not downloaded the necessary files for the %1 platform and %2 language. To download these files, you must run Automatic Version Synchronization for this language and platform in the IE Customization Wizard." IDS_WIN32 "Windows 95/NT 4.0" IDS_INSUFFICIENT_DISKSPACE "There is not enough disk space to copy the files.\r\n\r\nDisk space required = %1!lu! KB\r\nDisk space available = %2!lu! KB\r\n\r\nIt is recommended that you free up the required disk space before you continue.\r\n\r\nDo you want to continue?" IDS_CAB_DOESNOTEXIST "Cannot open file %1.\r\nThe following associated file(s) could not be found.\r\n%2" IDS_W2K "Windows 2000" END
///////////////////////////////////////////////////////////////////////////// // // Icon //
// Icon with lowest ID value placed first to ensure application icon // remains consistent on all systems. IDI_ICON1 ICON DISCARDABLE "insedit.ico" IDI_ICON2 ICON DISCARDABLE "insopen.ico" IDI_ICON3 ICON DISCARDABLE "insclose.ico" IDI_ICON4 ICON DISCARDABLE "leafitem.ico" IDI_ICON5 ICON DISCARDABLE "policyop.ico" IDI_ICON6 ICON DISCARDABLE "policycl.ico" IDI_ICON7 ICON DISCARDABLE "admopen.ico" IDI_ICON8 ICON DISCARDABLE "admclose.ico" IDI_ICON9 ICON DISCARDABLE "insleaf.ico"
///////////////////////////////////////////////////////////////////////////// // // Dialog //
IDD_LANGDLG DIALOG DISCARDABLE 0, 0, 163, 77 STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_CAPTION CAPTION "Language" FONT 8, "MS Shell Dlg" BEGIN LTEXT "Select language:",IDC_STATIC,14,9,62,8 COMBOBOX IDC_LANG,14,22,136,53,CBS_DROPDOWNLIST | WS_VSCROLL | WS_GROUP | WS_TABSTOP DEFPUSHBUTTON "OK",IDOK,56,53,50,14,WS_GROUP END
|