summaryrefslogtreecommitdiffstats
path: root/po/sr.po
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-01-22 22:05:26 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-01-22 22:05:26 +0000
commit74f001b77d0cb6f003aa5bc38b8c4c369ba86b08 (patch)
tree52bb3cbe242bdae70fb1393b68466f6846517404 /po/sr.po
parentd1457759d94ab4b9407d5808b83e2f47be6c9b94 (diff)
downloaddrakwizard-74f001b77d0cb6f003aa5bc38b8c4c369ba86b08.tar
drakwizard-74f001b77d0cb6f003aa5bc38b8c4c369ba86b08.tar.gz
drakwizard-74f001b77d0cb6f003aa5bc38b8c4c369ba86b08.tar.bz2
drakwizard-74f001b77d0cb6f003aa5bc38b8c4c369ba86b08.tar.xz
drakwizard-74f001b77d0cb6f003aa5bc38b8c4c369ba86b08.zip
s/wich/which/
Diffstat (limited to 'po/sr.po')
-rw-r--r--po/sr.po6
1 files changed, 3 insertions, 3 deletions
diff --git a/po/sr.po b/po/sr.po
index d55a142b..54f4ed91 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -747,7 +747,7 @@ msgid ""
msgstr ""
#: ../installsrv_wizard/Installsrv.pm:56
-msgid "Destination directory: copy file in wich directory ?"
+msgid "Destination directory: copy file in which directory ?"
msgstr ""
#: ../installsrv_wizard/Installsrv.pm:56
@@ -1773,7 +1773,7 @@ msgstr ""
#: ../pxe_wizard/Pxe.pm:153
msgid ""
-"Server IP: IP address of server wich contain installation directory. You can "
+"Server IP: IP address of server which contain installation directory. You can "
"create one with MDK install server wizard."
msgstr ""
@@ -1801,7 +1801,7 @@ msgstr ""
#: ../pxe_wizard/Pxe.pm:163
msgid ""
-"Network client interface: through wich interface client should be installed."
+"Network client interface: through which interface client should be installed."
msgstr ""
#: ../pxe_wizard/Pxe.pm:163
ommit-msg'>
Diffstat (limited to 'perl-install/c.pm')
-rw-r--r--perl-install/c.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/perl-install/c.pm b/perl-install/c.pm
index 2bf733fe6..9b7a2c046 100644
--- a/perl-install/c.pm
+++ b/perl-install/c.pm
@@ -7,11 +7,12 @@ use MDK::Common;
sub AUTOLOAD() {
$AUTOLOAD =~ /::(.*)/ or return;
- my @l = eval { &{$c::stuff::{$1}} };
+ my $fct = $1;
+ my @l = eval { &{$c::stuff::{$fct}} };
if (my $err = $@) {
$err =~ /Undefined subroutine &main::/ ?
die("cannot find function $AUTOLOAD\n" . backtrace()) :
- die($err);
+ die("$fct: " . $err);
}
wantarray() ? @l : $l[0];
}