function cmfcCalendarV1Thai::getStrings in Calendar Systems 7
Same name and namespace in other branches
- 8 calendar/v1/calendarSystems/thai.class.inc.php \cmfcCalendarV1Thai::getStrings()
- 8.2 calendar/v1/calendarSystems/thai.class.inc.php \cmfcCalendarV1Thai::getStrings()
- 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
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;
}