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=278280da9606d394ec7c39127ffadc26a5a3d3d0;hpb=70df830214c97a68fcb7e89ae0d7df58c35590be;ds=inline 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"; }