You are here

function cmfcCalendarV1Gregorian::getStrings in Calendar Systems 8.2

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

Get list of translatable strings

Overrides cmfcCalendarV1::getStrings

File

calendar/v1/calendarSystems/gregorian.class.inc.php, line 261

Class

cmfcCalendarV1Gregorian
@desc

Code

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