function cmfcCalendarV1Julian::getStrings in Calendar Systems 8
Same name and namespace in other branches
- 8.2 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::getStrings()
- 7 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::getStrings()
- 7.2 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::getStrings()
Get list of translatable strings
Overrides cmfcCalendarV1::getStrings
File
- calendar/v1/ calendarSystems/ julian.class.inc.php, line 722 
Class
Code
function getStrings() {
  return array();
  $stringGroups = array(
    'monthsName' => $this->_monthsName,
    'monthsShortName' => $this->_monthsShortName,
    'weeksName' => $this->_weeksName,
    'weeksShortName' => $this->_weeksShortName,
    'meridiemsName' => $this->_meridiemsName,
    'meridiemsShortName' => $this->_meridiemsShortName,
  );
  return $stringGroups;
}