diff options
Diffstat (limited to 'perl-install/standalone/drakbackup')
-rwxr-xr-x | perl-install/standalone/drakbackup | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/perl-install/standalone/drakbackup b/perl-install/standalone/drakbackup index e2dbd127b..4aa9af37a 100755 --- a/perl-install/standalone/drakbackup +++ b/perl-install/standalone/drakbackup @@ -33,7 +33,7 @@ # Drakbackup allows you to backup your system on: # - Harddrive. # - NFS. -# - CDROM (CDRW), DVDROM (with autoboot, rescue and autoinstall.). +# - CDR (CDRW), DVDR (with autoboot, rescue and autoinstall.). # - FTP. # - Rsync. # - Webdav. @@ -2187,7 +2187,7 @@ sub advanced_where_cd { gtkpack($advanced_box, $box_where_cd = gtkpack_(new Gtk2::VBox(0, 6), - 0, my $check_where_cd = new Gtk2::CheckButton(N("Use CD/DVDROM to backup")), + 0, my $check_where_cd = new Gtk2::CheckButton(N("Use CD/DVDR to backup")), 0, new Gtk2::HSeparator, 0, gtkpack_(new Gtk2::HBox(0,10), 0, gtkset_sensitive(new Gtk2::Label(N("Choose your CD/DVD device")), $where_cd), @@ -2506,7 +2506,7 @@ sub advanced_where() { )); $button_where_cd->add(gtkpack(new Gtk2::HBox(0,10), gtkcreate_img("ic82-CD-40"), - new Gtk2::Label(N("CDROM / DVDROM")), + new Gtk2::Label(N("CDR / DVDR")), new Gtk2::HBox(0, 5) )); $button_where_hd->add(gtkpack(new Gtk2::HBox(0,10), @@ -2814,7 +2814,7 @@ sub wizard_step2() { }), $where_net), ), 0, gtkpack_(new Gtk2::HBox(0, 15), - 0, my $check_wizard_cd = new Gtk2::CheckButton(N("On CDROM")), + 0, my $check_wizard_cd = new Gtk2::CheckButton(N("On CDR")), 1, new Gtk2::VBox(0, 5), 0, gtkset_sensitive(gtksignal_connect(Gtk2::Button->new(N("Configure")), clicked => sub { destroy_widget(); @@ -3014,7 +3014,7 @@ sub system_state() { $daemon_media and $system_state .= N("\n- Daemon (%s) include:\n", $when_space); $daemon_media eq 'hd' and $system_state .= N("\t-Hard drive.\n"); - $daemon_media eq 'cd' and $system_state .= N("\t-CDROM.\n"); + $daemon_media eq 'cd' and $system_state .= N("\t-CDR.\n"); $daemon_media eq 'tape' and $system_state .= N("\t-Tape \n"); $daemon_media eq 'ftp' and $system_state .= N("\t-Network by FTP.\n"); $daemon_media eq 'ssh' and $system_state .= N("\t-Network by SSH.\n"); |