You are here

function birthdays_potx in Birthdays 5

File

./birthdays.module, line 1514
The Birthdays module allows users to add their birthday to their profile. It lists birthdays on a seperate page and in different blocks. Users can receive an e-mail on their birthday automatically, and the administrator can receive daily reminders of…

Code

function birthdays_potx() {
  $strings = array(
    t('Aquarius'),
    t('Pisces'),
    t('Aries'),
    t('Taurus'),
    t('Gemini'),
    t('Cancer'),
    t('Leo'),
    t('Virgo'),
    t('Libra'),
    t('Scorpio'),
    t('Sagittarius'),
    t('Capricorn'),
  );

  // No return value needed, since this is a dummy function.
}