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.

48 lines
2.3 KiB

  1. <%
  2. 'Localizable strings for iiauth.asp
  3. Const L_ANON_TEXT="Anonymous access"
  4. Const L_NOUSERNEEDED_TEXT = "No user name or password is required to access this resource."
  5. Const L_ACCOUNTUSED_TEXT = "Anonymous account to use for anonymous access:"
  6. Const L_USERNAME_TEXT="User name:"
  7. Const L_PASSWORD_TEXT="Password:"
  8. Const L_REENTERPASS_TEXT = "Please reenter your password for confirmation"
  9. Const L_PASSNOTMATCH_TEXT = "The password you entered does not match."
  10. Const L_PASSSYNCH_TEXT="Enable automatic password synchronization"
  11. Const L_AUTHACCESS_TEXT = "Authenticated access"
  12. Const L_AUTHRESTR_TEXT = "For the following authenticatication methods, user name and password are required when:"
  13. Const L_ANONDISABLED_TEXT="Anonymous access is disabled, or"
  14. Const L_ACCESSRESTRICTED_TEXT="Access is restricted using NTFS access control lists"
  15. Const L_BASIC_TEXT="Basic authentication"
  16. Const L_CLEARPASS_TEXT = "(password is sent in clear text)"
  17. Const L_DEFAULTDOMAIN_TEXT="Select a default domain:"
  18. Const L_DIGEST_TEXT = "Digest authentication for Windows 2000 Domains"
  19. Const L_DIGESTWARN_TEXT = "Digest authentication works with Windows 2000 domain accounts only and requires the accounts to store passwords as encrypted clear text.\n\nAre you sure you wish to continue?"
  20. Const L_NTLM_TEXT = "Integrated Windows Authentication"
  21. Const L_ENTERDOMAIN_TEXT = "If the default domain is not the domain the web server is active in, enter it here:"
  22. Const L_EDIT_TEXT = " Edit... "
  23. Const L_OK_TEXT="OK"
  24. Const L_HELP_TEXT="Help"
  25. Const L_CANCEL_TEXT="Cancel"
  26. Const L_SAVING_TEXT="Saving"
  27. Const L_BASICWARNING1_TEXT = "The authentication option you have selected results in \rpasswords being transmiited over the network without data \rencryption. "
  28. Const L_BASICWARNING2_TEXT = "Someone attempting to compromise your \rsystem security could use a protocol analyzer to examine \ruser passwords during the authentication process. "
  29. Const L_BASICWARNING3_TEXT = "For \rmore detail on user authentication, consult the online help. \rThis warning does not apply to HTTPS (or SSL) connections."
  30. Const L_BASICWARNING4_TEXT = "\r\rAre you sure you want to continue?"
  31. ' Resizing constants
  32. ' NOTE: The size of the dialog is specified in iisec.str since it is the only
  33. ' page that invokes it and importing all these strings into iisec just doesn't
  34. ' make sense.
  35. Const L_ANON_HR = 250
  36. Const L_AUTHACCESS_HR = 250
  37. %>