Hmmm... Are you sure that the LANGUAGE constant is set correctly?
Try to change the Droplet code like this to see:
Old:
$return[] = Bookings_Month_Sheet( $_year, $_month, $section, true );
$return[] = '</div>';
return implode('', $return);
New:
$return[] = Bookings_Month_Sheet( $_year, $_month, $section, true );
$return[] = "Language constant: -" . LANGUAGE . "-<br />";
$return[] = '</div>';
return implode('', $return);