function _get_month_names in Archive 5
2 calls to _get_month_names()
- theme_archive_navigation_months in ./
archive.inc  - Theme the list of months for the archive navigation.
 - theme_archive_page_title in ./
archive.inc  
File
- ./
archive.inc, line 54  
Code
function _get_month_names() {
  return array(
    '',
    t('Jan'),
    t('Feb'),
    t('Mar'),
    t('Apr'),
    t('May'),
    t('Jun'),
    t('Jul'),
    t('Aug'),
    t('Sep'),
    t('Oct'),
    t('Nov'),
    t('Dec'),
  );
}