Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
3.1 KiB

  1. <%
  2. ' localizable strings for new node wizards
  3. Const L_TITLE = "Permissions Wizard"
  4. Const L_WIZARD_TEXT = ""
  5. 'Page 1 - Welcome
  6. Const L_WELCOME_HEAD = "Welcome to the IIS Permissions Wizard"
  7. Const L_WELCOME1 = "The permissions wizard will help you configure security on publishing points on your site."
  8. Const L_WELCOME2 = ""
  9. Const L_WELCOME3 = "Click Next to continue or Cancel to exit the permissions wizard."
  10. 'Page 5 - FINISH
  11. Const L_FINISH_HEAD = "Congratulations"
  12. Const L_FINISH1 = "You have successfully completed the IIS Permissions Wizard."
  13. Const L_FINISH2 = ""
  14. Const L_FINISH3 = "Click Close to continue."
  15. 'Page 2
  16. Const L_HOW = "What security settings do you want to use?"
  17. Const L_HOW_DESC = "Security settings control how users are authenticated and what content they may view."
  18. Const L_INHERITWEB = "Inherit all Web security settings."
  19. Const L_TEMPLATESWEB = "Select Web security settings based on a template."
  20. Const L_INHERITFTP = "Inherit all FTP security settings."
  21. Const L_TEMPLATESFTP = "Select FTP security settings based on a template."
  22. 'Page 3
  23. Const L_TEMPLATE = "Select a scenario that best describes your site."
  24. Const L_TEMPLATE_DESC = "The appropriate security settings will be selected for your site."
  25. Const L_SAMPLETEMPLATE = "Description"
  26. 'Page 4
  27. Const L_SUMMARY = "Security Summary"
  28. Const L_SUMMARY_DESC = ""
  29. Const L_SUMMARYWARNING_TEXT = "Your site will have the following security settings."
  30. Const L_AUTHENTICATIONMETHODS = "Authentication Methods"
  31. Const L_ANONAUTH = "Anonymous users allowed"
  32. Const L_ANONDENY = "Anonymous access is denied"
  33. Const L_ANONONLY = "Only anonymous users allowed"
  34. Const L_BASICAUTH = "Basic Authentication (clear text)"
  35. Const L_NTLMAUTH = "Integrated Windows Authentication"
  36. Const L_DIGESTAUTH = "Digest Authentication for Windows 2000 Domains"
  37. Const L_ACCESSPERMS = "Access Permissions"
  38. Const L_READACCESS = "Files can be viewed"
  39. Const L_WRITEACCESS = "Files can be uploaded"
  40. Const L_SOURCEREADACCESS = "Script source can be viewed"
  41. Const L_SOURCEWRITEACCESS = "Script source can be uploaded"
  42. Const L_SCRIPTACCESS = "Scripts can be run"
  43. Const L_EXECUTEACCESS = "Executable files can be run"
  44. Const L_DIRBROWSE = "Directory structure can be viewed"
  45. Const L_IPSECURITY = "Address Restrictions"
  46. Const L_IPSECGRANTDEFAULT = "By default all access is granted"
  47. Const L_IPSECDENYDEFAULT = "By default all access is denied"
  48. Const L_IPSECNORESTRICTIONS = "(None)"
  49. ' Localization Note:
  50. ' The following strings are built at runtime with the IP address value stored
  51. ' in STR_SUBST. If it is necessary to break up or reorder the localizable
  52. ' part of the string, please ensure that the IP address has the correct
  53. ' spacing around it and that the string fragments are connected with &
  54. ' For example:
  55. ' L_IPSECGRANTED = "Granted acccess " & STR_SUBST & " is"
  56. '
  57. Const STR_SUBST = "<s>"
  58. Dim L_IPSECGRANTED, L_IPSEDDENIED
  59. L_IPSECGRANTED = STR_SUBST & " is granted access"
  60. L_IPSECDENIED = STR_SUBST & " is denied access"
  61. ' Resizing constants for the Permissions Wizard
  62. ' Size of the summary page list box.
  63. Const L_SUMMARYROWS_NUM = 10
  64. Const L_SUMMARYCOLS_NUM = 55
  65. %>