[yast-commit] r67786 - in /trunk/multipath/src: Multipath.ycp complex.ycp helps.ycp
Author: jsuchome Date: Thu Mar 29 15:25:07 2012 New Revision: 67786 URL: http://svn.opensuse.org/viewcvs/yast?rev=67786&view=rev Log: - merged proofread texts Modified: trunk/multipath/src/Multipath.ycp trunk/multipath/src/complex.ycp trunk/multipath/src/helps.ycp Modified: trunk/multipath/src/Multipath.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/multipath/src/Multipath.ycp?rev=6... ============================================================================== --- trunk/multipath/src/Multipath.ycp (original) +++ trunk/multipath/src/Multipath.ycp Thu Mar 29 15:25:07 2012 @@ -107,31 +107,31 @@ ret = Read_MultipathConfig(); if(ret == false) { - Report::Error(_("Cannot read multipath section in multipath configuration")); + Report::Error(_("Cannot read multipath section in multipath configuration.")); return false; } ret = Read_DefaultsConfig(); if(ret == false) { - Report::Error(_("Cannot read defaults section in multipath configuration")); + Report::Error(_("Cannot read defaults section in multipath configuration.")); return false; } ret = Read_BlacklistConfig(); if(ret == false) { - Report::Error(_("Cannot read blacklist section in multipath configuration")); + Report::Error(_("Cannot read blacklist section in multipath configuration.")); return false; } ret = Read_BlacklistException_Config(); if(ret == false) { - Report::Error(_("Cannot read blacklist_exceptions section in multipath configuration")); + Report::Error(_("Cannot read blacklist_exceptions section in multipath configuration.")); return false; } ret = Read_DeviceConfig(); if(ret == false) { - Report::Error(_("Cannot read devices section in multipath configuration")); + Report::Error(_("Cannot read devices section in multipath configuration.")); return false; } return true; @@ -146,7 +146,7 @@ boolean ret = false; /* Multipath read dialog caption */ - string caption = _("Initializing multipath Configuration"); + string caption = _("Initializing Multipath Configuration"); integer steps = 4; @@ -180,7 +180,7 @@ if (Mode::normal() && Stage::normal()) { ret = PackageSystem::CheckAndInstallPackagesInteractive (required_pack_list); if (ret == false) { - Report::Error(_("Cannot install required packages")); + Report::Error(_("Cannot install required packages.")); return false; } } else { @@ -236,7 +236,7 @@ */ global boolean Write() { /* Multipath read dialog caption */ - string caption = _("Saving multipath Configuration"); + string caption = _("Saving Multipath Configuration"); integer steps = 2; @@ -280,7 +280,7 @@ if(service_status == 1) { if (Mode::normal() && Stage::normal()) { if( 0 != SCR::Execute(.target.bash, "/etc/init.d/multipathd restart")) { - Report::Error(_("Restart multipathd failed.")); + Report::Error(_("Restarting multipathd failed.")); return false; } } else { @@ -395,7 +395,7 @@ continue; } else if(ret == `start_multipath) { if (Modified() == true && - Popup::YesNo(_("Ignore your modification ?")) == false) + Popup::YesNo(_("Ignore your modification?")) == false) { Update_Service_Status(); continue; @@ -405,7 +405,7 @@ continue; } else if(ret == `stop_multipath) { if (Modified() == true && - Popup::YesNo(_("Ignore your modification ?")) == false) + Popup::YesNo(_("Ignore your modification?")) == false) { Update_Service_Status(); continue; Modified: trunk/multipath/src/complex.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/multipath/src/complex.ycp?rev=677... ============================================================================== --- trunk/multipath/src/complex.ycp (original) +++ trunk/multipath/src/complex.ycp Thu Mar 29 15:25:07 2012 @@ -2721,7 +2721,7 @@ boolean ret = Service::Enable("boot.multipath"); if (ret == false) { - prop_info = prop_info + _("* Can not enable boot.multipath") + "\n"; + prop_info = prop_info + _("* Cannot enable boot.multipath.") + "\n"; Popup::Message(prop_info); Update_Service_Status(); return; @@ -2729,7 +2729,7 @@ ret = Service::Enable("multipathd"); if (ret == false) { - prop_info = prop_info + _("* Can not enable multipathd") + "\n"; + prop_info = prop_info + _("* Cannot enable multipathd.") + "\n"; Popup::Message(prop_info); Update_Service_Status(); return; @@ -2739,7 +2739,7 @@ ret = Service::Start("multipathd"); if (ret == false) { - prop_info = prop_info + _("* Can not start multipathd") + "\n"; + prop_info = prop_info + _("* Cannot start multipathd.") + "\n"; Popup::Message(prop_info); Update_Service_Status(); return; @@ -2764,7 +2764,7 @@ boolean ret = Service::Stop("multipathd"); if (ret == false) { - prop_info = prop_info + _("* Can not stop multipath") + "\n"; + prop_info = prop_info + _("* Cannot stop multipath.") + "\n"; Popup::Message(prop_info); Update_Service_Status(); return; @@ -2774,7 +2774,7 @@ ret = Service::Disable("multipathd"); if (ret == false) { - prop_info = prop_info + _("* Can not disable multipathd") + "\n"; + prop_info = prop_info + _("* Cannot disable multipathd.") + "\n"; Popup::Message(prop_info); Update_Service_Status(); return; @@ -2782,7 +2782,7 @@ ret = Service::Disable("boot.multipath"); if (ret == false) { - prop_info = prop_info + _("* Can not disable boot.multipath") + "\n"; + prop_info = prop_info + _("* Cannot disable boot.multipath.") + "\n"; Popup::Message(prop_info); Update_Service_Status(); return; Modified: trunk/multipath/src/helps.ycp URL: http://svn.opensuse.org/viewcvs/yast/trunk/multipath/src/helps.ycp?rev=67786... ============================================================================== --- trunk/multipath/src/helps.ycp (original) +++ trunk/multipath/src/helps.ycp Thu Mar 29 15:25:07 2012 @@ -37,13 +37,13 @@ map HELPS = $[ /* Read dialog help 1/2 */ - "read" : _("<p><b><big>Initializing multipath Configuration</big></b><br> -Please wait...<br></p> + "read" : _("<p><b><big>Initializing Multipath Configuration</big></b><br> +</p> "), /* Write dialog help 1/2 */ - "write" : _("<p><b><big>Saving multipath Configuration</big></b><br> -Please wait...<br></p> + "write" : _("<p><b><big>Saving Multipath Configuration</big></b><br> +</p> "), /* dialog help for Status help */ -- 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