home *** CD-ROM | disk | FTP | other *** search
Wrap
'// ASPSTRINGTABLE 1.0 Const REGWIZ_LANG_ID = "en-gb" Const USER_PROFILE_COUNTRY = "GB" '//set this value for eula lang code. '//if you want set es-la for latin america build (mx, ptbr, chile etc), use the below value. '//this value is different from REGWIZ_LANG_ID. This is introduced to show latin america eula for '//all latin america built but still country is different. '//this should maps to country list in countryvar.js and countryarray.js Const EULA_LANG_ID = "en-gb" '// do not translate -- start '// URL's Used. Dont translate any urls Dim STR_PRIVACY_POLICY_URL STR_PRIVACY_POLICY_URL = "http://us.mcafee.com/root/regwizard/privacypolicy.asp?close=true&lcode=" Dim REGWIZ_URL REGWIZ_URL = "http://us.mcafee.com/RegistrationWizard/ClientDataReader.aspx" Const DEFAULT_COUNTRY_CODE = "en-us" '// do not translate -- end Const BTN_NEXT = "Next >" Const BTN_CANCEL = "Cancel" Const BTN_CONTINUE = "Continue" Const BTN_BACK = "< Back" Const BTN_SUBMIT = "Submit" Const BTN_FINISH = "Finish" Const BTN_TRYAGAIN = "Try Again" Const BTN_REMINDME = "Remind Me" Const BTN_CLOSE = "Close" Const BTN_ACTIVATE = "Activate" Const BTN_SETUP = "Set Up" Const BTN_NO = "No" Const BTN_YES = "Yes" Const BTN_END = "End" Const BTN_OK = "OK" Const BTN_DONE = "Done" Const BTN_DONT_REMIND_ME = "Dont Remind Me" Const BTN_ACCEPT = "Accept" Const BTN_DECLINE = "Decline" Const STR_PRINT_PRIVACY_POLICY = "Print" Const ERROR_INITIALIZING_MGHTML_OBJECTS = "Error initializing external objects. Unable to contine registration." Const ERROR_TITLE = "McAfee Registration Wizard Error" Const PROGRAMFILES_DIR_NAME = "\Program Files" '//translate based on OS and Language Dim STR_COMPLETED_MSG STR_COMPLETED_MSG = "<b>Your McAfee User Profile Has Been Successfully Setup!</b><br>" & _ "Thank you for creating a McAfee Security user profile and registering your {ProductName|Trial|Subscription}." & _ "<p>" & _ "You will receive an email shortly from McAfee with details about your McAfee account. Simply follow the instructions within that email. This will complete your McAfee Security user profile setup and provide access to important software upgrades and updates during your {ProductName|Trial|Subscription} period." & _ "</p>" & _ "<p>" & _ "You must respond to this email before you will be able to proceed with any additional product registrations, product downloads or software installations." & _ "</p>" Const STR_APP_ERROR_TITLE = "McAfee Product Setup" Const STR_CONNECT_TO_INTERNET = "Please connect to internet and try again." Const STR_MCAFEE_PRODUCT_SETUP = "McAfee Product Setup" Const STR_MULTI_PRODUCT_DESC = "Products" Const STR_PRIVACY_POLICY = "Privacy Policy" '// Page header Text Const PAGE_CAPTION = "Product Registration" Dim STR_EULA_CAPTION STR_EULA_CAPTION = "Terms" Dim STR_FORCESUB_CAPTION STR_FORCESUB_CAPTION = PAGE_CAPTION Dim STR_INTERNETCONNECTION_CAPTION STR_INTERNETCONNECTION_CAPTION= "Internet Connection" Dim STR_PROFILE_CAPTION STR_PROFILE_CAPTION = PAGE_CAPTION Dim STR_SUBMITONCONNECTION_CAPTION STR_SUBMITONCONNECTION_CAPTION = "Submit On Connection" Dim STR_CANCELWARNING_CAPTION STR_CANCELWARNING_CAPTION = "Registration Cancelled" Dim STR_UPROSET_CAPTION STR_UPROSET_CAPTION = PAGE_CAPTION Dim STR_REMINDME_CAPTION STR_REMINDME_CAPTION = "Remind Me" Dim STR_REMINDMECONFIRMED_CAPTION STR_REMINDMECONFIRMED_CAPTION = "Remind Me Confirmed" Dim STR_COMPLETE_CAPTION STR_COMPLETE_CAPTION = "Completed" Dim STR_ERROR_CAPTION STR_ERROR_CAPTION = "Error"