function cmfcCalendarV1Gregorian::getStrings in Calendar Systems 7.2
Same name and namespace in other branches
- 8 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::getStrings()
- 8.2 calendar/v1/calendarSystems/gregorian.class.inc.php \cmfcCalendarV1Gregorian::getStrings()
- 7 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;
}