projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
945e44a
)
findsub: Bindestriche in Übersetzung in Unterstriche umwandeln
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Tue, 5 Oct 2010 13:44:53 +0000
(15:44 +0200)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Mon, 3 Jan 2011 11:15:56 +0000
(12:15 +0100)
Ansonsten wird bei Original 'PDF preview' und Übersetzung
"PDF-Vorschau" die Rückübersetzung nicht gefunden.
SL/Locale.pm
patch
|
blob
|
history
diff --git
a/SL/Locale.pm
b/SL/Locale.pm
index
1f0c9f3
..
e2d3744
100644
(file)
--- a/
SL/Locale.pm
+++ b/
SL/Locale.pm
@@
-241,7
+241,7
@@
sub findsub {
$original =~ s/_+/_/g;
$translation = lc $translation;
- $translation =~ s/
\s
+/_/g;
+ $translation =~ s/
[\s\-]
+/_/g;
$self->{texts_reverse}->{$translation} ||= [ ];
push @{ $self->{texts_reverse}->{$translation} }, $original;