1 |
wellsi |
1.1 |
diff -urN e-smith-base-5.2.0.old/root/usr/lib/perl5/site_perl/esmith/console/perform_backup.pm e-smith-base-5.2.0/root/usr/lib/perl5/site_perl/esmith/console/perform_backup.pm |
2 |
|
|
--- e-smith-base-5.2.0.old/root/usr/lib/perl5/site_perl/esmith/console/perform_backup.pm 2013-03-01 08:22:28.000000000 +1100 |
3 |
|
|
+++ e-smith-base-5.2.0/root/usr/lib/perl5/site_perl/esmith/console/perform_backup.pm 2013-03-01 09:02:50.000000000 +1100 |
4 |
|
|
@@ -13,7 +13,7 @@ |
5 |
|
|
{ |
6 |
|
|
my $class = shift; |
7 |
|
|
my $self = { |
8 |
|
|
- name => gettext("Perform backup to USB device"), |
9 |
|
|
+ name => gettext("Perform backup to removable media"), |
10 |
|
|
order => 80, |
11 |
|
|
}; |
12 |
|
|
bless $self, $class; |
13 |
|
|
@@ -133,10 +133,10 @@ |
14 |
|
|
|
15 |
|
|
my ($rc, $choice) = $console->yesno_page |
16 |
|
|
( |
17 |
|
|
- title => gettext("Create Backup to USB disk"), |
18 |
|
|
+ title => gettext("Create Backup to removable media"), |
19 |
|
|
defaultno => 1, |
20 |
|
|
text => |
21 |
|
|
- gettext("Do you wish to create backup on USB device?"), |
22 |
|
|
+ gettext("Do you wish to create backup on removable storage medium?"), |
23 |
|
|
); |
24 |
|
|
return unless $rc == 0; |
25 |
|
|
INITIATE_BACKUP: |
26 |
|
|
@@ -146,7 +146,7 @@ |
27 |
|
|
left => gettext("Next"), |
28 |
|
|
right => gettext("Cancel"), |
29 |
|
|
text => |
30 |
|
|
- gettext("Insert memory stick or USB disk, then hit the enter key."), |
31 |
|
|
+ gettext("Insert removable storage medium, then hit the enter key."), |
32 |
|
|
); |
33 |
|
|
return unless $rc == 0; |
34 |
|
|
sleep(3); |
35 |
|
|
@@ -246,7 +246,7 @@ |
36 |
|
|
( |
37 |
|
|
title => gettext("Backup complete"), |
38 |
|
|
text => |
39 |
|
|
- gettext("Remove memory stick or USB disk, then hit the enter key."), |
40 |
|
|
+ gettext("Remove storage medium, then hit the enter key."), |
41 |
|
|
); |
42 |
|
|
} |
43 |
|
|
|