diff options
Diffstat (limited to 'mdkapplet')
-rwxr-xr-x | mdkapplet | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -827,11 +827,6 @@ sub prepare_add_restricted() { my $warn_me = text2bool($local_config{DO_NOT_ASK_FOR_RESTRICTED}); return if $warn_me; my $w = new_portable_dialog(N("New medium available")); - my %strings = ( - PowerPack => N("Mandriva PowerPack"), - Server => N("Mandriva Enterprise Server"), - ); - my $product = $product_id->{product}; my $res = fill_n_run_portable_dialog( $w, @@ -839,7 +834,7 @@ sub prepare_add_restricted() { get_banner(N("New medium available")), gtknew('Label_Left', text => N("You use '%s' distribution and therefore have privileged access to additional software.", - $strings{$product} || $product) . "\n\n" . + translate_product()) . "\n\n" . N("Do you want to install this additional software repository?"), @common), gtknew('CheckButton', text => N("Do not ask me next time"), active_ref => \$warn_me), create_okcancel($w, N("Next"), N("Cancel")), |