aboutsummaryrefslogtreecommitdiffstats
path: root/rpmdrake.pm
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-05-16 18:35:14 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-05-16 18:35:14 +0000
commit0234d64da4d5e707801f7fff06643cd323bf062a (patch)
tree20c00a6042f7cb75fc426fc505b28f81840f0781 /rpmdrake.pm
parent4cbdd893bcc993cf96cb8c07f492873d1cb55ca8 (diff)
downloadrpmdrake-0234d64da4d5e707801f7fff06643cd323bf062a.tar
rpmdrake-0234d64da4d5e707801f7fff06643cd323bf062a.tar.gz
rpmdrake-0234d64da4d5e707801f7fff06643cd323bf062a.tar.bz2
rpmdrake-0234d64da4d5e707801f7fff06643cd323bf062a.tar.xz
rpmdrake-0234d64da4d5e707801f7fff06643cd323bf062a.zip
substitute references to "sources" by now talking about "medias",
should be more understandable and more consistent with urpmi
Diffstat (limited to 'rpmdrake.pm')
-rw-r--r--rpmdrake.pm10
1 files changed, 5 insertions, 5 deletions
diff --git a/rpmdrake.pm b/rpmdrake.pm
index e17cc93c..a82371e6 100644
--- a/rpmdrake.pm
+++ b/rpmdrake.pm
@@ -353,13 +353,13 @@ sub show_urpm_progress {
$file =~ s|([^:]*://[^/:\@]*:)[^/:\@]*(\@.*)|$1xxxx$2|; #- if needed...
if ($mode eq 'copy') {
$pb->set_fraction(0);
- $label->set_label(N("Copying file for source `%s'...", $file));
+ $label->set_label(N("Copying file for media `%s'...", $file));
} elsif ($mode eq 'parse') {
$pb->set_fraction(0);
- $label->set_label(N("Examining file of source `%s'...", $file));
+ $label->set_label(N("Examining file of media `%s'...", $file));
} elsif ($mode eq 'retrieve') {
$pb->set_fraction(0);
- $label->set_label(N("Examining distant file of source `%s'...", $file));
+ $label->set_label(N("Examining distant file of media `%s'...", $file));
} elsif ($mode eq 'start') {
$pb->set_fraction(0);
$label->set_label(N("Starting download of `%s'...", $file));
@@ -391,11 +391,11 @@ sub update_sources {
sub update_sources_interactive {
my ($urpm, %opts) = @_;
- my $w = ugtk2->new(N("Update source(s)"), grab => 1, center => 1, %opts);
+ my $w = ugtk2->new(N("Update media(s)"), grab => 1, center => 1, %opts);
my @buttons;
gtkadd($w->{window},
gtkpack__(Gtk2::VBox->new(0,5),
- Gtk2::Label->new(N("Select the source(s) you wish to update:")),
+ Gtk2::Label->new(N("Select the media(s) you wish to update:")),
(@buttons = map { Gtk2::CheckButton->new($_->{name}) } @{$urpm->{media}}),
Gtk2::HSeparator->new,
gtkpack(create_hbox(),