[yast-commit] r66702 - in /trunk/firewall: VERSION package/yast2-firewall.changes src/subdialogs.ycp
Author: locilka Date: Fri Nov 4 15:50:21 2011 New Revision: 66702 URL: http://svn.opensuse.org/viewcvs/yast?rev=66702&view=rev Log: - Added function keys for buttons (bnc#595564) - 2.21.2 Modified: trunk/firewall/VERSION trunk/firewall/package/yast2-firewall.changes trunk/firewall/src/subdialogs.ycp Modified: trunk/firewall/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/firewall/VERSION?rev=66702&r1=66701&r2=66702&view=diff ============================================================================== --- trunk/firewall/VERSION (original) +++ trunk/firewall/VERSION Fri Nov 4 15:50:21 2011 @@ -1 +1 @@ -2.21.1 +2.21.2 Modified: trunk/firewall/package/yast2-firewall.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/firewall/package/yast2-firewall.changes?rev=66702&r1=66701&r2=66702&view=diff ============================================================================== --- trunk/firewall/package/yast2-firewall.changes (original) +++ trunk/firewall/package/yast2-firewall.changes Fri Nov 4 15:50:21 2011 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Fri Nov 4 15:50:22 CET 2011 - locilka@suse.cz + +- Added function keys for buttons (bnc#595564) +- 2.21.2 + +------------------------------------------------------------------- Thu Oct 13 10:34:54 CEST 2011 - locilka@suse.cz - Fixed a typo in text marked for translation (bnc#722459). Modified: trunk/firewall/src/subdialogs.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/firewall/src/subdialogs.ycp?rev=66702&r1=66701&r2=66702&view=diff ============================================================================== --- trunk/firewall/src/subdialogs.ycp (original) +++ trunk/firewall/src/subdialogs.ycp Fri Nov 4 15:50:21 2011 @@ -75,9 +75,9 @@ ), `HBox ( // TRANSLATORS: push button - `PushButton(`id("change_firewall_interface"), _("&Change...")), + `PushButton(`id("change_firewall_interface"), `opt(`key_F4), _("&Change...")), // TRANSLATORS: push button - `PushButton(`id("user_defined_firewall_interface"), _("C&ustom...")), + `PushButton(`id("user_defined_firewall_interface"), `opt(`key_F7), _("C&ustom...")), `HStretch () ) ) @@ -225,14 +225,14 @@ ), `HSquash( `VBox ( `VSpacing( 1.1 ), - `PushButton ( `id ( "add_allowed_service" ), `opt ( `hstretch ), " " + Label::AddButton() + " "), + `PushButton ( `id ( "add_allowed_service" ), `opt ( `hstretch, `key_F3 ), " " + Label::AddButton() + " "), - `PushButton ( `id ( "remove_allowed_service" ), `opt ( `hstretch ), " " + Label::DeleteButton() + " "), + `PushButton ( `id ( "remove_allowed_service" ), `opt ( `hstretch, `key_F5 ), " " + Label::DeleteButton() + " "), `Empty(`opt(`vstretch)), // TRANSLATORS: push button - `PushButton ( `id ( "advanced_allowed_service" ), `opt ( `hstretch ), " " + _("A&dvanced...") + " ") + `PushButton ( `id ( "advanced_allowed_service" ), `opt ( `hstretch, `key_F7 ), " " + _("A&dvanced...") + " ") )) ) ); @@ -264,8 +264,8 @@ ), [] ), `HBox ( - `PushButton(`id("add_redirect_to_masquerade"), Label::AddButton()), - `PushButton(`id("remove_redirect_to_masquerade"), Label::DeleteButton()), + `PushButton(`id("add_redirect_to_masquerade"), `opt(`key_F3), Label::AddButton()), + `PushButton(`id("remove_redirect_to_masquerade"), `opt(`key_F5), Label::DeleteButton()), `HStretch() ) ) @@ -408,8 +408,8 @@ ), [] ), `HBox ( - `PushButton(`id("add_redirect_to_masquerade"), Label::AddButton()), - `PushButton(`id("remove_redirect_to_masquerade"), Label::DeleteButton()), + `PushButton(`id("add_redirect_to_masquerade"), `opt(`key_F3), Label::AddButton()), + `PushButton(`id("remove_redirect_to_masquerade"), `opt(`key_F5), Label::DeleteButton()), `HStretch() ) ) @@ -772,8 +772,8 @@ [] ), `Left (`HBox ( - `PushButton (`id (`add_br), _("&Add...")), - `PushButton (`id (`delete_br), _("&Delete")) + `PushButton (`id (`add_br), `opt(`key_F3), _("&Add...")), + `PushButton (`id (`delete_br), `opt(`key_F5), _("&Delete")) )) ); @@ -909,8 +909,8 @@ [] ), `HBox ( - `PushButton(`id("add_custom_rule"), Label::AddButton()), - `PushButton(`id("remove_custom_rule"), Label::DeleteButton()), + `PushButton(`id("add_custom_rule"), `opt(`key_F3), Label::AddButton()), + `PushButton(`id("remove_custom_rule"), `opt(`key_F5), Label::DeleteButton()), `HStretch () ) ) -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
locilka@svn2.opensuse.org