You are here

function cmfcCalendarV1Thai::getStrings in Calendar Systems 8.2

Same name and namespace in other branches
  1. 8 calendar/v1/calendarSystems/thai.class.inc.php \cmfcCalendarV1Thai::getStrings()
  2. 7 calendar/v1/calendarSystems/thai.class.inc.php \cmfcCalendarV1Thai::getStrings()
  3. 7.2 calendar/v1/calendarSystems/thai.class.inc.php \cmfcCalendarV1Thai::getStrings()

Get list of translatable strings

Overrides cmfcCalendarV1::getStrings

File

calendar/v1/calendarSystems/thai.class.inc.php, line 227

Class

cmfcCalendarV1Thai

Code

function getStrings() {
  $stringGroups = array(
    'monthsName' => array(
      'th' => $this->_monthsName,
    ),
    'monthsShortName' => array(
      'th' => $this->_monthsShortName,
    ),
    'weeksName' => array(
      'th' => $this->_weeksName,
    ),
    'weeksShortName' => array(
      'th' => $this->_weeksShortName,
    ),
  );
  return $stringGroups;
}