+ #translators: The first parameter is a filename, and the second
+ #translators: is a (probably not translated) error message.
+ open (IN, $setup) || error(sprintf(gettext("cannot read %s: %s"), $setup, $!));
+ my $code;
+ {
+ local $/=undef;
+ $code=<IN>;
+ }