kdDebug()<<"Day name for first day of week is "<<KGlobal::locale()->calendar()->weekDayName(1)<<endl;
kdDebug()<<"Short month name for second month is "<<KGlobal::locale()->calendar()->weekDayName(1,true)<<endl;
kdDebug()<<"Month name for second month is "<<KGlobal::locale()->calendar()->monthName(2,KGlobal::locale()->calendar()->year(date))<<endl;
kdDebug()<<"Short month name for second month is "<<KGlobal::locale()->calendar()->monthName(2,KGlobal::locale()->calendar()->year(date),true)<<endl;
kdDebug()<<"Month name possessive for second month is "<<KGlobal::locale()->calendar()->monthNamePossessive(2,KGlobal::locale()->calendar()->year(date))<<endl;
kdDebug()<<"Short month name possessive for second month is "<<KGlobal::locale()->calendar()->monthNamePossessive(2,KGlobal::locale()->calendar()->year(date),true)<<endl;
kdDebug()<<"Month name for fifth month is "<<KGlobal::locale()->calendar()->monthName(5,KGlobal::locale()->calendar()->year(date))<<endl;
kdDebug()<<"Short month name for fifth month is "<<KGlobal::locale()->calendar()->monthName(5,KGlobal::locale()->calendar()->year(date),true)<<endl;
kdDebug()<<"Month name possessive for fifth month is "<<KGlobal::locale()->calendar()->monthNamePossessive(5,KGlobal::locale()->calendar()->year(date))<<endl;
kdDebug()<<"Short month name possessive for fifth month is "<<KGlobal::locale()->calendar()->monthNamePossessive(5,KGlobal::locale()->calendar()->year(date),true)<<endl;
kdDebug()<<"Day for date "<<date.toString()<<" is "<<KGlobal::locale()->calendar()->day(date)<<endl;
kdDebug()<<"Month for date "<<date.toString()<<" is "<<KGlobal::locale()->calendar()->month(date)<<endl;
kdDebug()<<"Year for date "<<date.toString()<<" is "<<KGlobal::locale()->calendar()->year(date)<<endl;
kdDebug()<<"Day for date "<<date.toString()<<" as a string is "<<KGlobal::locale()->calendar()->dayString(date,true)<<endl;
kdDebug()<<"Month for date "<<date.toString()<<" as a string is "<<KGlobal::locale()->calendar()->monthString(date,true)<<endl;
kdDebug()<<"Year for date "<<date.toString()<<" as a string is "<<KGlobal::locale()->calendar()->yearString(date,true)<<endl;
kdDebug()<<"Day of week for date "<<date.toString()<<" is number "<<KGlobal::locale()->calendar()->dayOfWeek(date)<<endl;
kdDebug()<<"Week name for date "<<date.toString()<<" is "<<KGlobal::locale()->calendar()->weekDayName(date)<<endl;
kdDebug()<<"Short week name for date "<<date.toString()<<" is "<<KGlobal::locale()->calendar()->weekDayName(date,true)<<endl;
kdDebug()<<"Month name for date "<<date.toString()<<" is "<<KGlobal::locale()->calendar()->monthName(date)<<endl;
kdDebug()<<"Short month name for date "<<date.toString()<<" is "<<KGlobal::locale()->calendar()->monthName(date,true)<<endl;
kdDebug()<<"Month name possessive for date "<<date.toString()<<" is "<<KGlobal::locale()->calendar()->monthNamePossessive(date)<<endl;
kdDebug()<<"Short month name possessive for date "<<date.toString()<<" is "<<KGlobal::locale()->calendar()->monthNamePossessive(date,true)<<endl;
kdDebug()<<"It's week number "<<KGlobal::locale()->calendar()->weekNumber(date)<<endl;