|
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 |
- |
|
|