X-Git-Url: http://git.ipfire.org/?p=people%2Fteissler%2Fipfire-2.x.git;a=blobdiff_plain;f=tools%2Fsort_strings.pl;h=494f1f626352e45290f5c025463c41cb3bb1fe0d;hp=64ee423efe438154d1de6c0378a450fb53fdd627;hb=e21677b139d691cc15c0865646e3a91000076aef;hpb=f6f44bb0a7a58c5c758e6498756ef5b3e2f437de diff --git a/tools/sort_strings.pl b/tools/sort_strings.pl index 64ee423ef..494f1f626 100755 --- a/tools/sort_strings.pl +++ b/tools/sort_strings.pl @@ -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/Ä/Ä/g; - $value =~ s/Ö/Ö/g; - $value =~ s/Ü/Ü/g; - $value =~ s/ß/ß/g; $value =~ s/\'/\\\'/g; print FILE "\'$key\' => \'$value\',\n"; }