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