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.

66 lines
2.5 KiB

  1. <%
  2. 'Localizable strings for iivddir.asp
  3. Const L_BROWSE_TEXT=" Browse... "
  4. Const L_ACCESSDENIED_TEXT="Access denied"
  5. Const L_LOCALPATH_TEXT="Local path:"
  6. Const L_NETPATH_TEXT="Network share:"
  7. Const L_CONNECTAS_TEXT="Connect as..."
  8. Const L_USERNAME_TEXT="User name:"
  9. Const L_PASSWORD_TEXT="Password:"
  10. Const L_ACCESSFLAGS_TEXT="Access permissions"
  11. Const L_APPFLAGS_TEXT="Execute permissions"
  12. Const L_READ_TEXT="Read"
  13. Const L_WRITE_TEXT="Write"
  14. Const L_AUTHOR_TEXT="Script source access"
  15. Const L_SCRIPT_TEXT="Scripts only"
  16. Const L_EXECUTE_TEXT="Scripts and executables"
  17. Const L_CONTENTCONTROL_TEXT="Content control"
  18. Const L_LOGACCESS_TEXT="Log visits"
  19. Const L_ENABLEBROWSING_TEXT="Directory browsing"
  20. Const L_INDEX_TEXT="Index this resource"
  21. Const L_FRONTPAGE_TEXT="Use FrontPage"
  22. Const L_APPLICATIONS_TEXT="Application settings"
  23. Const L_ISAPPROOT_TEXT="This is an application starting point"
  24. Const L_STARTPOINT_TEXT="Starting point"
  25. Const L_APPNAME_TEXT="Name"
  26. Const L_NONE_TEXT = "None"
  27. Const L_CREATE_TEXT = " Create "
  28. Const L_REMOVE_TEXT = " Remove "
  29. Const L_UNLOAD_TEXT = " Unload "
  30. Const L_DISABLE_TEXT = " Disable "
  31. Const L_ENABLE_TEXT = " Enable "
  32. Const L_CONFIGURE_TEXT = " Configure... "
  33. Const L_APPPROTECTION_TEXT = "Application Protection"
  34. Const L_APPPROTECT_OPTION_INPROC_TEXT = "Low (IIS Process)"
  35. Const L_APPPROTECT_OPTION_POOL_TEXT = "Medium (Pooled)"
  36. Const L_APPPROTECT_OPTION_OUTPROC_TEXT = "High (Isolated)"
  37. ' L_NA_TEXT is the blank caption used on the Configure and Enable/Disable buttons when there
  38. ' is no application defined the number of spaces can be adjusted to suit changes
  39. ' in default font settings for most consistent sizing with the Create/Remove button
  40. Const L_NA_TEXT = " "
  41. Const L_APPMAP_TEXT = "Mappings... "
  42. Const L_WEBMASTER_TEXT = "Web master properties"
  43. Const L_WORKINGSERVER_TEXT="Warning! You are changing a property on the site you are currently connected to, and may disable your remote session."
  44. Const L_NOAPP_TEXT = "<No application defined>"
  45. Const L_SECHOLE_ERR = "Setting read source and script or execute access is a potential security hole. \n\nAre you sure you want to continue?"
  46. ' Localizable sizing values
  47. ' Width of the local path text input
  48. Const L_LOCALPATH_NUM = 40
  49. ' Width of the UNC path, name, and password text inputs
  50. Const L_UNCWIDTH_NUM = 30
  51. ' Width of the application name and starting point text inputs
  52. Const L_APPTEXTWIDTH_NUM = 35
  53. ' Application horizontal rule width
  54. Const L_APPLICATIONHR_NUM = 340
  55. %>