Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Factories/RingtoetsGraphNodeFactory.cs =================================================================== diff -u -r8b993914a9b8d47bb8da57551ed8f2343b64c221 -r68d24e6a02a69703c3bd8b7cee734fdc8c17b23c --- Ringtoets/Common/src/Ringtoets.Common.Forms/Factories/RingtoetsGraphNodeFactory.cs (.../RingtoetsGraphNodeFactory.cs) (revision 8b993914a9b8d47bb8da57551ed8f2343b64c221) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/Factories/RingtoetsGraphNodeFactory.cs (.../RingtoetsGraphNodeFactory.cs) (revision 68d24e6a02a69703c3bd8b7cee734fdc8c17b23c) @@ -161,9 +161,9 @@ private static string CreateGraphNodeContent(RoundedDouble beta) { - return string.Format(Resources.GraphNodeConverter_GraphNodeContent_Beta_0_Probability_1, - beta, - ProbabilityFormattingHelper.Format(StatisticsConverter.ReliabilityToProbability(beta))); + return string.Format(Resources.GraphNodeConverter_GraphNodeContent_Probability_0_Beta_1, + ProbabilityFormattingHelper.Format(StatisticsConverter.ReliabilityToProbability(beta)), + beta); } } } \ No newline at end of file Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs =================================================================== diff -u -r6e293220ef3a2d80047bfc95a7b979c3946ce3fa -r68d24e6a02a69703c3bd8b7cee734fdc8c17b23c --- Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 6e293220ef3a2d80047bfc95a7b979c3946ce3fa) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 68d24e6a02a69703c3bd8b7cee734fdc8c17b23c) @@ -2095,12 +2095,12 @@ /// /// Looks up a localized string similar to - ///Beta = {0} - ///Pf = {1}. + ///Berekende kans = {0} + ///Betrouwbaarheidsindex = {1}. /// - public static string GraphNodeConverter_GraphNodeContent_Beta_0_Probability_1 { + public static string GraphNodeConverter_GraphNodeContent_Probability_0_Beta_1 { get { - return ResourceManager.GetString("GraphNodeConverter_GraphNodeContent_Beta_0_Probability_1", resourceCulture); + return ResourceManager.GetString("GraphNodeConverter_GraphNodeContent_Probability_0_Beta_1", resourceCulture); } } Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx =================================================================== diff -u -r6e293220ef3a2d80047bfc95a7b979c3946ce3fa -r68d24e6a02a69703c3bd8b7cee734fdc8c17b23c --- Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision 6e293220ef3a2d80047bfc95a7b979c3946ce3fa) +++ Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision 68d24e6a02a69703c3bd8b7cee734fdc8c17b23c) @@ -1249,10 +1249,10 @@ Afgeleide variabelen - + -Beta = {0} -Pf = {1} +Berekende kans = {0} +Betrouwbaarheidsindex = {1} En Index: Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Factories/RingtoetsGraphNodeFactoryTest.cs =================================================================== diff -u -rac96d7c315129af851634ed5a4a6800b59ede718 -r68d24e6a02a69703c3bd8b7cee734fdc8c17b23c --- Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Factories/RingtoetsGraphNodeFactoryTest.cs (.../RingtoetsGraphNodeFactoryTest.cs) (revision ac96d7c315129af851634ed5a4a6800b59ede718) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.Test/Factories/RingtoetsGraphNodeFactoryTest.cs (.../RingtoetsGraphNodeFactoryTest.cs) (revision 68d24e6a02a69703c3bd8b7cee734fdc8c17b23c) @@ -220,8 +220,8 @@ return $"{name}{Environment.NewLine}" + $"{Environment.NewLine}" + - $"Beta = {roundedBeta}{Environment.NewLine}" + - $"Pf = {probability}"; + $"Berekende kans = {probability}{Environment.NewLine}" + + $"Betrouwbaarheidsindex = {roundedBeta}"; } private static string CreateExpectedGraphConnectingNodeContent(CombinationType combinationType)