Index: Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.Designer.cs =================================================================== diff -u -rcfe021e0a95e45f988b9535c2e5edf39d9ff5545 -r6bdea2261c016e319cf32c6abb1e4a457ecc4efd --- Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision cfe021e0a95e45f988b9535c2e5edf39d9ff5545) +++ Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 6bdea2261c016e319cf32c6abb1e4a457ecc4efd) @@ -644,6 +644,15 @@ } /// + /// Looks up a localized string similar to De bijdragen van de maatgevende scenario's voor dit vak moeten opgeteld gelijk zijn aan 100%.. + /// + public static string CalculationScenarios_Scenario_contribution_for_this_section_not_100 { + get { + return ResourceManager.GetString("CalculationScenarios_Scenario_contribution_for_this_section_not_100", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Damhoogte [m+NAP]. /// public static string CalculationsView_BreakWaterHeight_DisplayName { @@ -1863,16 +1872,6 @@ } /// - /// Looks up a localized string similar to De bijdragen van de maatgevende scenario's voor dit vak moeten opgeteld gelijk zijn aan 100%.. - /// - public static string FailureMechanismSectionResultRowWithCalculatedProbabilityErrorProvider_Scenario_contribution_for_this_section_not_100 { - get { - return ResourceManager.GetString("FailureMechanismSectionResultRowWithCalculatedProbabilityErrorProvider_Scenario_c" + - "ontribution_for_this_section_not_100", resourceCulture); - } - } - - /// /// Looks up a localized string similar to Vakindeling waarmee de waterkering voor dit faalmechanisme is geschematiseerd ten behoeve van de beoordeling.. /// public static string FailureMechanismSections_Description { Index: Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.resx =================================================================== diff -u -rcfe021e0a95e45f988b9535c2e5edf39d9ff5545 -r6bdea2261c016e319cf32c6abb1e4a457ecc4efd --- Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision cfe021e0a95e45f988b9535c2e5edf39d9ff5545) +++ Riskeer/Common/src/Riskeer.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision 6bdea2261c016e319cf32c6abb1e4a457ecc4efd) @@ -272,7 +272,7 @@ PublicKeyToken=b03f5f7f11d50a3a - De bijdragen van de maatgevende scenario's voor dit vak moeten opgeteld gelijk zijn aan 100%. Index: Riskeer/Common/src/Riskeer.Common.Forms/Providers/FailureMechanismSectionResultRowWithCalculatedProbabilityErrorProvider.cs =================================================================== diff -u -r6e3bc0437167a40cf4a79f0f04e31dc61ef4407f -r6bdea2261c016e319cf32c6abb1e4a457ecc4efd --- Riskeer/Common/src/Riskeer.Common.Forms/Providers/FailureMechanismSectionResultRowWithCalculatedProbabilityErrorProvider.cs (.../FailureMechanismSectionResultRowWithCalculatedProbabilityErrorProvider.cs) (revision 6e3bc0437167a40cf4a79f0f04e31dc61ef4407f) +++ Riskeer/Common/src/Riskeer.Common.Forms/Providers/FailureMechanismSectionResultRowWithCalculatedProbabilityErrorProvider.cs (.../FailureMechanismSectionResultRowWithCalculatedProbabilityErrorProvider.cs) (revision 6bdea2261c016e319cf32c6abb1e4a457ecc4efd) @@ -90,7 +90,7 @@ if (Math.Abs(CalculationScenarioHelper.GetTotalContribution(relevantScenarios) - 1.0) > 1e-6) { - return Resources.FailureMechanismSectionResultRowWithCalculatedProbabilityErrorProvider_Scenario_contribution_for_this_section_not_100; + return Resources.CalculationScenarios_Scenario_contribution_for_this_section_not_100; } if (!relevantScenarios.All(s => s.HasOutput)) Index: Riskeer/Common/src/Riskeer.Common.Forms/Views/ScenariosView.cs =================================================================== diff -u -rcfe021e0a95e45f988b9535c2e5edf39d9ff5545 -r6bdea2261c016e319cf32c6abb1e4a457ecc4efd --- Riskeer/Common/src/Riskeer.Common.Forms/Views/ScenariosView.cs (.../ScenariosView.cs) (revision cfe021e0a95e45f988b9535c2e5edf39d9ff5545) +++ Riskeer/Common/src/Riskeer.Common.Forms/Views/ScenariosView.cs (.../ScenariosView.cs) (revision 6bdea2261c016e319cf32c6abb1e4a457ecc4efd) @@ -247,7 +247,7 @@ double roundedTotalScenarioContribution = new RoundedDouble(2, totalScenarioContribution); if (Math.Abs(totalScenarioContribution - 100) >= 1e-6) { - SetErrorMessage(Resources.FailureMechanismSectionResultRowWithCalculatedProbabilityErrorProvider_Scenario_contribution_for_this_section_not_100); + SetErrorMessage(Resources.CalculationScenarios_Scenario_contribution_for_this_section_not_100); } labelTotalScenarioContribution.Text = string.Format(Resources.ScenariosView_Total_contribution_of_relevant_scenarios_for_this_section_is_equal_to_total_scenario_contribution_0_,