projects
/
people
/
teissler
/
ipfire-2.x.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f6f44bb
)
langs_checker: fix sort_strings.
author
Arne Fitzenreiter
<arne_f@ipfire.org>
Sun, 24 Jul 2011 22:15:56 +0000
(
00:15
+0200)
committer
Arne Fitzenreiter
<arne_f@ipfire.org>
Sun, 24 Jul 2011 22:15:56 +0000
(
00:15
+0200)
tools/sort_strings.pl
patch
|
blob
|
blame
|
history
diff --git
a/tools/sort_strings.pl
b/tools/sort_strings.pl
index 64ee423efe438154d1de6c0378a450fb53fdd627..494f1f626352e45290f5c025463c41cb3bb1fe0d 100755
(executable)
--- 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/Ä/Ã
\84
/g;
- $value =~ s/Ö/Ã
\96
/g;
- $value =~ s/Ü/Ã
\9c
/g;
- $value =~ s/ß/Ã
\9f
/g;
$value =~ s/\'/\\\'/g;
print FILE "\'$key\' => \'$value\',\n";
}