hi, i installed the latest version for drupal 5.x. On the jquery popup-calendar, i can choose the year in a drop down list. There is also a dropdown list for the months, but the name of the month is not shown! (Screenshot: http://img167.imageshack.us/my.php?image=popupcalendarnb4.jpg).
i also tried the other versions, but nothing changed.

how can i fix this?

Comments

karens’s picture

Status: Active » Postponed (maintainer needs more info)

Are you sure you're using the right version? That was a bug in 5.2.1 that was fixed in 5.2.2. Try clearing the cache. BTW, the link to your image isn't working, so I can't tell exactly where you're seeing this.

slybud’s picture

Status: Postponed (maintainer needs more info) » Needs review

Ok, I have exactly the same problem, and I managed to resolve it.

This is because the bug is not located in the date_popup.module but in the date_api.module :

date_api.module, line 122 :
$month_names[$key] = $month_name;
should turn into ;
$month_names[$key] = $month;
Sorry, I'm not quite familiar with making a .patch

BTW, another detail for localization of the popup module, there's an unwanted comment in the calling process of the pop-up.
date_popup.module, line 221
$settings = //"\n". "prevText:'<". t('Prev') ."', \n".
should turn into
$settings = "\n". "prevText:'<". t('Prev') ."', \n".

If that is absolutely necessary, I can post a patch

Right now I'm working on fr.po which should be uploaded this afternoon

And : congratulations for the great job done with this release of the module, it rocks !!!

Sylvain Moreau
http://www.ows.fr

dbetschart’s picture

@ KarenS: i installed only the newest version (5.x-2.2). And the link to my image is actually working.
http://img167.imageshack.us/my.php?image=popupcalendarnb4.jpg

@ slybud: Thank you! Your solution worked fine!

karens’s picture

Status: Needs review » Fixed

Fixed in latest -dev. This is pretty critical so as soon as I get a couple other fixes in I'll roll a new release.

slybud’s picture

Thank you very much

Should I open a new case for the localization issue in the date_popup.module mentioned in my previous post ?

karens’s picture

No, I fixed that too.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.