You are here

function cmfcCalendarV1Julian::getStrings in Calendar Systems 8.2

Same name and namespace in other branches
  1. 8 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::getStrings()
  2. 7 calendar/v1/calendarSystems/julian.class.inc.php \cmfcCalendarV1Julian::getStrings()
  3. 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

cmfcCalendarV1Julian

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;
}