aboutsummaryrefslogtreecommitdiffstats
path: root/Rpmdrake/edit_urpm_sources.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-09-18 17:30:25 +0000
committerThierry Vignaud <tv@mageia.org>2012-09-18 17:30:25 +0000
commit58127704ee377f1f30910471dac5d44af6069d89 (patch)
tree9db3fda18a8fb10b01fd55370e15f0ab5f1c1d4e /Rpmdrake/edit_urpm_sources.pm
parent8900899b8c5779e7120d9141304132ad1b1d4956 (diff)
downloadrpmdrake-58127704ee377f1f30910471dac5d44af6069d89.tar
rpmdrake-58127704ee377f1f30910471dac5d44af6069d89.tar.gz
rpmdrake-58127704ee377f1f30910471dac5d44af6069d89.tar.bz2
rpmdrake-58127704ee377f1f30910471dac5d44af6069d89.tar.xz
rpmdrake-58127704ee377f1f30910471dac5d44af6069d89.zip
s!for adding!to add! (mga#6642)
Diffstat (limited to 'Rpmdrake/edit_urpm_sources.pm')
-rw-r--r--Rpmdrake/edit_urpm_sources.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rpmdrake/edit_urpm_sources.pm b/Rpmdrake/edit_urpm_sources.pm
index 7b837495..ca27895f 100644
--- a/Rpmdrake/edit_urpm_sources.pm
+++ b/Rpmdrake/edit_urpm_sources.pm
@@ -695,7 +695,7 @@ sub edit_parallel {
$medias_list->get_selection->set_mode('browse');
$medias_list_ls->append_set([ 0 => $_->{name} ]) foreach @{$urpm->{media}};
my $sel;
- add_callback_(N("Add a medium limit"), N("Choose a medium for adding in the media limit:"),
+ add_callback_(N("Add a medium limit"), N("Choose a medium to add to the media limit:"),
$w, $medias_list, sub { $sel = selrow($medias_list) },
sub {
return if $sel == -1;
@@ -893,7 +893,7 @@ sub keys_callback() {
$available_keyz->get_selection->set_mode('browse');
$available_keyz_ls->append_set([ 0 => sprintf("%s (%s)", $_, $key_name->($_)), 1 => $_ ]) foreach keys %{$urpm->{keys}};
my $key;
- add_callback_(N("Add a key"), N("Choose a key for adding to the medium %s", $current_medium), $w, $available_keyz,
+ add_callback_(N("Add a key"), N("Choose a key to add to the medium %s", $current_medium), $w, $available_keyz,
sub {
my ($model, $iter) = $available_keyz->get_selection->get_selected;
$model && $iter and $key = $model->get($iter, 1);