View | Details | Raw Unified | Return to bug 21895
Collapse All | Expand All

(-)a/misc/translator/LangInstaller.pm (-3 / +2 lines)
Lines 484-490 sub locale_name { Link Here
484
sub create_messages {
484
sub create_messages {
485
    my $self = shift;
485
    my $self = shift;
486
486
487
    my $pot = "$self->{domain}.pot";
487
    my $pot = "$Bin/$self->{domain}.pot";
488
    my $po = "$self->{path_po}/$self->{lang}-messages.po";
488
    my $po = "$self->{path_po}/$self->{lang}-messages.po";
489
489
490
    unless ( -f $pot ) {
490
    unless ( -f $pot ) {
Lines 503-509 sub create_messages { Link Here
503
sub update_messages {
503
sub update_messages {
504
    my $self = shift;
504
    my $self = shift;
505
505
506
    my $pot = "$self->{domain}.pot";
506
    my $pot = "$Bin/$self->{domain}.pot";
507
    my $po = "$self->{path_po}/$self->{lang}-messages.po";
507
    my $po = "$self->{path_po}/$self->{lang}-messages.po";
508
508
509
    unless ( -f $pot ) {
509
    unless ( -f $pot ) {
510
- 

Return to bug 21895