home *** CD-ROM | disk | FTP | other *** search
/ Gear Audio / Gear Audio CD-ROM.iso / adobe / archive.z / AFString.js < prev    next >
Encoding:
Text File  |  1997-11-04  |  1.9 KB  |  55 lines

  1. /*
  2.     ==========================================================================
  3.     Module: AFString.js
  4.     ==========================================================================
  5.     JavaScript language dependent strings.
  6.     ==========================================================================
  7.     The Software, including this file, is subject ot the End User License
  8.     Agreement.
  9.     Copyright (c) 1997, Adobe Systems Incorporated, All Rights Reserved.
  10.     ==========================================================================
  11. */
  12.  
  13. /* ==== Strings ==== */
  14. /* All of our user strings are defined here. Use Shift-JIS encoding for
  15. ** double byte platforms. These strings need to be translated for each language. */
  16. IDS_LANGUAGE         = "ENU";
  17. IDS_GREATER_THAN    = "Invalid value: must be greater than or equal to %s.";
  18. IDS_GT_AND_LT        = "Invalid value: must be greater than or equal to %s and less than or equal to %s.";
  19. IDS_LESS_THAN        = "Invalid value: must be less than or equal to %s.";
  20. IDS_INVALID_MONTH    = "** Invalid **";
  21.  
  22. IDS_AM = "am";
  23. IDS_PM = "pm";
  24.  
  25. /* This string contains month info in the following format:
  26. ** month name or abbreviation (left bracket) month number (right bracket)
  27. ** Note that the first string with the given number will be returned by
  28. ** AFGetMonthString (look in AForm.js)
  29. ** Also note that the months and abbreviations should be in order of most
  30. ** to least definitive in case an abbreviation matches part of another
  31. ** month or abbreviation */
  32. IDS_MONTH_INFO    =    "January[1]" +
  33.                     "February[2]" +
  34.                     "March[3]" +
  35.                     "April[4]" +
  36.                     "May[5]" +
  37.                     "June[6]" +
  38.                     "July[7]" +
  39.                     "August[8]" +
  40.                     "September[9]" +
  41.                     "October[10]" +
  42.                     "November[11]" +
  43.                     "December[12]" +
  44.                     "Sept[9]" +
  45.                     "Jan[1]" +
  46.                     "Feb[2]" +
  47.                     "Mar[3]" +
  48.                     "Apr[4]" +
  49.                     "Jun[6]" +
  50.                     "Jul[7]" +
  51.                     "Aug[8]" +
  52.                     "Sep[9]" +
  53.                     "Oct[10]" +
  54.                     "Nov[11]" +
  55.                     "Dec[12]";