Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs =================================================================== diff -u -r55a81328f28163bd26ab0ab33c8f1ec2829c03ea -r1edd1f9c6ff092aacca8ee4712515c05af923938 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 55a81328f28163bd26ab0ab33c8f1ec2829c03ea) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 1edd1f9c6ff092aacca8ee4712515c05af923938) @@ -173,7 +173,7 @@ } /// - /// Looks up a localized string similar to Assemblageresultaat is verouderd. Druk op de "Assemblageresultaat verversen" knop om opnieuw te berekenen.. + /// Looks up a localized string similar to Toetsoordeel is verouderd. Druk op de "Toetsoordeel verversen" knop om opnieuw te berekenen.. /// public static string AssemblyResultView_RefreshAssemblyResultsButton_Warning_Result_is_outdated_Press_Refresh_button_to_recalculate { get { @@ -782,7 +782,7 @@ } /// - /// Looks up a localized string similar to Assemblageresultaat verversen. + /// Looks up a localized string similar to Toetsoordeel verversen. /// public static string RefreshAssemblyResultsButton_Text { get { Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx =================================================================== diff -u -r55a81328f28163bd26ab0ab33c8f1ec2829c03ea -r1edd1f9c6ff092aacca8ee4712515c05af923938 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx (.../Resources.resx) (revision 55a81328f28163bd26ab0ab33c8f1ec2829c03ea) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx (.../Resources.resx) (revision 1edd1f9c6ff092aacca8ee4712515c05af923938) @@ -334,7 +334,7 @@ Faalkansruimte [1/jaar] - Assemblageresultaat verversen + Toetsoordeel verversen Kilometrering* van [km] @@ -346,7 +346,7 @@ Totaal vakoordeel - Assemblageresultaat is verouderd. Druk op de "Assemblageresultaat verversen" knop om opnieuw te berekenen. + Toetsoordeel is verouderd. Druk op de "Toetsoordeel verversen" knop om opnieuw te berekenen. De categoriegrenzen voor dit traject en toetsspoor. Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssemblyResultPerSectionViewTest.cs =================================================================== diff -u -r5afd07fe974d9cca3ec8f9bdce860bf03419a0e6 -r1edd1f9c6ff092aacca8ee4712515c05af923938 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssemblyResultPerSectionViewTest.cs (.../AssemblyResultPerSectionViewTest.cs) (revision 5afd07fe974d9cca3ec8f9bdce860bf03419a0e6) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssemblyResultPerSectionViewTest.cs (.../AssemblyResultPerSectionViewTest.cs) (revision 1edd1f9c6ff092aacca8ee4712515c05af923938) @@ -68,7 +68,7 @@ private const int duneErosionColumnIndex = 19; private const int technicalInnovationColumnIndex = 20; private const int expectedColumnCount = 21; - private const string assemblyResultOutdatedWarning = "Assemblageresultaat is verouderd. Druk op de \"Assemblageresultaat verversen\" knop om opnieuw te berekenen."; + private const string assemblyResultOutdatedWarning = "Toetsoordeel is verouderd. Druk op de \"Toetsoordeel verversen\" knop om opnieuw te berekenen."; private Form testForm; @@ -122,7 +122,7 @@ Assert.AreEqual(2, view.Controls.Count); var button = (Button) GetRefreshAssemblyResultButtonTester().TheObject; - Assert.AreEqual("Assemblageresultaat verversen", button.Text); + Assert.AreEqual("Toetsoordeel verversen", button.Text); Assert.IsFalse(button.Enabled); ErrorProvider errorProvider = GetErrorProvider(view); Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssemblyResultTotalViewTest.cs =================================================================== diff -u -r2403f936cf220459d68b0482bd34c201ae9b48ba -r1edd1f9c6ff092aacca8ee4712515c05af923938 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssemblyResultTotalViewTest.cs (.../AssemblyResultTotalViewTest.cs) (revision 2403f936cf220459d68b0482bd34c201ae9b48ba) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/AssemblyResultTotalViewTest.cs (.../AssemblyResultTotalViewTest.cs) (revision 1edd1f9c6ff092aacca8ee4712515c05af923938) @@ -71,7 +71,7 @@ private const string totalControlName = "totalAssemblyCategoryGroupControl"; private const string failureMechanismsWithProbabilityControlName = "failureMechanismsWithProbabilityAssemblyControl"; private const string failureMechanismsWithoutProbabilityControlName = "failureMechanismsWithoutProbabilityAssemblyControl"; - private const string assemblyResultOutdatedWarning = "Assemblageresultaat is verouderd. Druk op de \"Assemblageresultaat verversen\" knop om opnieuw te berekenen."; + private const string assemblyResultOutdatedWarning = "Toetsoordeel is verouderd. Druk op de \"Toetsoordeel verversen\" knop om opnieuw te berekenen."; private Form testForm; private static IEnumerable CellFormattingStates @@ -123,7 +123,7 @@ Assert.AreEqual(3, view.Controls.Count); Button button = GetRefreshAssemblyResultButtonTester().Properties; - Assert.AreEqual("Assemblageresultaat verversen", button.Text); + Assert.AreEqual("Toetsoordeel verversen", button.Text); Assert.IsFalse(button.Enabled); var groupBox = (GroupBox) new ControlTester("assemblyResultGroupBox").TheObject;