Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs
===================================================================
diff -u -r9d7f2272c40e0db6fbfbffa5f763933ec35672a7 -r9694f9b53551d6eb4641700e4aa3d0fc227ed592
--- Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 9d7f2272c40e0db6fbfbffa5f763933ec35672a7)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 9694f9b53551d6eb4641700e4aa3d0fc227ed592)
@@ -2911,6 +2911,15 @@
}
///
+ /// Looks up a localized string similar to Metrering* tot [m].
+ ///
+ public static string SectionEndDistance_DisplayName {
+ get {
+ return ResourceManager.GetString("SectionEndDistance_DisplayName", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
public static System.Drawing.Bitmap SectionsIcon {
@@ -2921,6 +2930,15 @@
}
///
+ /// Looks up a localized string similar to Metrering* van [m].
+ ///
+ public static string SectionStartDistance_DisplayName {
+ get {
+ return ResourceManager.GetString("SectionStartDistance_DisplayName", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized string similar to Gebruik.
///
public static string SelectionDialogBase_ColumnSelect_DisplayName {
Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx
===================================================================
diff -u -r9d7f2272c40e0db6fbfbffa5f763933ec35672a7 -r9694f9b53551d6eb4641700e4aa3d0fc227ed592
--- Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision 9d7f2272c40e0db6fbfbffa5f763933ec35672a7)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/Properties/Resources.resx (.../Resources.resx) (revision 9694f9b53551d6eb4641700e4aa3d0fc227ed592)
@@ -1470,4 +1470,10 @@
..\Resources\pencil--exclamation.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ Metrering* tot [m]
+
+
+ Metrering* van [m]
+
\ No newline at end of file
Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs
===================================================================
diff -u -rd35309e60d9809f8738475f967736d972081b474 -r9694f9b53551d6eb4641700e4aa3d0fc227ed592
--- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision d35309e60d9809f8738475f967736d972081b474)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 9694f9b53551d6eb4641700e4aa3d0fc227ed592)
@@ -119,24 +119,6 @@
}
///
- /// Looks up a localized string similar to Metrering* tot [m].
- ///
- public static string AssemblyResultPerSectionView_GridColumn_SectionEnd {
- get {
- return ResourceManager.GetString("AssemblyResultPerSectionView_GridColumn_SectionEnd", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Metrering* van [m].
- ///
- public static string AssemblyResultPerSectionView_GridColumn_SectionStart {
- get {
- return ResourceManager.GetString("AssemblyResultPerSectionView_GridColumn_SectionStart", resourceCulture);
- }
- }
-
- ///
/// Looks up a localized string similar to Gecombineerd toetsoordeel.
///
public static string AssemblyResultTotalView_AssemblyResultGroupBox_Text {
Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx
===================================================================
diff -u -rd35309e60d9809f8738475f967736d972081b474 -r9694f9b53551d6eb4641700e4aa3d0fc227ed592
--- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx (.../Resources.resx) (revision d35309e60d9809f8738475f967736d972081b474)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx (.../Resources.resx) (revision 9694f9b53551d6eb4641700e4aa3d0fc227ed592)
@@ -336,12 +336,6 @@
Toetsoordeel verversen
-
- Metrering* van [m]
-
-
- Metrering* tot [m]
-
Toetsoordeel is verouderd. Druk op de "Toetsoordeel verversen" knop om opnieuw te berekenen.
Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyResultPerSectionView.cs
===================================================================
diff -u -r91a5d8f7c8b54588748ae979c9e26ef72207768f -r9694f9b53551d6eb4641700e4aa3d0fc227ed592
--- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyResultPerSectionView.cs (.../AssemblyResultPerSectionView.cs) (revision 91a5d8f7c8b54588748ae979c9e26ef72207768f)
+++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/AssemblyResultPerSectionView.cs (.../AssemblyResultPerSectionView.cs) (revision 9694f9b53551d6eb4641700e4aa3d0fc227ed592)
@@ -160,10 +160,10 @@
private void InitializeDataGridView()
{
dataGridViewControl.AddTextBoxColumn(nameof(CombinedFailureMechanismSectionAssemblyResultRow.SectionStart),
- Resources.AssemblyResultPerSectionView_GridColumn_SectionStart,
+ RingtoetsCommonFormsResources.SectionStartDistance_DisplayName,
true);
dataGridViewControl.AddTextBoxColumn(nameof(CombinedFailureMechanismSectionAssemblyResultRow.SectionEnd),
- Resources.AssemblyResultPerSectionView_GridColumn_SectionEnd,
+ RingtoetsCommonFormsResources.SectionEndDistance_DisplayName,
true);
dataGridViewControl.AddTextBoxColumn(nameof(CombinedFailureMechanismSectionAssemblyResultRow.TotalResult),
Resources.AssemblyResultPerSection_DisplayName,