aboutsummaryrefslogtreecommitdiffstats
path: root/edit-urpm-sources.pl
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2003-05-30 10:14:08 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2003-05-30 10:14:08 +0000
commit0a196fa54d04309fd9c18e166a331480cc846f5d (patch)
tree4bb9a9713e57e39be1ddccf852abd9b45b59f339 /edit-urpm-sources.pl
parent3173ea88a2b9e211bac243f02e6585ac7a7d5d80 (diff)
downloadrpmdrake-0a196fa54d04309fd9c18e166a331480cc846f5d.tar
rpmdrake-0a196fa54d04309fd9c18e166a331480cc846f5d.tar.gz
rpmdrake-0a196fa54d04309fd9c18e166a331480cc846f5d.tar.bz2
rpmdrake-0a196fa54d04309fd9c18e166a331480cc846f5d.tar.xz
rpmdrake-0a196fa54d04309fd9c18e166a331480cc846f5d.zip
fix media/medias by medium/media
Diffstat (limited to 'edit-urpm-sources.pl')
-rwxr-xr-xedit-urpm-sources.pl24
1 files changed, 12 insertions, 12 deletions
diff --git a/edit-urpm-sources.pl b/edit-urpm-sources.pl
index c180010c..0eabdeab 100755
--- a/edit-urpm-sources.pl
+++ b/edit-urpm-sources.pl
@@ -42,7 +42,7 @@ my $urpm;
my ($mainw, $remove, $edit, $list_tv);
sub add_callback {
- my $w = ugtk2->new(N("Add a media"), grab => 1, center => 1, transient => $mainw->{rwindow});
+ my $w = ugtk2->new(N("Add a medium"), grab => 1, center => 1, transient => $mainw->{rwindow});
my %radios_infos = (local => { name => N("Local files"), url => N("Path:"), dirsel => 1 },
ftp => { name => N("FTP server"), url => N("URL:"), loginpass => 1 },
http => { name => N("HTTP server"), url => N("URL:") },
@@ -109,8 +109,8 @@ really want to replace it?"), yesno => 1) or return 0;
my ($type, %i, %make_url);
gtkadd($w->{window},
gtkpack(Gtk2::VBox->new(0,5),
- Gtk2::Label->new(N("Adding a media:")),
- gtkpack__(Gtk2::HBox->new(0, 0), Gtk2::Label->new(but(N("Type of media:"))), @modes_buttons),
+ Gtk2::Label->new(N("Adding a medium:")),
+ gtkpack__(Gtk2::HBox->new(0, 0), Gtk2::Label->new(but(N("Type of medium:"))), @modes_buttons),
$notebook,
Gtk2::HSeparator->new,
gtkpack(create_hbox(),
@@ -170,11 +170,11 @@ sub edit_callback {
my $row = selrow();
$row == -1 and return;
my $medium = $urpm->{media}[$row];
- my $w = ugtk2->new(N("Edit a media"), grab => 1, center => 1, transient => $mainw->{rwindow});
+ my $w = ugtk2->new(N("Edit a medium"), grab => 1, center => 1, transient => $mainw->{rwindow});
my ($url_entry, $hdlist_entry, $url, $with_hdlist);
gtkadd($w->{window},
gtkpack_(Gtk2::VBox->new(0,5),
- 0, Gtk2::Label->new(N("Editing media \"%s\":", $medium->{name})),
+ 0, Gtk2::Label->new(N("Editing medium \"%s\":", $medium->{name})),
0, create_packtable({},
[ N("URL:"), $url_entry = gtkentry($medium->{url}) ],
[ N("Relative path to synthesis/hdlist:"), $hdlist_entry = gtkentry($medium->{with_hdlist}) ]),
@@ -244,7 +244,7 @@ sub proxy_callback {
}
sub mainwindow {
- $mainw = ugtk2->new(N("Configure medias"), center => 1);
+ $mainw = ugtk2->new(N("Configure media"), center => 1);
my $list = Gtk2::ListStore->new(Gtk2::GType->BOOLEAN, Gtk2::GType->STRING);
$list_tv = Gtk2::TreeView->new_with_model($list);
@@ -256,18 +256,18 @@ sub mainwindow {
$list->signal_connect(row_deleted => sub {
my ($model) = @_;
$reorder_ok or return;
- my @medias;
+ my @media;
$model->foreach(sub {
my (undef, $path) = @_;
my $name = $model->get($path, 1);
- push @medias, find { $_->{name} eq $name } @{$urpm->{media}};
+ push @media, find { $_->{name} eq $name } @{$urpm->{media}};
0;
}, undef);
- @{$urpm->{media}} = @medias;
+ @{$urpm->{media}} = @media;
});
$list_tv->append_column(Gtk2::TreeViewColumn->new_with_attributes(N("Enabled?"), my $tr = Gtk2::CellRendererToggle->new, 'active' => 0));
- $list_tv->append_column(Gtk2::TreeViewColumn->new_with_attributes(N("Media"), Gtk2::CellRendererText->new, 'text' => 1));
+ $list_tv->append_column(Gtk2::TreeViewColumn->new_with_attributes(N("Medium"), Gtk2::CellRendererText->new, 'text' => 1));
$tr->signal_connect(toggled => sub {
my (undef, $path) = @_;
@@ -314,9 +314,9 @@ if (!member(basename($0), @$already_splashed)) {
N("%s
Is it ok to continue?",
-N("Welcome to the Software Medias Manager!
+N("Welcome to the Software Media Manager!
-This tool will help you configure the packages medias you wish to use on
+This tool will help you configure the packages media you wish to use on
your computer. They will then be available to install new software package
or to perform updates.")), yesno => 1) or myexit -1;
push @$already_splashed, basename($0);