summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorPablo Saratxaga <pablo@mandriva.com>2002-01-28 12:01:54 +0000
committerPablo Saratxaga <pablo@mandriva.com>2002-01-28 12:01:54 +0000
commit26535f788123c69486484a8ba118ede1178f0394 (patch)
tree0f7a4403bbd31a707dba7f7255ebe2987f4d7648 /urpm.pm
parentb91e5b77850e3387bcb3ba266d2e70d2fe38ff4d (diff)
downloadurpmi-26535f788123c69486484a8ba118ede1178f0394.tar
urpmi-26535f788123c69486484a8ba118ede1178f0394.tar.gz
urpmi-26535f788123c69486484a8ba118ede1178f0394.tar.bz2
urpmi-26535f788123c69486484a8ba118ede1178f0394.tar.xz
urpmi-26535f788123c69486484a8ba118ede1178f0394.zip
fixed English typo; moved Chinese file names
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/urpm.pm b/urpm.pm
index b099a470..6e4cfba3 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -443,7 +443,7 @@ sub add_distrib_media {
unlink "$urpm->{cachedir}/partial/hdlists";
$urpm->{log}(_("copying hdlists file..."));
system("cp", "-a", $hdlists_file, "$urpm->{cachedir}/partial/hdlists") ?
- $urpm->{log}(_("...copying falied")) : $urpm->{log}(_("...copying done"));
+ $urpm->{log}(_("...copying failed")) : $urpm->{log}(_("...copying done"));
} else {
$urpm->{error}(_("unable to access first installation medium (no Mandrake/base/hdlists file found)")), return;
}
@@ -662,7 +662,7 @@ sub update_media {
if (-e "$dir/../descriptions") {
$urpm->{log}(_("copying description file of \"%s\"...", $medium->{name}));
system("cp", "-a", "$dir/../descriptions", "$urpm->{statedir}/descriptions.$medium->{name}") ?
- $urpm->{log}(_("...copying falied")) : $urpm->{log}(_("...copying done"));
+ $urpm->{log}(_("...copying failed")) : $urpm->{log}(_("...copying done"));
}
#- if the source hdlist is present and we are not forcing using rpms file
@@ -670,7 +670,7 @@ sub update_media {
unlink "$urpm->{cachedir}/partial/$medium->{hdlist}";
$urpm->{log}(_("copying source hdlist (or synthesis) of \"%s\"...", $medium->{name}));
system("cp", "-a", "$with_hdlist_dir", "$urpm->{cachedir}/partial/$medium->{hdlist}") ?
- $urpm->{log}(_("...copying falied")) : $urpm->{log}(_("...copying done"));
+ $urpm->{log}(_("...copying failed")) : $urpm->{log}(_("...copying done"));
-s "$urpm->{cachedir}/partial/$medium->{hdlist}" > 32 or
$error = 1, $urpm->{error}(_("copy of [%s] failed", "$with_hdlist_dir"));
@@ -695,7 +695,7 @@ sub update_media {
if (-s "$dir/$local_list") {
$urpm->{log}(_("copying source list of \"%s\"...", $medium->{name}));
system("cp", "-a", "$dir/$local_list", "$urpm->{cachedir}/partial/list") ?
- $urpm->{log}(_("...copying falied")) : $urpm->{log}(_("...copying done"));
+ $urpm->{log}(_("...copying failed")) : $urpm->{log}(_("...copying done"));
}
}
} else {