if (currentDate.equals(mProgram.getDate().addDays(1))) {
g.drawString(Localizer.getLocalization(Localizer.I18N_YESTERDAY), x, y);
} else if (currentDate.equals(mProgram.getDate())) {
g.drawString(Localizer.getLocalization(Localizer.I18N_TODAY), x, y);
} else if (currentDate.addDays(1).equals(mProgram.getDate())) {
g.drawString(Localizer.getLocalization(Localizer.I18N_TOMORROW), x, y);
} else {
g.drawString(mProgram.getDateString(), x, y);
}
x += ProgramMenuItem.DATE_WIDTH;