- 🇭🇰Hong Kong graham leach
There's a helper function with a missing t() envelope.
Look in modules/views/handlers/views_handler_field.inc
For:
/**
* Get this field's label.
*/
public function label() {
if (!isset($this->options['label'])) {
return '';
}
// 2025-05-13-GL Enclosed in t() function to enable table heading translations
return t($this->options['label']);
}