home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #3 / CD 3 (Black) - 2001.iso / Acrobat / Acro32.exe / Reader / plug_ins / AcroForm / JavaScripts / Afstrsve.js < prev   
Encoding:
Text File  |  1999-11-22  |  4.3 KB  |  124 lines

  1. /*
  2.     ==========================================================================
  3.     Module: AFStrSVE.js
  4.     ==========================================================================
  5.     JavaScript language dependent strings.
  6.     ==========================================================================
  7.     The Software, including this file, is subject to the End User License
  8.     Agreement.
  9.     Copyright (c) 1998, 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.  
  17. if (app.language == "SVE") {
  18.     /* Each string is presented twice: first, in Macintosh platform encoding, 
  19.     ** and then in Windows encoding: */
  20.     if (app.platform == "MAC") {
  21.         IDS_LANGUAGE         = "SVE";
  22.         IDS_GREATER_THAN    = "Ogiltigt vèrde: mîste vara stÜrre èn eller lika med %s.";
  23.         IDS_GT_AND_LT        = "Ogiltigt vèrde: mîste vara stÜrre èn eller lika med %s och mindre èn eller lika med %s.";
  24.         IDS_LESS_THAN        = "Ogiltigt vèrde: mîste vara mindre èn eller lika med %s.";
  25.         IDS_INVALID_MONTH    = "** Ogiltigt **";
  26.         IDS_INVALID_DATE    = "Ogiltig datum/tid: se till att datumet/tiden existerar och att alla fyra siffror fÜr îr angivits."
  27.         IDS_INVALID_VALUE    = "Det angivna vΣrdet stΣmmer inte med fΣltets format";
  28.         IDS_AM = "fm";
  29.         IDS_PM = "em";
  30.  
  31.         /* This string contains month info in the following format:
  32.         ** month name or abbreviation (left bracket) month number (right bracket)
  33.         ** Note that the first string with the given number will be returned by
  34.         ** AFGetMonthString (look in AForm.js)
  35.         ** Also note that the months and abbreviations should be in order of most
  36.         ** to least definitive in case an abbreviation matches part of another
  37.         ** month or abbreviation */
  38.         IDS_MONTH_INFO    =    "Januari[1]" +
  39.                             "Februari[2]" +
  40.                             "Mars[3]" +
  41.                             "April[4]" +
  42.                             "Maj[5]" +
  43.                             "Juni[6]" +
  44.                             "Juli[7]" +
  45.                             "Augusti[8]" +
  46.                             "September[9]" +
  47.                             "Oktober[10]" +
  48.                             "November[11]" +
  49.                             "December[12]" +
  50.                             "Sept[9]" +
  51.                             "Jan[1]" +
  52.                             "Feb[2]" +
  53.                             "Mar[3]" +
  54.                             "Apr[4]" +
  55.                             "Jun[6]" +
  56.                             "Jul[7]" +
  57.                             "Aug[8]" +
  58.                             "Sep[9]" +
  59.                             "Okt[10]" +
  60.                             "Nov[11]" +
  61.                             "Dec[12]" +
  62.                             "January[1]" +
  63.                             "February[2]" +
  64.                             "March[3]" +
  65.                             "May[5]" +
  66.                             "June[6]" +
  67.                             "July[7]" +
  68.                             "August[8]" +
  69.                             "October[10]" +
  70.                             "Oct[10]";
  71.     } else {
  72.         IDS_LANGUAGE         = "SVE";
  73.         IDS_GREATER_THAN    = "Ogiltigt vΣrde: mσste vara st÷rre Σn eller lika med %s.";
  74.         IDS_GT_AND_LT        = "Ogiltigt vΣrde: mσste vara st÷rre Σn eller lika med %s och mindre Σn eller lika med %s.";
  75.         IDS_LESS_THAN        = "Ogiltigt vΣrde: mσste vara mindre Σn eller lika med %s.";
  76.         IDS_INVALID_MONTH    = "** Ogiltigt **";
  77.         IDS_INVALID_DATE    = "Ogiltig datum/tid: se till att datumet/tiden existerar och att alla fyra siffror f÷r σr angivits."
  78.         IDS_INVALID_VALUE    = "Det angivna vΣrdet stΣmmer inte med fΣltets format";
  79.         IDS_AM = "fm";
  80.         IDS_PM = "em";
  81.  
  82.         /* This string contains month info in the following format:
  83.         ** month name or abbreviation (left bracket) month number (right bracket)
  84.         ** Note that the first string with the given number will be returned by
  85.         ** AFGetMonthString (look in AForm.js)
  86.         ** Also note that the months and abbreviations should be in order of most
  87.         ** to least definitive in case an abbreviation matches part of another
  88.         ** month or abbreviation */
  89.         IDS_MONTH_INFO    =    "Januari[1]" +
  90.                             "Februari[2]" +
  91.                             "Mars[3]" +
  92.                             "April[4]" +
  93.                             "Maj[5]" +
  94.                             "Juni[6]" +
  95.                             "Juli[7]" +
  96.                             "Augusti[8]" +
  97.                             "September[9]" +
  98.                             "Oktober[10]" +
  99.                             "November[11]" +
  100.                             "December[12]" +
  101.                             "Sept[9]" +
  102.                             "Jan[1]" +
  103.                             "Feb[2]" +
  104.                             "Mar[3]" +
  105.                             "Apr[4]" +
  106.                             "Jun[6]" +
  107.                             "Jul[7]" +
  108.                             "Aug[8]" +
  109.                             "Sep[9]" +
  110.                             "Okt[10]" +
  111.                             "Nov[11]" +
  112.                             "Dec[12]" +
  113.                             "January[1]" +
  114.                             "February[2]" +
  115.                             "March[3]" +
  116.                             "May[5]" +
  117.                             "June[6]" +
  118.                             "July[7]" +
  119.                             "August[8]" +
  120.                             "October[10]" +
  121.                             "Oct[10]";
  122.     }
  123. }
  124.