home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 November / PCWNOV07.iso / shared / regwiz.cab / RegWizUI.dll / HTML / COMMON_LANG.VBS < prev    next >
Encoding:
Text File  |  2005-07-13  |  3.6 KB  |  107 lines

  1. ∩╗┐'// ASPSTRINGTABLE 1.0
  2.  
  3. Const REGWIZ_LANG_ID    =    "en-gb"
  4. Const USER_PROFILE_COUNTRY = "GB"
  5.  
  6. '//set this value for eula lang code. 
  7. '//if you want set es-la for latin america build (mx, ptbr, chile etc), use the below value.
  8. '//this value is different from REGWIZ_LANG_ID. This is introduced to show latin america eula for
  9. '//all latin america built but still country is different.
  10. '//this should maps to country list in countryvar.js and countryarray.js
  11.  
  12. Const EULA_LANG_ID = "en-gb"
  13.  
  14.  
  15. '// do not translate -- start
  16. '// URL's Used. Dont translate any urls
  17. Dim STR_PRIVACY_POLICY_URL
  18. STR_PRIVACY_POLICY_URL    = "http://us.mcafee.com/root/regwizard/privacypolicy.asp?close=true&lcode="
  19.  
  20. Dim REGWIZ_URL
  21. REGWIZ_URL = "http://us.mcafee.com/RegistrationWizard/ClientDataReader.aspx"
  22.  
  23. Const DEFAULT_COUNTRY_CODE = "en-us"
  24. '// do not translate -- end
  25.  
  26. Const BTN_NEXT        =    "Next >"
  27. Const BTN_CANCEL    =    "Cancel"
  28. Const BTN_CONTINUE    =    "Continue"
  29. Const BTN_BACK        =    "< Back"
  30. Const BTN_SUBMIT    =    "Submit"
  31. Const BTN_FINISH    =    "Finish"
  32. Const BTN_TRYAGAIN    =    "Try Again"
  33. Const BTN_REMINDME    =    "Remind Me"
  34. Const BTN_CLOSE        =    "Close"
  35. Const BTN_ACTIVATE    =    "Activate"
  36. Const BTN_SETUP        =    "Set Up"
  37. Const BTN_NO        =    "No"
  38. Const BTN_YES        =    "Yes"
  39. Const BTN_END        =    "End"
  40. Const BTN_OK        =    "OK"
  41. Const BTN_DONE        =    "Done"
  42. Const BTN_DONT_REMIND_ME = "Dont Remind Me"
  43.  
  44. Const BTN_ACCEPT    =    "Accept"
  45. Const BTN_DECLINE   =    "Decline"
  46. Const STR_PRINT_PRIVACY_POLICY = "Print"
  47.  
  48. Const ERROR_INITIALIZING_MGHTML_OBJECTS = "Error initializing external objects. Unable to contine registration."
  49. Const ERROR_TITLE = "McAfee Registration Wizard Error"
  50.  
  51. Const PROGRAMFILES_DIR_NAME    = "\Program Files"    '//translate based on OS and Language
  52.  
  53. Dim STR_COMPLETED_MSG
  54. STR_COMPLETED_MSG = "<b>Your McAfee User Profile Has Been Successfully Setup!</b><br>" & _
  55.                     "Thank you for creating a McAfee Security user profile and registering your {ProductName|Trial|Subscription}." & _
  56.                     "<p>" & _
  57.                     "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." & _
  58.                     "</p>" & _
  59.                     "<p>" & _
  60.                     "You must respond to this email before you will be able to proceed with any additional product registrations, product downloads or software installations." & _
  61.                     "</p>"
  62.  
  63. Const STR_APP_ERROR_TITLE        = "McAfee Product Setup"
  64. Const STR_CONNECT_TO_INTERNET    = "Please connect to internet and try again."
  65. Const STR_MCAFEE_PRODUCT_SETUP    = "McAfee Product Setup"
  66.  
  67. Const STR_MULTI_PRODUCT_DESC = "Products"
  68. Const STR_PRIVACY_POLICY = "Privacy Policy"
  69.  
  70. '// Page header Text
  71. Const PAGE_CAPTION = "Product Registration"
  72.  
  73. Dim STR_EULA_CAPTION
  74. STR_EULA_CAPTION = "Terms"
  75.  
  76. Dim STR_FORCESUB_CAPTION
  77. STR_FORCESUB_CAPTION = PAGE_CAPTION
  78.  
  79. Dim STR_INTERNETCONNECTION_CAPTION
  80. STR_INTERNETCONNECTION_CAPTION= "Internet Connection"
  81.  
  82. Dim STR_PROFILE_CAPTION
  83. STR_PROFILE_CAPTION = PAGE_CAPTION
  84.  
  85. Dim STR_SUBMITONCONNECTION_CAPTION
  86. STR_SUBMITONCONNECTION_CAPTION = "Submit On Connection"
  87.  
  88. Dim STR_CANCELWARNING_CAPTION
  89. STR_CANCELWARNING_CAPTION = "Registration Cancelled"
  90.  
  91. Dim STR_UPROSET_CAPTION
  92. STR_UPROSET_CAPTION = PAGE_CAPTION
  93.  
  94. Dim STR_REMINDME_CAPTION
  95. STR_REMINDME_CAPTION = "Remind Me"
  96.  
  97. Dim STR_REMINDMECONFIRMED_CAPTION
  98. STR_REMINDMECONFIRMED_CAPTION = "Remind Me Confirmed"
  99.  
  100. Dim STR_COMPLETE_CAPTION
  101. STR_COMPLETE_CAPTION = "Completed"
  102.  
  103. Dim STR_ERROR_CAPTION
  104. STR_ERROR_CAPTION    = "Error"
  105.  
  106.  
  107.