View | Details | Raw Unified | Return to bug 2307
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/calendar.inc (-2 / +61 lines)
Lines 1-6 Link Here
1
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-system.css"/>
1
<link rel="stylesheet" type="text/css" href="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-system.css"/>
2
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar.js"></script>
2
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar.js"></script>
3
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-en.js"></script>
3
<script type="text/javascript">
4
// full day names
5
Calendar._DN = new Array(_("Sunday"),_("Monday"),_("Tuesday"),_("Wednesday"),_("Thursday"),_("Friday"),_("Saturday"),_("Sunday"));
6
// short day names
7
Calendar._SDN = new Array(_("Sun"),_("Mon"),_("Tue"),_("Wed"),_("Thu"),_("Fri"),_("Sat"),_("Sun"));
8
// First day of the week. "0" means display Sunday first, "1" means display
9
// Monday first, etc.
10
Calendar._FD = 1;
11
// full month names
12
Calendar._MN = new Array(_("January"),_("February"),_("March"),_("April"),_("May"),_("June"),_("July"),_("August"),_("September"),_("October"),_("November"),_("December"));
13
// short month names
14
Calendar._SMN = new Array(_("Jan"),_("Feb"),_("Mar"),_("Apr"),_("May"),_("Jun"),_("Jul"),_("Aug"),_("Sep"),_("Oct"),_("Nov"),_("Dec"));
15
// tooltips
16
Calendar._TT = {};
17
Calendar._TT["INFO"] = _("About the calendar");
18
19
Calendar._TT["ABOUT"] =
20
_("DHTML Date/Time Selector")+"\n" +
21
"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
22
_("For latest version visit: http://dynarch.com/mishoo/calendar.epl")+"\n" +
23
_("Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details.") +
24
"\n\n" +
25
_("Date selection:")+"\n" +
26
_("- Use the \xab, \xbb buttons to select year")+"\n" +
27
_("- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month")+"\n" +
28
_("- Hold mouse button on any of the above buttons for faster selection.");
29
Calendar._TT["ABOUT_TIME"] = "\n\n" +
30
_("Time selection:")+"\n" +
31
_("- Click on any of the time parts to increase it")+"\n" +
32
_("- or Shift-click to decrease it")+"\n" +
33
_("- or click and drag for faster selection.");
34
35
Calendar._TT["PREV_YEAR"] = _("Prev. year (hold for menu)");
36
Calendar._TT["PREV_MONTH"] = _("Prev. month (hold for menu)");
37
Calendar._TT["GO_TODAY"] = _("Go to Today");
38
Calendar._TT["NEXT_MONTH"] = _("Next month (hold for menu)");
39
Calendar._TT["NEXT_YEAR"] = _("Next year (hold for menu)");
40
Calendar._TT["SEL_DATE"] = _("Select date");
41
Calendar._TT["DRAG_TO_MOVE"] = _("Drag to move");
42
Calendar._TT["PART_TODAY"] = _(" (today)");
43
44
// the following is to inform that "%s" is to be the first day of week
45
// %s will be replaced with the day name.
46
Calendar._TT["DAY_FIRST"] = _("Display %s first");
47
48
// This may be locale-dependent.  It specifies the week-end days, as an array
49
// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
50
// means Monday, etc.
51
Calendar._TT["WEEKEND"] = "0,6";
52
53
Calendar._TT["CLOSE"] = _("Close");
54
Calendar._TT["TODAY"] = _("Today");
55
Calendar._TT["TIME_PART"] = _("(Shift-)Click or drag to change value");
56
57
// date formats
58
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
59
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
60
61
Calendar._TT["WK"] = _("wk");
62
Calendar._TT["TIME"] = _("Time:");
63
</script>
4
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-setup.js"></script>
64
<script type="text/javascript" src="<!-- TMPL_VAR name="themelang" -->/lib/calendar/calendar-setup.js"></script>
5
<script type="text/javascript">
65
<script type="text/javascript">
6
//<![CDATA[
66
//<![CDATA[
7
- 

Return to bug 2307