[yast-commit] r64786 - /trunk/mail/src/ui.ycp
Author: varkoly Date: Wed Jul 13 13:19:54 2011 New Revision: 64786 URL: http://svn.opensuse.org/viewcvs/yast?rev=64786&view=rev Log: bnc#684863 - consistently use ButtonBox widget in all YaST modules Modified: trunk/mail/src/ui.ycp Modified: trunk/mail/src/ui.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/mail/src/ui.ycp?rev=64786&r1=64785&r2=64786&view=diff ============================================================================== --- trunk/mail/src/ui.ycp (original) +++ trunk/mail/src/ui.ycp Wed Jul 13 13:19:54 2011 @@ -376,12 +376,10 @@ `Left(`RadioButton(`id("must"), _("Enforce"),TLSmust)) ) ), - // Translators: button - // TODO ... - `PushButton (`id(`outgoing_details), _("&Masquerading")), - // Translators: button - // TODO ... - `PushButton (`id(`outgoing_auth_opts), _("&Authentication")) + `ButtonBox( + `PushButton (`id(`outgoing_details), _("&Masquerading")), + `PushButton (`id(`outgoing_auth_opts), _("&Authentication")) + ) ) ); buttons = add (buttons, `outgoing_details); @@ -525,12 +523,10 @@ i_contents = add ( i_contents, // menu button: details of incoming mail - `HBox ( - // pushbutton - `PushButton (`id (`aliases), _("&Aliases...")), - // pushbutton - `PushButton (`id (`virtual), _("&Virtual domains...")) - ) + `ButtonBox( + `PushButton (`id (`aliases), _("&Aliases...")), + `PushButton (`id (`virtual), _("&Virtual domains...")) + ) ); buttons = flatten ([buttons, [`downloading, `aliases, `virtual]]); @@ -709,8 +705,8 @@ // Translators: text entry label `Left (`TextEntry (`id (`address), _("&Display as"), address)), `VSpacing(0.2), - `HBox(`PushButton(`id(`ok), `opt(`default, `key_F10), Label::OKButton()), - `PushButton(`id(`cancel), `opt (`key_F9), Label::CancelButton())), + `ButtonBox(`PushButton(`id(`ok), `opt(`default, `key_F10), Label::OKButton()), + `PushButton(`id(`cancel), `opt (`key_F9), Label::CancelButton())), `VSpacing(0.2) ), `HSpacing(1) @@ -829,12 +825,9 @@ `HWeight (2, `TextEntry (`id (`address), _("Display as"), "holly@red.dwarf")) ), */ - `HBox( - // Translators: button + `ButtonBox( `PushButton(`id(`add), `opt (`key_F3), _("A&dd")), - // Translators: button `PushButton(`id(`edit), `opt (`key_F4), _("&Edit")), - // Translators: button `PushButton(`id(`delete), `opt (`key_F5), _("Dele&te")) ), `VSpacing (1) @@ -1085,8 +1078,8 @@ `Left (WJ_MakeWidget (`fm_password)), `Left (WJ_MakeWidget (`fm_local_user)), `VSpacing(0.2), - `HBox(`PushButton(`id(`ok), `opt(`default, `key_F10), Label::OKButton()), - `PushButton(`id(`cancel), `opt (`key_F9), Label::CancelButton())), + `ButtonBox(`PushButton(`id(`ok), `opt(`default, `key_F10), Label::OKButton()), + `PushButton(`id(`cancel), `opt (`key_F9), Label::CancelButton())), `VSpacing(0.2) ), `HSpacing(1) @@ -1173,12 +1166,9 @@ _("Local user")), makeItems (fm, ["server", "protocol", "remote_user", "local_user"]) ), - `HBox( - // Translators: button + `ButtonBox( `PushButton(`id(`add), `opt (`key_F3), _("A&dd")), - // Translators: button `PushButton(`id(`edit), `opt (`key_F4), _("&Edit")), - // Translators: button `PushButton(`id(`delete), `opt (`key_F5), _("De&lete")) ), `VSpacing (0.2) @@ -1254,8 +1244,8 @@ // Translators: text entry label `Left (`TextEntry (`id (`destinations), _("&Destinations"), destinations)), `VSpacing(0.2), - `HBox(`PushButton(`id(`ok), `opt(`default, `key_F10), Label::OKButton()), - `PushButton(`id(`cancel), `opt (`key_F9), Label::CancelButton())), + `ButtonBox(`PushButton(`id(`ok), `opt(`default, `key_F10), Label::OKButton()), + `PushButton(`id(`cancel), `opt (`key_F9), Label::CancelButton())), `VSpacing(0.2) ), `HSpacing(1) @@ -1330,13 +1320,11 @@ _("Destinations")), makeItems (aliases, ["alias", "destinations"]) ), - `Left( `HBox( - // Translators: button - `PushButton(`id(`add), `opt (`key_F3), _("A&dd")), - // Translators: button - `PushButton(`id(`edit), `opt (`key_F4), _("&Edit")), - // Translators: button - `PushButton(`id(`delete), `opt (`key_F5), _("De&lete")) + `Left( + `ButtonBox( + `PushButton(`id(`add), `opt (`key_F3), _("A&dd")), + `PushButton(`id(`edit), `opt (`key_F4), _("&Edit")), + `PushButton(`id(`delete), `opt (`key_F5), _("De&lete")) )), `VSpacing (0.2) ); @@ -1418,13 +1406,11 @@ _("Destinations")), makeItems (vu, ["alias", "destinations"]) ), - `Left(`HBox( - // Translators: button - `PushButton(`id(`add), `opt (`key_F3), _("A&dd")), - // Translators: button - `PushButton(`id(`edit), `opt (`key_F4), _("&Edit")), - // Translators: button - `PushButton(`id(`delete), `opt (`key_F5), _("De&lete")) + `Left( + `ButtonBox( + `PushButton(`id(`add), `opt (`key_F3), _("A&dd")), + `PushButton(`id(`edit), `opt (`key_F4), _("&Edit")), + `PushButton(`id(`delete), `opt (`key_F5), _("De&lete")) )), `VSpacing (0.2) ); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
varkoly@svn2.opensuse.org