home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Freeware / Programare / groupoffice-com-2.01 / controls / jscalendar / lang / calendar-sv.js < prev    next >
Text File  |  2004-03-08  |  3KB  |  94 lines

  1. // ** I18N
  2.  
  3. // Calendar SV language (Swedish, svenska)
  4. // Author: Mihai Bazon, <mishoo@infoiasi.ro>
  5. // Translation team: <sv@li.org>
  6. // Translator: Leonard Norrgσrd <leonard.norrgard@refactor.fi>
  7. // Last translator: Leonard Norrgσrd <leonard.norrgard@refactor.fi>
  8. // Encoding: iso-latin-1
  9. // Distributed under the same terms as the calendar itself.
  10.  
  11. // For translators: please use UTF-8 if possible.  We strongly believe that
  12. // Unicode is the answer to a real internationalized world.  Also please
  13. // include your contact information in the header, as can be seen above.
  14.  
  15. // full day names
  16. Calendar._DN = new Array
  17. ("s÷ndag",
  18.  "mσndag",
  19.  "tisdag",
  20.  "onsdag",
  21.  "torsdag",
  22.  "fredag",
  23.  "l÷rdag",
  24.  "s÷ndag");
  25.  
  26. // Please note that the following array of short day names (and the same goes
  27. // for short month names, _SMN) isn't absolutely necessary.  We give it here
  28. // for exemplification on how one can customize the short day names, but if
  29. // they are simply the first N letters of the full name you can simply say:
  30. //
  31. //   Calendar._SDN_len = N; // short day name length
  32. //   Calendar._SMN_len = N; // short month name length
  33. //
  34. // If N = 3 then this is not needed either since we assume a value of 3 if not
  35. // present, to be compatible with translation files that were written before
  36. // this feature.
  37. Calendar._SDN_len = 2;
  38. Calendar._SMN_len = 3;
  39.  
  40. // full month names
  41. Calendar._MN = new Array
  42. ("januari",
  43.  "februari",
  44.  "mars",
  45.  "april",
  46.  "maj",
  47.  "juni",
  48.  "juli",
  49.  "augusti",
  50.  "september",
  51.  "oktober",
  52.  "november",
  53.  "december");
  54.  
  55. // tooltips
  56. Calendar._TT = {};
  57. Calendar._TT["INFO"] = "Om kalendern";
  58.  
  59. Calendar._TT["ABOUT"] =
  60. "DHTML Datum/tid-vΣljare\n" +
  61. "(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
  62. "F÷r senaste version gσ till: http://dynarch.com/mishoo/calendar.epl\n" +
  63. "Distribueras under GNU LGPL.  Se http://gnu.org/licenses/lgpl.html f÷r detaljer." +
  64. "\n\n" +
  65. "Val av datum:\n" +
  66. "- AnvΣnd knapparna \xab, \xbb f÷r att vΣlja σr\n" +
  67. "- AnvΣnd knapparna " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " f÷r att vΣlja mσnad\n" +
  68. "- Hσll musknappen nedtryckt pσ nσgon av ovanstσende knappar f÷r snabbare val.";
  69. Calendar._TT["ABOUT_TIME"] = "\n\n" +
  70. "Val av tid:\n" +
  71. "- Klicka pσ en del av tiden f÷r att ÷ka den delen\n" +
  72. "- eller skift-klicka f÷r att minska den\n" +
  73. "- eller klicka och drag f÷r snabbare val.";
  74.  
  75. Calendar._TT["PREV_YEAR"] = "F÷regσende σr (hσll f÷r menu)";
  76. Calendar._TT["PREV_MONTH"] = "F÷regσende mσnad (hσll f÷r menu)";
  77. Calendar._TT["GO_TODAY"] = "Gσ till dagens datum";
  78. Calendar._TT["NEXT_MONTH"] = "F÷ljande mσnad (hσll f÷r menu)";
  79. Calendar._TT["NEXT_YEAR"] = "F÷ljande σr (hσll f÷r menu)";
  80. Calendar._TT["SEL_DATE"] = "VΣlj datum";
  81. Calendar._TT["DRAG_TO_MOVE"] = "Drag f÷r att flytta";
  82. Calendar._TT["PART_TODAY"] = " (idag)";
  83. Calendar._TT["MON_FIRST"] = "Visa mσndag f÷rst";
  84. Calendar._TT["SUN_FIRST"] = "Visa s÷ndag f÷rst";
  85. Calendar._TT["CLOSE"] = "StΣng";
  86. Calendar._TT["TODAY"] = "Idag";
  87. Calendar._TT["TIME_PART"] = "(Skift-)klicka eller drag f÷r att Σndra tid";
  88.  
  89. // date formats
  90. Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
  91. Calendar._TT["TT_DATE_FORMAT"] = "%A %d %b %Y";
  92.  
  93. Calendar._TT["WK"] = "vecka";
  94.