[yast-commit] r67816 - in /trunk/sudo: VERSION package/yast2-sudo.changes src/Sudo.ycp src/dialog-host.ycp src/dialog-spec.ycp src/dialogs.ycp src/helps.ycp yast2-sudo.spec.in
Author: jsuchome Date: Thu Mar 29 16:08:03 2012 New Revision: 67816 URL: http://svn.opensuse.org/viewcvs/yast?rev=67816&view=rev Log: - merge proofread texts - confirmed license - 2.22.0 Modified: trunk/sudo/VERSION trunk/sudo/package/yast2-sudo.changes trunk/sudo/src/Sudo.ycp trunk/sudo/src/dialog-host.ycp trunk/sudo/src/dialog-spec.ycp trunk/sudo/src/dialogs.ycp trunk/sudo/src/helps.ycp trunk/sudo/yast2-sudo.spec.in Modified: trunk/sudo/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/sudo/VERSION?rev=67816&r1=67815&r... ============================================================================== --- trunk/sudo/VERSION (original) +++ trunk/sudo/VERSION Thu Mar 29 16:08:03 2012 @@ -1 +1 @@ -2.21.1 +2.22.0 Modified: trunk/sudo/package/yast2-sudo.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/sudo/package/yast2-sudo.changes?r... ============================================================================== --- trunk/sudo/package/yast2-sudo.changes (original) +++ trunk/sudo/package/yast2-sudo.changes Thu Mar 29 16:08:03 2012 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Thu Mar 29 16:06:50 CEST 2012 - jsuchome@suse.cz + +- merge proofread texts +- confirmed license +- 2.22.0 + +------------------------------------------------------------------- Thu Sep 22 11:39:21 CEST 2011 - visnov@suse.cz - set dialog title Modified: trunk/sudo/src/Sudo.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/sudo/src/Sudo.ycp?rev=67816&r1=67... ============================================================================== --- trunk/sudo/src/Sudo.ycp (original) +++ trunk/sudo/src/Sudo.ycp Thu Mar 29 16:08:03 2012 @@ -395,7 +395,7 @@ global boolean Abort() { if (Sudo::GetModified()) { - return Popup::YesNo( _("All changes will be lost. Really quit sudo configuration without saving ?")); + return Popup::YesNo( _("All changes will be lost. Really quit sudo configuration without saving?")); } else return true; Modified: trunk/sudo/src/dialog-host.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/sudo/src/dialog-host.ycp?rev=6781... ============================================================================== --- trunk/sudo/src/dialog-host.ycp (original) +++ trunk/sudo/src/dialog-host.ycp Thu Mar 29 16:08:03 2012 @@ -45,7 +45,7 @@ term contents = `VBox ( `Left( `InputField(`id("host_alias_name"),_("Alias Name (in CAPITALS)"))), `Left(`Label(_("Hostnames or Networks in the Alias"))), - `Table(`id("host_alias_members"),`header(_("Host Names/Networks")),[]), + `Table(`id("host_alias_members"),`header(_("Hostnames/Networks")),[]), `Left(`HBox( `PushButton ( `id ( "add_host" ), `opt(`key_F3), " " + Label::AddButton() + " "), `PushButton ( `id ( "edit_host" ), `opt(`key_F4), " " + Label::EditButton() + " "), Modified: trunk/sudo/src/dialog-spec.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/sudo/src/dialog-spec.ycp?rev=6781... ============================================================================== --- trunk/sudo/src/dialog-spec.ycp (original) +++ trunk/sudo/src/dialog-spec.ycp Thu Mar 29 16:08:03 2012 @@ -94,12 +94,12 @@ spec["tag"] = ""; if (spec["user"]:"" == "") { - Popup::Error(_("User name must not be empty.")); + Popup::Error(_("Username must not be empty.")); UI::SetFocus(`id("user_name")); continue; } if (spec["host"]:"" == "") { - Popup::Error(_("Host name must not be empty.")); + Popup::Error(_("Hostname must not be empty.")); UI::SetFocus(`id("host_name")); continue; } @@ -108,7 +108,7 @@ continue; } if (spec["commands"]:[] == [] ) { - Popup::Error(_("Command list must have at least one entry")); + Popup::Error(_("Command list must have at least one entry.")); UI::SetFocus(`id("commands")); continue; } Modified: trunk/sudo/src/dialogs.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/sudo/src/dialogs.ycp?rev=67816&r1... ============================================================================== --- trunk/sudo/src/dialogs.ycp (original) +++ trunk/sudo/src/dialogs.ycp Thu Mar 29 16:08:03 2012 @@ -171,8 +171,8 @@ boolean confirm_delete = true; if(Sudo::SearchRules("host",name)) { - if (!Popup::ContinueCancel (sformat(_("Host alias %1 is being used in one of sudo rules. -Deleting it may result in an inconsistent sudo configuration file. Really delete it ? + if (!Popup::ContinueCancel (sformat(_("Host alias %1 is being used in one of the sudo rules. +Deleting it may result in an inconsistent sudo configuration file. Really delete it? "), name))) confirm_delete = false; } @@ -214,8 +214,8 @@ boolean confirm_delete = true; if(Sudo::SearchRules("user",name)) { - if ( !Popup::ContinueCancel (sformat(_("User alias %1 is being used in one of sudo rules . -Deleting it may result in an inconsistent sudo configuration file. Really delete it ? + if ( !Popup::ContinueCancel (sformat(_("User alias %1 is being used in one of the sudo rules. +Deleting it may result in an inconsistent sudo configuration file. Really delete it? "), name))) confirm_delete = false; } @@ -256,8 +256,8 @@ boolean confirm_delete = true; if(Sudo::SearchRules("run_as","(" + name + ")")) { - if (!Popup::ContinueCancel (sformat(_("RunAs alias %1 is being used in one of sudo rules. -Deleting it may result in an inconsistent sudo configuration file. Really delete it ? + if (!Popup::ContinueCancel (sformat(_("RunAs alias %1 is being used in one of the sudo rules. +Deleting it may result in an inconsistent sudo configuration file. Really delete it? "), name))) confirm_delete = false; } @@ -299,8 +299,8 @@ boolean confirm_delete = true; if(Sudo::SearchRules("commands",name)) { - if (!Popup::ContinueCancel (sformat(_("Command alias %1 is being used in one of sudo rules. -Deleting it may result in an inconsistent sudo configuration file. Really delete it ? + if (!Popup::ContinueCancel (sformat(_("Command alias %1 is being used in one of the sudo rules. +Deleting it may result in an inconsistent sudo configuration file. Really delete it? "), name))) confirm_delete = false; } Modified: trunk/sudo/src/helps.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/sudo/src/helps.ycp?rev=67816&r1=6... ============================================================================== --- trunk/sudo/src/helps.ycp (original) +++ trunk/sudo/src/helps.ycp Thu Mar 29 16:08:03 2012 @@ -38,7 +38,7 @@ /* Read dialog help 1/2 */ "read" : _("<p><b><big>Initializing sudo Configuration</big></b><br> -Please wait...<br></p> +</p> ") + /* Read dialog help 2/2 */ @@ -48,7 +48,7 @@ /* Write dialog help 1/2 */ "write" : _("<p><b><big>Saving sudo Configuration</big></b><br> -Please wait...<br></p> +</p> ") + /* Write dialog help 2/2 */ Modified: trunk/sudo/yast2-sudo.spec.in URL: http://svn.opensuse.org/viewcvs/yast/trunk/sudo/yast2-sudo.spec.in?rev=67816... ============================================================================== --- trunk/sudo/yast2-sudo.spec.in (original) +++ trunk/sudo/yast2-sudo.spec.in Thu Mar 29 16:08:03 2012 @@ -1,8 +1,8 @@ @HEADER-COMMENT@ @HEADER@ -Group: System/YaST -License: GPL-2.0+ +Group: System/YaST +License: GPL-2.0 Requires: yast2-users # Wizard::SetDesktopTitleAndIcon Requires: yast2 >= 2.21.22 -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
jsuchome@svn2.opensuse.org