added language dependant motd files
[spider.git] / perl / DXCommandmode.pm
index 80a31ed517a6829d91c4cf5ae034478403cf711f..debc23d2af1dddc01fc1b5f4ed1aafd4c05896fe 100644 (file)
@@ -129,7 +129,12 @@ sub start
 
 
        # decide which motd to send
-       my $motd = "${main::motd}_nor" unless $self->{registered};
+       my $motd;
+       unless ($self->{registered}) {
+               $motd = "${main::motd}_nor_$self->{lang}";
+               $motd = "${main::motd}_nor" unless -e $motd;
+       }
+       $motd = "${main::motd}_$self->{lang}" unless $motd && -e $motd;
        $motd = $main::motd unless $motd && -e $motd;
        $self->send_file($motd) if -e $motd;