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