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.

28 lines
982 B

  1. <%
  2. 'Localizable strings for iichkuser.asp
  3. Const L_THEDOMAIN_TEXT = "The domain"
  4. Const L_THEUSER_TEXT = "The user or group"
  5. Const L_NOTEXIST_TEXT = "does not exist"
  6. Const L_INDOMAIN_TEXT = "in this domain"
  7. Const L_PERIOD_TEXT = "."
  8. Const L_SLASH_TEXT = "/"
  9. Const L_BCKSLASH_TEXT = "\\"
  10. Const L_SPACE = " "
  11. ' Build the necessary error strings here so that the order is not in the code
  12. ' and can be localized.
  13. ' domain - contains the domain being searched
  14. ' uname - contains the user or group name being searched for
  15. 'Const L_DOMAIN_NOT_EXIST = "The domain () does not exist."
  16. 'Const L_USER_NOT_EXIST = "The user or group () does not exist in this domain."
  17. Dim L_DOMAIN_NOT_EXIST, L_USER_NOT_EXIST
  18. L_DOMAIN_NOT_EXIST = L_THEDOMAIN_TEXT & L_SPACE & domain & L_SPACE & _
  19. L_NOTEXIST_TEXT & L_PERIOD_TEXT
  20. L_USER_NOT_EXIST = L_THEUSER_TEXT & L_SPACE & domain & L_BCKSLASH_TEXT & _
  21. uname & L_SPACE & L_NOTEXIST_TEXT & L_SPACE & _
  22. L_INDOMAIN_TEXT & L_PERIOD_TEXT
  23. %>