/**
 * Get the weekends days for this language.
 *
 * @return  string  The weekend days of the week separated by a comma according to the language
 *
 * @since   3.2
 */
public function getWeekEnd()
{
    return $this->metadata['weekEnd'] ?? '0,6';
}