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.

46 lines
1.5 KiB

  1. <%
  2. 'Localizable strings for iiperf.asp
  3. Const L_PERFORMANCE_TEXT = "Performance"
  4. Const L_ACCESSDENIED_TEXT="Access Denied"
  5. Const L_ENTERINT_ERRORMESSAGE="Please enter an integer."
  6. Const L_UNSAVEDCHANGES_ERRORMESSAGE="You have unsaved changes. Save now?"
  7. Const L_CONNECTIONCONFIG_TEXT="Connection Configuration"
  8. Const L_TUNING_TEXT="Tuning"
  9. Const L_TUNESERVER_TEXT="Tune your web site performance based on the number of hits expected per day."
  10. ' Localization Note:
  11. ' The three strings below contain embeded HTML. Do not modify the <BR> tag, but leave it between
  12. ' the textual and numeric parts of the string. The numeric and textual parts can be reordered
  13. ' if necessary.
  14. Const L_MINHITS_TEXT = "Fewer than<BR>10,000"
  15. Const L_MIDHITS_TEXT = "Fewer than<BR>100,000"
  16. Const L_MAXHITS_TEXT = "More than<BR>100,000"
  17. Const L_ENABLEBANDWIDTH_TEXT="Enable bandwidth throttling"
  18. Const L_LIMITNET_TEXT="Limit network bandwidth available to this Web site."
  19. Const L_KBS_TEXT="KB/S"
  20. Const L_MAXNETUSAGE_TEXT="Maximum network use:"
  21. Const L_SAVING_TEXT="Saving..."
  22. Const L_ENABLECPUACCT_TEXT = "Enable process throttling"
  23. Const L_MAXCPUUSAGE_TEXT = "Maximum CPU use:"
  24. Const L_LOGEVENT_TEXT = "Enforce limits"
  25. Const L_PRCNT_TEXT = "%"
  26. ' Resizable elements
  27. ' Horizontal Rules
  28. Const L_TUNING_HR_W = 375
  29. Const L_ENABLEBANDWIDTH_HR_W = 240
  30. Const L_ENABLECPUACCT_HR_W = 260
  31. ' Text input
  32. Const L_MAXNETUSAGE_NUM = 10
  33. Const L_MAXCPUUSAGE_NUM = 3
  34. ' Slider control
  35. Const L_SLIDERFRM_H = 35
  36. Const L_SLIDERFRM_W = 415
  37. Const L_SLIDERSTEPSIZE_NUM = 180
  38. %>