source: trunk/phpgwapi/js/jscalendar/lang/calendar-sv.js @ 2

Revision 2, 3.1 KB checked in by niltonneto, 17 years ago (diff)

Removida todas as tags usadas pelo CVS ($Id, $Source).
Primeira versão no CVS externo.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
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
16Calendar._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.
37Calendar._SDN_len = 2;
38Calendar._SMN_len = 3;
39
40// full month names
41Calendar._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
56Calendar._TT = {};
57Calendar._TT["INFO"] = "Om kalendern";
58
59Calendar._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.";
69Calendar._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
75Calendar._TT["PREV_YEAR"] = "Föregående år (håll för menu)";
76Calendar._TT["PREV_MONTH"] = "Föregående månad (håll för menu)";
77Calendar._TT["GO_TODAY"] = "Gå till dagens datum";
78Calendar._TT["NEXT_MONTH"] = "Följande månad (håll för menu)";
79Calendar._TT["NEXT_YEAR"] = "Följande år (håll för menu)";
80Calendar._TT["SEL_DATE"] = "Välj datum";
81Calendar._TT["DRAG_TO_MOVE"] = "Drag för att flytta";
82Calendar._TT["PART_TODAY"] = " (idag)";
83Calendar._TT["MON_FIRST"] = "Visa måndag först";
84Calendar._TT["SUN_FIRST"] = "Visa söndag först";
85Calendar._TT["CLOSE"] = "Stäng";
86Calendar._TT["TODAY"] = "Idag";
87Calendar._TT["TIME_PART"] = "(Skift-)klicka eller drag för att ändra tid";
88
89// date formats
90Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
91Calendar._TT["TT_DATE_FORMAT"] = "%A %d %b %Y";
92
93Calendar._TT["WK"] = "vecka";
Note: See TracBrowser for help on using the repository browser.