]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - tools/sort_strings.pl
suricata: Change midstream policy to "pass-flow"
[people/pmueller/ipfire-2.x.git] / tools / sort_strings.pl
index 64ee423efe438154d1de6c0378a450fb53fdd627..ed3c45b0d5b2ea4eb5c9d8dbec3aa2a249e7d212 100755 (executable)
@@ -33,20 +33,13 @@ require "${basedir}/langs/$lang/cgi-bin/$lang.pl";
 open(FILE,">${basedir}/langs/$lang/cgi-bin/$lang.pl");
 
 print FILE <<EOF;
-\%tr = ( 
+\%tr = (
 \%tr,
 
 EOF
 
 for my $key ( sort (keys %tr) ) {
        my $value = $tr{$key};
-       $value =~ s/ä/ä/g;
-       $value =~ s/ö/ö/g;
-       $value =~ s/ü/ü/g;
-       $value =~ s/Ä/Ã\84/g;
-       $value =~ s/Ö/Ã\96/g;
-       $value =~ s/Ü/Ã\9c/g;
-       $value =~ s/ß/Ã\9f/g;
        $value =~ s/\'/\\\'/g;
        print FILE "\'$key\' => \'$value\',\n";
 }