X-Git-Url: http://git.ipfire.org/?p=people%2Fpmueller%2Fipfire-2.x.git;a=blobdiff_plain;f=tools%2Fsort_strings.pl;h=7be5cdcfdf197b3ac5f5667306a7e4e4ae205835;hp=df491897cfe2c263e4dc509355db6cb88e3295d9;hb=76c87b23cb3db06fde476fc19014e1660fe85c56;hpb=8a5f0f44faa76acffea5202e5fad34990b40ae5b;ds=sidebyside diff --git a/tools/sort_strings.pl b/tools/sort_strings.pl index df491897cf..7be5cdcfdf 100755 --- a/tools/sort_strings.pl +++ b/tools/sort_strings.pl @@ -42,6 +42,13 @@ 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"; }