[ Index ]
 

Code source de Symfony 1.0.0

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/data/web/sf/calendar/lang/ -> calendar-sv.js (source)

   1  // ** I18N
   2  
   3  // Calendar SV language (Swedish, svenska)
   4  // Author: Mihai Bazon, <mihai_bazon@yahoo.com>
   5  // Translation team: <sv@li.org>
   6  // Translator: Leonard NorrgÄrd <leonard.norrgard@refactor.fi>
   7  // Last translator: Emil Ljungdahl <emil@kratern.se>
   8  // Encoding: UTF-8
   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  
  38  // short day names
  39  Calendar._SDN = new Array
  40  ("sön",
  41   "mÄn",
  42   "tis",
  43   "ons",
  44   "tor",
  45   "fre",
  46   "lör",
  47   "sön");
  48  
  49  // First day of the week. "0" means display Sunday first, "1" means display
  50  // Monday first, etc.
  51  Calendar._FD = 1;
  52  
  53  // full month names
  54  Calendar._MN = new Array
  55  ("januari",
  56   "februari",
  57   "mars",
  58   "april",
  59   "maj",
  60   "juni",
  61   "juli",
  62   "augusti",
  63   "september",
  64   "oktober",
  65   "november",
  66   "december");
  67  
  68  // short month names
  69  Calendar._SMN = new Array
  70  ("jan",
  71   "feb",
  72   "mar",
  73   "apr",
  74   "maj",
  75   "jun",
  76   "jul",
  77   "aug",
  78   "sep",
  79   "okt",
  80   "nov",
  81   "dec");
  82  
  83  // tooltips
  84  Calendar._TT = {};
  85  Calendar._TT["INFO"] = "Om kalendern";
  86  
  87  Calendar._TT["ABOUT"] =
  88  "DHTML Datum/tid-vÀljare\n" +
  89  "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
  90  "För senaste version gÄ till: http://www.dynarch.com/projects/calendar/\n" +
  91  "Distribueras under GNU LGPL.  Se http://gnu.org/licenses/lgpl.html för detaljer." +
  92  "\n\n" +
  93  "Val av datum:\n" +
  94  "- AnvÀnd knapparna \xab, \xbb för att vÀlja Är\n" +
  95  "- AnvÀnd knapparna " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " för att vÀlja mÄnad\n" +
  96  "- HÄll musknappen nedtryckt pÄ nÄgon av ovanstÄende knappar för snabbare val.";
  97  Calendar._TT["ABOUT_TIME"] = "\n\n" +
  98  "Val av tid:\n" +
  99  "- Klicka pÄ en del av tiden för att öka den delen\n" +
 100  "- eller skift-klicka för att minska den\n" +
 101  "- eller klicka och drag för snabbare val.";
 102  
 103  Calendar._TT["PREV_YEAR"] = "FöregÄende Är (hÄll för menu)";
 104  Calendar._TT["PREV_MONTH"] = "FöregÄende mÄnad (hÄll för menu)";
 105  Calendar._TT["GO_TODAY"] = "GĂ„ till dagens datum";
 106  Calendar._TT["NEXT_MONTH"] = "Följande mÄnad (hÄll för menu)";
 107  Calendar._TT["NEXT_YEAR"] = "Följande Är (hÄll för menu)";
 108  Calendar._TT["SEL_DATE"] = "VĂ€lj datum";
 109  Calendar._TT["DRAG_TO_MOVE"] = "Drag för att flytta";
 110  Calendar._TT["PART_TODAY"] = " (idag)";
 111  Calendar._TT["MON_FIRST"] = "Visa mÄndag först";
 112  Calendar._TT["SUN_FIRST"] = "Visa söndag först";
 113  
 114  // the following is to inform that "%s" is to be the first day of week
 115  // %s will be replaced with the day name.
 116  Calendar._TT["DAY_FIRST"] = "Visa %s först";
 117  
 118  // This may be locale-dependent.  It specifies the week-end days, as an array
 119  // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
 120  // means Monday, etc.
 121  Calendar._TT["WEEKEND"] = "0";
 122  
 123  Calendar._TT["CLOSE"] = "StÀng";
 124  Calendar._TT["TODAY"] = "Idag";
 125  Calendar._TT["TIME_PART"] = "(Skift-)klicka eller drag för att Àndra tid";
 126  
 127  // date formats
 128  Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
 129  Calendar._TT["TT_DATE_FORMAT"] = "%A %d %b %Y";
 130  
 131  Calendar._TT["WK"] = "vecka";
 132  Calendar._TT["TIME"] = "Tid:";


Généré le : Fri Mar 16 22:42:14 2007 par Balluche grâce à PHPXref 0.7