Index: clock.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/clock/clock.module,v retrieving revision 1.20.2.7 diff -u -p -r1.20.2.7 clock.module --- clock.module 15 Dec 2010 19:31:05 -0000 1.20.2.7 +++ clock.module 19 Dec 2010 11:56:14 -0000 @@ -369,8 +369,9 @@ function theme_clock($variables) { } // Pass the needed variables to JavaScript. - // Create a time string, from which JavaScript can create a date. - $time = date_format_date(date_now($time_zone), $type = 'custom', $format = 'F j, Y H:i:s'); + // Create a time string, from which JavaScript can create a date. The time + // string contains the month name, which needs to be in English. + $time = date_format_date(date_now($time_zone), $type = 'custom', $format = 'F j, Y H:i:s', $langcode = 'en'); // Get the name of the offset, e.g. 'GMT'. $offset_name = date_format_date(date_now($time_zone), $type = 'custom', $format = 'T'); // Get the time zone offset in seconds.