Index: Riskeer/Integration/src/Riskeer.Integration.Forms/Properties/Resources.Designer.cs =================================================================== diff -u -r02cd29a58902822d716022fbf7334046c7b7e9f0 -r6bb2c169ea142cfcfad42c4b08a0c6c616936428 --- Riskeer/Integration/src/Riskeer.Integration.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 02cd29a58902822d716022fbf7334046c7b7e9f0) +++ Riskeer/Integration/src/Riskeer.Integration.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 6bb2c169ea142cfcfad42c4b08a0c6c616936428) @@ -824,30 +824,30 @@ } /// - /// Looks up a localized string similar to De maximale toelaatbare overstromingskans van het dijktraject.. + /// Looks up a localized resource of type System.Drawing.Bitmap. /// - public static string LowerLimitNorm_Description { + public static System.Drawing.Bitmap Map { get { - return ResourceManager.GetString("LowerLimitNorm_Description", resourceCulture); + object obj = ResourceManager.GetObject("Map", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); } } /// - /// Looks up a localized string similar to Omgevingswaarde [1/jaar]. + /// Looks up a localized string similar to De maximale toelaatbare overstromingskans van het dijktraject.. /// - public static string LowerLimitNorm_DisplayName { + public static string MaximumAllowableFloodingProbability_Description { get { - return ResourceManager.GetString("LowerLimitNorm_DisplayName", resourceCulture); + return ResourceManager.GetString("MaximumAllowableFloodingProbability_Description", resourceCulture); } } /// - /// Looks up a localized resource of type System.Drawing.Bitmap. + /// Looks up a localized string similar to Omgevingswaarde [1/jaar]. /// - public static System.Drawing.Bitmap Map { + public static string MaximumAllowableFloodingProbability_DisplayName { get { - object obj = ResourceManager.GetObject("Map", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); + return ResourceManager.GetString("MaximumAllowableFloodingProbability_DisplayName", resourceCulture); } } @@ -935,18 +935,18 @@ /// /// Looks up a localized string similar to De overstromingskans voor de signalering over de veiligheid van het dijktraject.. /// - public static string SignalingNorm_Description { + public static string SignalFloodingProbability_Description { get { - return ResourceManager.GetString("SignalingNorm_Description", resourceCulture); + return ResourceManager.GetString("SignalFloodingProbability_Description", resourceCulture); } } /// /// Looks up a localized string similar to Signaleringsparameter [1/jaar]. /// - public static string SignalingNorm_DisplayName { + public static string SignalFloodingProbability_DisplayName { get { - return ResourceManager.GetString("SignalingNorm_DisplayName", resourceCulture); + return ResourceManager.GetString("SignalFloodingProbability_DisplayName", resourceCulture); } } } Index: Riskeer/Integration/src/Riskeer.Integration.Forms/Properties/Resources.resx =================================================================== diff -u -r02cd29a58902822d716022fbf7334046c7b7e9f0 -r6bb2c169ea142cfcfad42c4b08a0c6c616936428 --- Riskeer/Integration/src/Riskeer.Integration.Forms/Properties/Resources.resx (.../Resources.resx) (revision 02cd29a58902822d716022fbf7334046c7b7e9f0) +++ Riskeer/Integration/src/Riskeer.Integration.Forms/Properties/Resources.resx (.../Resources.resx) (revision 6bb2c169ea142cfcfad42c4b08a0c6c616936428) @@ -217,10 +217,10 @@ WMTS - + De maximale toelaatbare overstromingskans van het dijktraject. - + Omgevingswaarde [1/jaar] @@ -229,10 +229,10 @@ Rekenwaarde voor waterstanden - + De overstromingskans voor de signalering over de veiligheid van het dijktraject. - + Signaleringsparameter [1/jaar] Index: Riskeer/Integration/src/Riskeer.Integration.Forms/PropertyClasses/NormProperties.cs =================================================================== diff -u -r215ddb6c4d9c4c5900105604140f4c92fe7a4c95 -r6bb2c169ea142cfcfad42c4b08a0c6c616936428 --- Riskeer/Integration/src/Riskeer.Integration.Forms/PropertyClasses/NormProperties.cs (.../NormProperties.cs) (revision 215ddb6c4d9c4c5900105604140f4c92fe7a4c95) +++ Riskeer/Integration/src/Riskeer.Integration.Forms/PropertyClasses/NormProperties.cs (.../NormProperties.cs) (revision 6bb2c169ea142cfcfad42c4b08a0c6c616936428) @@ -65,8 +65,8 @@ [PropertyOrder(1)] [TypeConverter(typeof(NoProbabilityValueDoubleConverter))] [ResourcesCategory(typeof(RiskeerCommonFormsResources), nameof(RiskeerCommonFormsResources.Categories_General))] - [ResourcesDisplayName(typeof(Resources), nameof(Resources.LowerLimitNorm_DisplayName))] - [ResourcesDescription(typeof(Resources), nameof(Resources.LowerLimitNorm_Description))] + [ResourcesDisplayName(typeof(Resources), nameof(Resources.MaximumAllowableFloodingProbability_DisplayName))] + [ResourcesDescription(typeof(Resources), nameof(Resources.MaximumAllowableFloodingProbability_Description))] public double LowerLimitNorm { get => data.LowerLimitNorm; @@ -79,8 +79,8 @@ [PropertyOrder(2)] [TypeConverter(typeof(NoProbabilityValueDoubleConverter))] [ResourcesCategory(typeof(RiskeerCommonFormsResources), nameof(RiskeerCommonFormsResources.Categories_General))] - [ResourcesDisplayName(typeof(Resources), nameof(Resources.SignalingNorm_DisplayName))] - [ResourcesDescription(typeof(Resources), nameof(Resources.SignalingNorm_Description))] + [ResourcesDisplayName(typeof(Resources), nameof(Resources.SignalFloodingProbability_DisplayName))] + [ResourcesDescription(typeof(Resources), nameof(Resources.SignalFloodingProbability_Description))] public double SignalingNorm { get => data.SignalingNorm;