summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2008-10-22 12:19:14 +0000
committerThierry Vignaud <tv@mandriva.org>2008-10-22 12:19:14 +0000
commit4399dfb853c4fee303485baf155c62ccd991f074 (patch)
tree3e47409688c217a5c836581dbd33b8543212bdc1
parent124797d7b18ca516652a2191582b79969730e2dd (diff)
downloadmgaonline-4399dfb853c4fee303485baf155c62ccd991f074.tar
mgaonline-4399dfb853c4fee303485baf155c62ccd991f074.tar.gz
mgaonline-4399dfb853c4fee303485baf155c62ccd991f074.tar.bz2
mgaonline-4399dfb853c4fee303485baf155c62ccd991f074.tar.xz
mgaonline-4399dfb853c4fee303485baf155c62ccd991f074.zip
(confirm_upgrade,really_confirm_upgrade) replace Yes/No by Next/Cancel
-rw-r--r--NEWS1
-rwxr-xr-xmdkapplet4
2 files changed, 3 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 648e251d..e4f9ac43 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,6 @@
- mdkapplet
o fix testing for/var/lib/urpmi/stale_upgrade_in_progress
+ o use Next/Cancel instead of Yes/No in confirmation dialogs
Version 2.64 - 21 October 2008
diff --git a/mdkapplet b/mdkapplet
index 409a513b..4b46e6ce 100755
--- a/mdkapplet
+++ b/mdkapplet
@@ -362,7 +362,7 @@ sub confirm_upgrade() {
gtknew('Label_Left', text => N("Do you want to upgrade to the '\%s' distribution?",
$new_distro->{name} || $new_distro->{version}), @common),
gtknew('CheckButton', text => N("Do not ask me next time"), active_ref => \$warn_me),
- create_okcancel($w, N("Yes"), N("No")),
+ create_okcancel($w, N("Next"), N("Cancel")),
]),
);
$link->set_uri_hook(sub {
@@ -400,7 +400,7 @@ sub really_confirm_upgrade() {
N("You should put your laptop on AC and favor ethernet connection over wifi, if available.")
: ''),
@common),
- create_okcancel($w, N("Yes"), N("No")),
+ create_okcancel($w, N("Next"), N("Cancel")),
]),
);
$w->{ok}->grab_focus;