diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-10-22 12:19:14 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-10-22 12:19:14 +0000 |
commit | 4399dfb853c4fee303485baf155c62ccd991f074 (patch) | |
tree | 3e47409688c217a5c836581dbd33b8543212bdc1 | |
parent | 124797d7b18ca516652a2191582b79969730e2dd (diff) | |
download | mgaonline-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-- | NEWS | 1 | ||||
-rwxr-xr-x | mdkapplet | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -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 @@ -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; |