Yeah, sorry, I left the code »as-is« (i.e., German), in order not to introduce some typos. Lines #47 & 51 are the key (it's in the comment at the right even):
Change
Code:
addStr := ' [Hörerwunsch'; // ' [Request'
and
Code:
addStr := addStr + ' von ' + requestBy; // ' by '
to
Code:
addStr := ' [Request'; // ' [Request'
and
Code:
addStr := addStr + ' by ' + requestBy; // ' by '
and you’re all set
