findsub: Bindestriche in Übersetzung in Unterstriche umwandeln
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 5 Oct 2010 13:44:53 +0000 (15:44 +0200)
committerMoritz 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

index 1f0c9f3..e2d3744 100644 (file)
@@ -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;