diff options
author | Stew Benedict <stewb@mandriva.org> | 2003-09-03 00:03:09 +0000 |
---|---|---|
committer | Stew Benedict <stewb@mandriva.org> | 2003-09-03 00:03:09 +0000 |
commit | 6020d4919108f8e14033538130f803d735233783 (patch) | |
tree | f79b815afb6541f6fadaf011dc8e9c26ea4f5f0a /perl-install/standalone/drakbackup | |
parent | 63641bd57691a4649731de6c30958cb3715a66db (diff) | |
download | drakx-6020d4919108f8e14033538130f803d735233783.tar drakx-6020d4919108f8e14033538130f803d735233783.tar.gz drakx-6020d4919108f8e14033538130f803d735233783.tar.bz2 drakx-6020d4919108f8e14033538130f803d735233783.tar.xz drakx-6020d4919108f8e14033538130f803d735233783.zip |
Fix some untranslated strings - Arpad Biro
Diffstat (limited to 'perl-install/standalone/drakbackup')
-rwxr-xr-x | perl-install/standalone/drakbackup | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index ae6f1fabd..e06503318 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -4263,11 +4263,11 @@ sub restore_box() { sub restore_find_media_box() { my $mount_media = 1; $good_restore_path = 0; - my $message = "Unable to find backups to restore...\n"; - $message .= "Verify that $path_to_find_restore is the correct path" if $where_hd && $where_cd; - $message .= " and the CD is in the drive" if $where_cd; + my $message = N("Unable to find backups to restore...\n"); + $message .= N("Verify that %s is the correct path", $path_to_find_restore) if $where_hd && $where_cd; + $message .= N(" and the CD is in the drive") if $where_cd; if ($where_tape || $net_proto) { - $message .= "Backups on unmountable media - Use Catalog to restore"; + $message .= N("Backups on unmountable media - Use Catalog to restore"); $mount_media = 0; } $message .= "."; |