summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFunda Wang <fwang@mandriva.org>2005-09-07 17:04:03 +0000
committerFunda Wang <fwang@mandriva.org>2005-09-07 17:04:03 +0000
commit908bbb9fc525abb67ef2b5241910dd857d3759ca (patch)
tree2604054a8c6c790c3c4d649f1910d5094eb4c4d2
parent50d603fcfd2131e13ac672e0bf53189c6351714d (diff)
downloaddrakwizard-908bbb9fc525abb67ef2b5241910dd857d3759ca.tar
drakwizard-908bbb9fc525abb67ef2b5241910dd857d3759ca.tar.gz
drakwizard-908bbb9fc525abb67ef2b5241910dd857d3759ca.tar.bz2
drakwizard-908bbb9fc525abb67ef2b5241910dd857d3759ca.tar.xz
drakwizard-908bbb9fc525abb67ef2b5241910dd857d3759ca.zip
fix empty N() string.
-rwxr-xr-xdrakwizard.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/drakwizard.pl b/drakwizard.pl
index 8e9757b4..3e2dc0d0 100755
--- a/drakwizard.pl
+++ b/drakwizard.pl
@@ -161,7 +161,7 @@ sub check_rpm_local {
my ($rpms) = @_;
foreach my $rpm (@$rpms) {
if (!$in->do_pkgs->is_installed($rpm)) {
- if ($in->ask_okcancel(N(""), N("%s is not installed\nClick \"Next\" to install or \"Cancel\" to quit", c::from_utf8($rpm)))) {
+ if ($in->ask_okcancel(N("Error"), N("%s is not installed\nClick \"Next\" to install or \"Cancel\" to quit", c::from_utf8($rpm)))) {
$::testing and next;
if (!$in->do_pkgs->install($rpm)) {
$::Wizard_finished = 1;