Podría funcionar así:
CREATE OR REPLACE FUNCTION public.f_brand_lookup()
RETURNS trigger AS
$func$
BEGIN
SELECT INTO NEW.brand
bt.brand
FROM brand_translation bt
WHERE bt.source = NEW.source;
RETURN NEW;
END
$func$
LANGUAGE plpgsql;
CREATE TRIGGER brand_insert_before_lookup
BEFORE INSERT ON subscriber
FOR EACH ROW EXECUTE PROCEDURE public.f_brand_lookup();
Hay demasiadas cosas completamente incorrectas en su ejemplo.
Debe comenzar por estudiar los conceptos básicos. Como siempre, sugiero el excelente manual.
Empiece aquí y aquí
.