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.

59 lines
2.1 KiB

  1. <%
  2. 'Localizable strings for iiappmn.asp
  3. Const L_OTHER_TEXT = "Other"
  4. Const L_ASP_TEXT = "Active Server Pages"
  5. Const L_APPCONFIG_TEXT = "Application Configuration"
  6. Const L_ENABLESESSION_TEXT = "Enable session state"
  7. Const L_SESSIONTO_TEXT = "Session timeout:"
  8. Const L_MINUTES_TEXT = "minutes"
  9. Const L_ENABLEBUFF_TEXT = "Enable buffering"
  10. Const L_ENABLEPATHS_TEXT = "Enable parent paths"
  11. Const L_WRITEFAILED_TEXT = "Write unsuccessful client requests to event log"
  12. Const L_EXCEPTIONCATCH_TEXT = "Enable debug exception catching"
  13. Const L_NUMENGINESCACHED_TEXT = "Number of script engines cached:"
  14. Const L_DEFAULTLANG_TEXT = "Default ASP language:"
  15. Const L_SCRIPTTO_TEXT = "Script timeout:"
  16. Const L_SECONDS_TEXT = "seconds"
  17. Const L_SCRIPTCACHE_TEXT = "Script File Cache"
  18. Const L_NOCACHE_TEXT = "Do not cache ASP files"
  19. Const L_CACHEASP_TEXT = "Cache all requested ASP files"
  20. Const L_ASPCACHESIZE_TEXT = "Max ASP files cached:"
  21. Const L_MB_TEXT = "MB"
  22. Const L_DBG_TEXT = "ASP Debugging"
  23. Const L_DEBUGGING_TEXT = "Debugging Flags"
  24. Const L_ENABLESSDEBUG_TEXT="Enable ASP server-side debugging"
  25. Const L_ENABLECLIENTDEBUG_TEXT="Enable ASP client-side debugging"
  26. Const L_ENABLEJAVADEBUG_TEXT="Enable Java server-side debugging"
  27. Const L_SCRIPTERRMSG_TEXT = "Script Error Messages"
  28. Const L_SENDDETAILED_TEXT = "Send detailed ASP error messages to client."
  29. Const L_SENDTEXT_TEXT ="Send text error message to client:"
  30. Const L_PROCESSOPTIONS_TEXT = "Process Options"
  31. ' Resizing constants for the application configuration pages
  32. ' NOTE: If the height of the dialog or the head frame is changed
  33. ' in iiapp.str this value should be changed by an equal amount
  34. Const L_PAGEHEIGHT_NUM = 400
  35. ' ASP Property Page
  36. Const L_APPCONFIG_HR = 200
  37. Const L_SESSIONTO_NUM = 10
  38. Const L_DEFAULTLANG_NUM = 30
  39. Const L_SCRIPTTO_NUM = 10
  40. ' Application Debugging Property Page
  41. Const L_DEBUGGING_HR = 200
  42. Const L_SCRIPTERRMSG_HR = 200
  43. Const L_TEXTERRORCOLS_NUM = 35
  44. Const L_TEXTERRORROWS_NUM = 4
  45. ' Other Property Page
  46. Const L_PROCESSOPTIONS_HR = 200
  47. Const L_NUMENGINESCACHED_NUM = 10
  48. Const L_SCRIPTCACHE_HR = 200
  49. Const L_ASPCACHESIZE_NUM = 5
  50. %>