Strings = $strings; } protected function _LoadDays() { $days = parent::_LoadDays(); /*** DAY NAMES All of these arrays MUST start with Sunday as the first element and go through the seven day week, ending on Saturday ***/ // The full day name $days['full'] = array('Diumenge', 'Dilluns', 'Dimarts', 'Dimecres', 'Dijous', 'Divendres', 'Dissabte'); // The three letter abbreviation $days['abbr'] = array('Dig', 'Dls', 'Dts', 'Dcs', 'Djs', 'Dvs', 'Dst'); // The two letter abbreviation $days['two'] = array('Dg', 'Dl', 'Dm', 'Dc', 'Dj', 'Dv', 'Ds'); // The one letter abbreviation $days['letter'] = array('G', 'L', 'T', 'C', 'J', 'V', 'S'); $this->Days = $days; } protected function _LoadMonths() { $months = parent::_LoadMonths(); /*** MONTH NAMES All of these arrays MUST start with January as the first element and go through the twelve months of the year, ending on December ***/ // The full month name $months['full'] = array('Gener', 'Febrer', 'Març', 'Abril', 'Maig', 'Juny', 'Juliol', 'Agost', 'Setembre', 'Octubre', 'Novembre', 'Desembre'); // The three letter month name $months['abbr'] = array('Gen', 'Feb', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Agt', 'Set', 'Oct', 'Nov', 'Des'); $this->Months = $months; } protected function _LoadLetters() { $this->Letters = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'Ñ', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'); } protected function _GetHtmlLangCode() { return 'ca'; } }