]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - tools/sort_strings.pl
vpnmain.cgi: Disable compression by default
[ipfire-2.x.git] / tools / sort_strings.pl
index 64ee423efe438154d1de6c0378a450fb53fdd627..494f1f626352e45290f5c025463c41cb3bb1fe0d 100755 (executable)
@@ -40,13 +40,6 @@ 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";
 }