summaryrefslogtreecommitdiffstats
path: root/drakpxelinux.pl
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-08-11 07:05:20 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-08-11 07:05:20 +0000
commitdba1078d129d20c699c8c5e2da92e35f5f058cd5 (patch)
tree70aaffa580a590afda0f05137c1e191050489b12 /drakpxelinux.pl
parent050211788ec333ca08dcc0f62b6d99649e633d13 (diff)
downloaddrakpxelinux-dba1078d129d20c699c8c5e2da92e35f5f058cd5.tar
drakpxelinux-dba1078d129d20c699c8c5e2da92e35f5f058cd5.tar.gz
drakpxelinux-dba1078d129d20c699c8c5e2da92e35f5f058cd5.tar.bz2
drakpxelinux-dba1078d129d20c699c8c5e2da92e35f5f058cd5.tar.xz
drakpxelinux-dba1078d129d20c699c8c5e2da92e35f5f058cd5.zip
fix untranslatable messages (though this is of no use since author did
not alert pablo about new domain)
Diffstat (limited to 'drakpxelinux.pl')
-rw-r--r--drakpxelinux.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/drakpxelinux.pl b/drakpxelinux.pl
index 42da471..cfb829c 100644
--- a/drakpxelinux.pl
+++ b/drakpxelinux.pl
@@ -464,9 +464,9 @@ sub edit_box_item {
$fd->ok_button->signal_connect(clicked => sub {
my $file = $fd->get_filename;
if ($test eq "dir") {
- -d $file or err_dialog(N("Error !"), "Should be a directory.") and return;
+ -d $file or err_dialog(N("Error !"), N("Should be a directory.")) and return;
} else {
- -f $file or err_dialog(N("Error !"), "Should be a file") and return;
+ -f $file or err_dialog(N("Error !"), N("Should be a file")) and return;
$file = "images/" . basename($file);
}
$data->set_text($file);