diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | Rpmdrake/edit_urpm_sources.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ - drop diagnostics, strict, vars and warnings pragmas (should help #45361) - edit_urpm_sources: + o make clearer than DVD, CD-ROM are removable devices (#30842) o prevent enabling one to tag media as update media when adding whole distro media - rpmdrake: diff --git a/Rpmdrake/edit_urpm_sources.pm b/Rpmdrake/edit_urpm_sources.pm index 82d9316b..f6c245d2 100644 --- a/Rpmdrake/edit_urpm_sources.pm +++ b/Rpmdrake/edit_urpm_sources.pm @@ -171,7 +171,7 @@ sub add_callback() { ftp => { name => N("FTP server"), url => N("URL:"), loginpass => 1 }, rsync => { name => N("RSYNC server"), url => N("URL:") }, http => { name => N("HTTP server"), url => N("URL:") }, - removable => { name => N("Removable device"), url => N("Path or mount point:"), dirsel => 1 }, + removable => { name => N("Removable device (CD-ROM, DVD, ...)"), url => N("Path or mount point:"), dirsel => 1 }, ); my @radios_names_ordered = qw(local ftp rsync http removable); # TODO: replace NoteBook by sensitive widgets and Label->set() |