Can anyone explain me how can I translate the months and the days of the week?
thank you

Comments

neoadvanced’s picture

Issue summary: View changes

A simple solution:
after these lines in calendar_block.module file:

$calendar = (object) array(
    'year' => $year ? (int) $year : date('Y'),
    'month' => $month ? (int) $month : date('m'),
    'weekdays' => $weekdays,
  );

add the following:

$calendar->weekdays["su"]= "Sunday";
  $calendar->weekdays["mo"]= "Monday";
  $calendar->weekdays["tu"]= "Tuesday";
  $calendar->weekdays["we"]= "Wednesday";
  $calendar->weekdays["th"]= "Thursday";
  $calendar->weekdays["fr"]= "Friday";
  $calendar->weekdays["sa"]= "Saturday";
mogop’s picture

Status: Active » Closed (fixed)