/**
  * Constructs Calendar_Decorator_Textual_Lang
  * @param object subclass of Calendar
  * @access public
  * @return void
  */
 public function __construct($calendar)
 {
     parent::Calendar_Decorator_Textual($calendar);
     $this->longMonthArray = I18N::getMonthesArray();
     $this->shortMonthArray = I18N::getMonthesArray(true);
     $this->longWeekDayNames = I18N::getDaysArray();
     $this->shortWeekDayNames = I18N::getDaysArray(true);
 }