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.

56 lines
1.8 KiB

  1. <%
  2. 'Localizable strings for iilogmn.asp
  3. Const L_GENERAL_TEXT = "General Logging Options"
  4. Const L_EXTPROPERTIES_TEXT = "Extended Logging Options"
  5. Const L_NEWTIMEPERIOD_TEXT = "New log time period"
  6. Const L_HOURLY_TEXT = "Hourly"
  7. Const L_LOCALTIME_TEXT = "Use local time for file naming and rollover"
  8. Const L_DAILY_TEXT = "Daily"
  9. Const L_WEEKLY_TEXT= "Weekly"
  10. Const L_MONTHLY_TEXT = "Monthly"
  11. Const L_UNLIMITED_TEXT = "Unlimited file size"
  12. Const L_LIMITED_TEXT = "When file size reaches:"
  13. Const L_MB_TEXT = "MB"
  14. Const L_LOGFILEPROPS_TEXT = "Log file"
  15. Const L_LOGDIR_TEXT = "Directory:"
  16. Const L_LOGFILE_TEXT = "Name:"
  17. Const L_BROWSE_TEXT = "Browse..."
  18. Const L_ODBCOPTIONS_TEXT = "ODBC Logging Options"
  19. Const L_ODBCDSNAME_TEXT = "ODBC Data Source Name (DSN)"
  20. Const L_TABLE_TEXT = "Table"
  21. Const L_USER_TEXT = "User Name"
  22. Const L_PASSWORD_TEXT = "Password"
  23. Const L_NOUNCS = "UNC paths are not allowed for the log file directory."
  24. Const L_CONFIRMPASSWORD_TEXT="Confirm Password"
  25. Const L_PASSNOTMATCH_TEXT = "The password you entered does not match."
  26. Const L_INTEGERREQ_TEXT = "Please enter an integer."
  27. Const L_LIMITLOG = "ncsa#.log"
  28. Const L_DAYLOG = "ncyymmdd.log"
  29. Const L_WEEKLOG = "ncyymmww.log"
  30. Const L_MONTHLOG = "ncyymm.log"
  31. Const L_HOURLOG = "ncyymmddhh.log"
  32. ' Resizing constants for the property pages of the Logging properties dialog.
  33. ' NOTE: If the height of the dialog or the head frame is changed
  34. ' in iilog.str this value should be changed by an equal amount
  35. Const L_PAGEHEIGHT_NUM = 405
  36. ' General Page
  37. Const L_NEWTIMEPERIOD_HR = 250
  38. Const L_FILESIZETEXT_NUM = 10
  39. Const L_LOGFILEPROPS_HR = 300
  40. Const L_LOGDIRTEXT_NUM = 30
  41. Const L_LOGFILETEXT_NUM = 30
  42. ' ODBC Page
  43. Const L_ODBCTEXTFIELDS_NUM = 50
  44. ' Extended Properties Page
  45. Const L_PROPTREEFRAME_H = 300
  46. Const L_PROPTREEFRAME_W = 400
  47. %>