Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.Designer.cs =================================================================== diff -u -r2e7596ec3ca6c2e22c2554b86a453d83e4cf2c0c -r1415a03f7cf9716016602784586b8f5da3cf4def --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 2e7596ec3ca6c2e22c2554b86a453d83e4cf2c0c) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 1415a03f7cf9716016602784586b8f5da3cf4def) @@ -370,7 +370,7 @@ } /// - /// Looks up a localized string similar to Fb [-]. + /// Looks up a localized string similar to Modelfactor Fb [-]. /// public static string GrassCoverErosionInwardsInput_FbFactor_DisplayName { get { @@ -388,7 +388,7 @@ } /// - /// Looks up a localized string similar to Fn [-]. + /// Looks up a localized string similar to Modelfactor Fn [-]. /// public static string GrassCoverErosionInwardsInput_FnFactor_DisplayName { get { @@ -406,7 +406,7 @@ } /// - /// Looks up a localized string similar to Frunup [-]. + /// Looks up a localized string similar to Modelfactor Frunup [-]. /// public static string GrassCoverErosionInwardsInput_FrunupModelFactor_DisplayName { get { @@ -424,7 +424,7 @@ } /// - /// Looks up a localized string similar to Fondiep [-]. + /// Looks up a localized string similar to Modelfactor Fondiep [-]. /// public static string GrassCoverErosionInwardsInput_FshallowModelFactor_DisplayName { get { Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.resx =================================================================== diff -u -r2e7596ec3ca6c2e22c2554b86a453d83e4cf2c0c -r1415a03f7cf9716016602784586b8f5da3cf4def --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.resx (.../Resources.resx) (revision 2e7596ec3ca6c2e22c2554b86a453d83e4cf2c0c) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.resx (.../Resources.resx) (revision 1415a03f7cf9716016602784586b8f5da3cf4def) @@ -230,25 +230,25 @@ De parameter 'Fb' die gebruikt wordt in de berekening. - Fb [-] + Modelfactor Fb [-] De parameter 'Fn' die gebruikt wordt in de berekening. - Fn [-] + Modelfactor Fn [-] De parameter 'Fondiep' die gebruikt wordt in de berekening. - Fondiep [-] + Modelfactor Fondiep [-] De parameter 'Frunup' die gebruikt wordt in de berekening. - Frunup [-] + Modelfactor Frunup [-] De naam van de berekening voor grasbekleding erosie kruin en binnentalud. Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/GrassCoverErosionInwardsFailureMechanismContextPropertiesTest.cs =================================================================== diff -u -r0bfca392717044da8addac9f1b81b29f287812d5 -r1415a03f7cf9716016602784586b8f5da3cf4def --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/GrassCoverErosionInwardsFailureMechanismContextPropertiesTest.cs (.../GrassCoverErosionInwardsFailureMechanismContextPropertiesTest.cs) (revision 0bfca392717044da8addac9f1b81b29f287812d5) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/GrassCoverErosionInwardsFailureMechanismContextPropertiesTest.cs (.../GrassCoverErosionInwardsFailureMechanismContextPropertiesTest.cs) (revision 1415a03f7cf9716016602784586b8f5da3cf4def) @@ -154,25 +154,25 @@ PropertyDescriptor frunupModelFactorProperty = dynamicProperties[frunupModelFactorPropertyIndex]; Assert.IsNotNull(frunupModelFactorProperty); Assert.IsTrue(frunupModelFactorProperty.IsReadOnly); - Assert.AreEqual("Frunup [-]", frunupModelFactorProperty.DisplayName); + Assert.AreEqual("Modelfactor Frunup [-]", frunupModelFactorProperty.DisplayName); Assert.AreEqual("De parameter 'Frunup' die gebruikt wordt in de berekening.", frunupModelFactorProperty.Description); PropertyDescriptor fbModelProperty = dynamicProperties[fbFactorPropertyIndex]; Assert.IsNotNull(fbModelProperty); Assert.IsTrue(fbModelProperty.IsReadOnly); - Assert.AreEqual("Fb [-]", fbModelProperty.DisplayName); + Assert.AreEqual("Modelfactor Fb [-]", fbModelProperty.DisplayName); Assert.AreEqual("De parameter 'Fb' die gebruikt wordt in de berekening.", fbModelProperty.Description); PropertyDescriptor fnFactorProperty = dynamicProperties[fnFactorPropertyIndex]; Assert.IsNotNull(fnFactorProperty); Assert.IsTrue(fnFactorProperty.IsReadOnly); - Assert.AreEqual("Fn [-]", fnFactorProperty.DisplayName); + Assert.AreEqual("Modelfactor Fn [-]", fnFactorProperty.DisplayName); Assert.AreEqual("De parameter 'Fn' die gebruikt wordt in de berekening.", fnFactorProperty.Description); PropertyDescriptor fshallowProperty = dynamicProperties[fshallowModelFactorPropertyIndex]; Assert.IsNotNull(fshallowProperty); Assert.IsTrue(fshallowProperty.IsReadOnly); - Assert.AreEqual("Fondiep [-]", fshallowProperty.DisplayName); + Assert.AreEqual("Modelfactor Fondiep [-]", fshallowProperty.DisplayName); Assert.AreEqual("De parameter 'Fondiep' die gebruikt wordt in de berekening.", fshallowProperty.Description); }