All translations

Enter a message name below to show all available translations.

Message

Found 5 translations.

NameCurrent message text
 h Catalan (ca){{Input|1=#!/usr/bin/perl
   $endOfHeader = 0;
   while (<>) {
       if ( $endOfHeader == 0 )
       {
           if ( /^(?i:Subject):\s+Bug\#(\d{4,5}):/ )
           {
               $_ = "Reply-To: $1\@bugs.kde.org\n".$_;
           }
           elsif ( /^$/ )
           {
               $endOfHeader = 1;
           }
       }
       print;
   };
}}
 h Danish (da){{Input|1=#!/usr/bin/perl
   $endOfHeader = 0;
   while (<>) {
       if ( $endOfHeader == 0 )
       {
           if ( /^(?i:Subject):\s+Bug\#(\d{4,5}):/ )
           {
               $_ = "Reply-To: $1\@bugs.kde.org\n".$_;
           }
           elsif ( /^$/ )
           {
               $endOfHeader = 1;
           }
       }
       print;
   };
}}
 h English (en){{Input|1=#!/usr/bin/perl
   $endOfHeader = 0;
   while (<>) {
       if ( $endOfHeader == 0 )
       {
           if ( /^(?i:Subject):\s+Bug\#(\d{4,5}):/ )
           {
               $_ = "Reply-To: $1\@bugs.kde.org\n".$_;
           }
           elsif ( /^$/ )
           {
               $endOfHeader = 1;
           }
       }
       print;
   };
}}
 h Italian (it){{Input|1=#!/usr/bin/perl
   $endOfHeader = 0;
   while (<>) {
       if ( $endOfHeader == 0 )
       {
           if ( /^(?i:Subject):\s+Bug\#(\d{4,5}):/ )
           {
               $_ = "Reply-To: $1\@bugs.kde.org\n".$_;
           }
           elsif ( /^$/ )
           {
               $endOfHeader = 1;
           }
       }
       print;
   };
}}
 h Ukrainian (uk){{Input|1=#!/usr/bin/perl
   $endOfHeader = 0;
   while (<>) {
       if ( $endOfHeader == 0 )
       {
           if ( /^(?i:Subject):\s+Bug\#(\d{4,5}):/ )
           {
               $_ = "Reply-To: $1\@bugs.kde.org\n".$_;
           }
           elsif ( /^$/ )
           {
               $endOfHeader = 1;
           }
       }
       print;
   };
}}