Lines 288-293
sub get_po_merged_with_en {
Link Here
|
288 |
my $po = $po_previous->{Locale::PO->quote($id)}; |
288 |
my $po = $po_previous->{Locale::PO->quote($id)}; |
289 |
next unless $po; |
289 |
next unless $po; |
290 |
my $text = Locale::PO->dequote( $po->msgstr ); |
290 |
my $text = Locale::PO->dequote( $po->msgstr ); |
|
|
291 |
$text =~ s|^\w+\.pref#\w+#||; |
291 |
$po_current->{$id}->msgstr( $text ); |
292 |
$po_current->{$id}->msgstr( $text ); |
292 |
} |
293 |
} |
293 |
} |
294 |
} |
294 |
- |
|
|