﻿// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "About the calendar";

Calendar._TT["ABOUT"] =
"DHTML Date/Time Selector\n" +
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
"\n\n" +
"Date selection:\n" +
"- Use the \xab, \xbb buttons to select year\n" +
"- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
"- Hold mouse button on any of the above buttons for faster selection.";
Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Time selection:\n" +
"- Click on any of the time parts to increase it\n" +
"- or Shift-click to decrease it\n" +
"- or click and drag for faster selection.";

/*
%a  abbreviated weekday name  
%A  full weekday name  
%b  abbreviated month name  
%B  full month name  
%C  century number  
%d  the day of the month ( 00 .. 31 )  
%e  the day of the month ( 0 .. 31 )  
%H  hour ( 00 .. 23 )  
%I  hour ( 01 .. 12 )  
%j  day of the year ( 000 .. 366 )  
%k  hour ( 0 .. 23 )  
%l  hour ( 1 .. 12 )  
%m  month ( 01 .. 12 )  
%M  minute ( 00 .. 59 )  
%n  a newline character  
%p  ``PM'' or ``AM''  
%P  ``pm'' or ``am''  
%S  second ( 00 .. 59 )  
%s  number of seconds since Epoch (since Jan 01 1970 00:00:00 UTC)  
%t  a tab character  
%U, %W, %V  the week number 
%u  the day of the week ( 1 .. 7, 1 = MON ) 
%w  the day of the week ( 0 .. 6, 0 = SUN ) 
%y  year without the century ( 00 .. 99 ) 
%Y  year including the century ( ex. 1979 ) 
%%  a literal % character  
*/