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.

80 lines
3.1 KiB

  1. <%
  2. ' localizable strings for new node wizards
  3. Const L_TITLE = "New Site Wizard"
  4. Const L_WIZARD_TEXT = ""
  5. 'Page 1 - Welcome
  6. Const L_WELCOME_HEAD = "Welcome to the IIS New Site Wizard"
  7. Const L_WELCOME1 = "You use this wizard to create new sites and directories which allow your users to access your content."
  8. Const L_WELCOME2 = ""
  9. Const L_WELCOME3 = "Click Next to continue or Cancel to exit the new site wizard."
  10. 'Page 7 - FINISH
  11. Const L_FINISH_HEAD = "Congratulations"
  12. Const L_FINISH1 = "You have successfully completed the IIS New Site Wizard."
  13. Const L_FINISH2 = ""
  14. Const L_FINISH3 = "Click Close to continue."
  15. Const L_NEWNODEADDED = "You have added:"
  16. 'Page 2
  17. Const L_SITETYPE = "Publish on the Internet"
  18. Const L_SITETYPE_DESC = "How would you like to publish your content?"
  19. Const L_VDIR = "Virtual Directory"
  20. Const L_DIR = "Directory"
  21. Const L_SITE = "Site"
  22. Const L_WEBSITE = "Web Site"
  23. Const L_FTPSITE = "FTP Site"
  24. Const L_DIRONLY = "You will be creating a new directory in the following directory:"
  25. 'Page 3
  26. '=== Code Change RWS ==='
  27. ' Const L_SITE_NODENAME = "Site Description"
  28. Const L_WEB_SITE_NODENAME = "Web Site Description"
  29. Const L_FTP_SITE_NODENAME = "FTP Site Description"
  30. '=== End Code Change RWS ==='
  31. Const L_SITE_NODENAME_DESC = "You can create a description for your site to identify it in Internet Services Manager."
  32. '=== Code Change RWS ==='
  33. ' Const L_SITE_NAME = "Site Description:"
  34. Const L_WEB_SITE_NAME = "Web Site Description:"
  35. Const L_FTP_SITE_NAME = "FTP Site Description:"
  36. '=== End Code Change RWS ==='
  37. Const L_VDIR_NODENAME = "Virtual Directory Alias"
  38. Const L_VDIR_NODENAME_DESC = "What would you like this virtual directory to be named?"
  39. Const L_VDIR_NAME = "Alias to be used to access this virtual directory:"
  40. Const L_DIR_NODENAME = "Directory Name"
  41. Const L_DIR_NODENAME_DESC = "What would you like this directory to be named?"
  42. Const L_DIR_NAME = "Directory Name:"
  43. Const L_NONAME_ERR = "You must enter a name."
  44. 'Page 4
  45. Const L_BINDINGS = "Site Bindings"
  46. Const L_BINDINGS_DESC = "How will your users connect to this site?"
  47. Const L_SELECTIP = "Select the IP Address to use for this site:"
  48. Const L_ENTERTCP = "TCP Port this site should use"
  49. Const L_ENTERSSL = "SSL Port this site should use"
  50. Const L_NOPORT_ERR = "You must enter a port."
  51. 'Page 5
  52. Const L_PATH = "Path"
  53. Const L_PATH_DESC = "Where does your content reside?"
  54. Const L_ENTERPATH = "Enter the path for your home directory:"
  55. Const L_ALLOWANON = "Allow anonymous access to this site."
  56. Const L_BROWSE = "Browse..."
  57. Const L_NOPATH_ERR = "You must enter a path."
  58. 'Page 6
  59. Const L_ACCESSPERMS = "Access Permissions"
  60. Const L_ACCESSPERMS_DESC = "What access permissions do you want to set for this site?"
  61. Const L_ALLOWREAD = "Users can read files"
  62. Const L_ALLOWSCRIPT= "Users can run scripts"
  63. Const L_ALLOWEXECUTE= "Users can run scripts and executable programs (EXEs)"
  64. Const L_ALLOWWRITE= "Users can write files"
  65. Const L_ALLOWDIRBROWSING = "Users can browse this directory"
  66. Const L_ALLOWREMOTE = "Site operators can administer this site remotely"
  67. Const L_DEFAULTAPP_TEXT = "Default Application"
  68. Const L_DUPLICATEERR = "A node with this name already exists. Please try again with a unique name."
  69. %>