Index: Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Base/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -170,6 +170,15 @@ } /// + /// Looks up a localized string similar to Uitvoeren activiteit {0}. + /// + internal static string ActivityRunner_StartTaskIfPossible_Run_activity__0_ { + get { + return ResourceManager.GetString("ActivityRunner_StartTaskIfPossible_Run_activity__0_", resourceCulture); + } + } + + /// /// Looks up a localized string similar to {0} van {1}. /// internal static string FileImportActivity_ImportFromFile__0__of__1_ { Index: Core/Common/src/Core.Common.Base/Properties/Resources.resx =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Base/Properties/Resources.resx (.../Resources.resx) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Base/Properties/Resources.resx (.../Resources.resx) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -213,4 +213,7 @@ {0} van {1} + + Uitvoeren activiteit {0} + \ No newline at end of file Index: Core/Common/src/Core.Common.Base/RunningActivityLogAppender.cs =================================================================== diff -u -r2a90c0c1be6114f72af65c42f0a6f334b30e4755 -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Base/RunningActivityLogAppender.cs (.../RunningActivityLogAppender.cs) (revision 2a90c0c1be6114f72af65c42f0a6f334b30e4755) +++ Core/Common/src/Core.Common.Base/RunningActivityLogAppender.cs (.../RunningActivityLogAppender.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -82,7 +82,7 @@ //loggingEvent.RenderedMessage; foreach (var act in GetRunningActivitiesThreadSafe()) { - var message = "[" + loggingEvent.TimeStamp.ToString("HH:mm:ss") + "]:" + loggingEvent.RenderedMessage + Environment.NewLine; + var message = string.Format("[{0:HH:mm:ss}]: {1}{2}", loggingEvent.TimeStamp, loggingEvent.RenderedMessage, Environment.NewLine); using (new TryLock(activityLogsLock)) { Index: Core/Common/src/Core.Common.Base/Workflow/ActivityRunner.cs =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Base/Workflow/ActivityRunner.cs (.../ActivityRunner.cs) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Base/Workflow/ActivityRunner.cs (.../ActivityRunner.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -123,7 +123,7 @@ todoTasks.RemoveAt(0); } - Debug.WriteLine("Run activity {0}", (taskToRun.Activity.Name)); + Debug.WriteLine(Resources.ActivityRunner_StartTaskIfPossible_Run_activity__0_, (taskToRun.Activity.Name)); if (beforeActualRun != null) { Index: Core/Common/src/Core.Common.Base/Workflow/FileImportActivity.cs =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Base/Workflow/FileImportActivity.cs (.../FileImportActivity.cs) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Base/Workflow/FileImportActivity.cs (.../FileImportActivity.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -99,7 +99,7 @@ importer.ProgressChanged = (currentStepName, currentStep, totalSteps) => { - Name = importer.Name + " - " + currentStepName; + Name = string.Format("{0} - {1}", importer.Name, currentStepName); progressText = string.Format(Resources.FileImportActivity_ImportFromFile__0__of__1_, currentStep, totalSteps); SetProgressText(progressText); Index: Core/Common/src/Core.Common.Controls.Swf/Charting/ChartView.cs =================================================================== diff -u -rf1c02b2d47dc561deec70a24128d8dd49d9bed6a -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Charting/ChartView.cs (.../ChartView.cs) (revision f1c02b2d47dc561deec70a24128d8dd49d9bed6a) +++ Core/Common/src/Core.Common.Controls.Swf/Charting/ChartView.cs (.../ChartView.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -5,6 +5,7 @@ using System.Windows.Forms; using Core.Common.Controls.Swf.Charting.Customized; using Core.Common.Controls.Swf.Charting.Tools; +using Core.Common.Controls.Swf.Properties; using Core.Common.Utils; using Core.Common.Utils.Collections; using Core.Common.Utils.Collections.Generic; @@ -474,7 +475,7 @@ { // check for all axes? // extra error check to prevent stackoverflow in teechart - throw new InvalidOperationException("Can not draw chart"); + throw new InvalidOperationException(Resources.ChartView_TeeChartBeforeDraw_Can_not_draw_chart); } } Index: Core/Common/src/Core.Common.Controls.Swf/Charting/QuarterNavigatableLabelFormatProvider.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Charting/QuarterNavigatableLabelFormatProvider.cs (.../QuarterNavigatableLabelFormatProvider.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/Charting/QuarterNavigatableLabelFormatProvider.cs (.../QuarterNavigatableLabelFormatProvider.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,4 +1,5 @@ using System; +using Core.Common.Controls.Swf.Properties; using Core.Common.Utils; namespace Core.Common.Controls.Swf.Charting @@ -19,12 +20,12 @@ { return GetQuarterStringForDateTime(min); } - return GetQuarterStringForDateTime(min) + " till " + GetQuarterStringForDateTime(max); + return string.Format(Resources.RangeLabel__0__till__1_, GetQuarterStringForDateTime(min), GetQuarterStringForDateTime(max)); } public override string GetUnits(TimeSpan duration) { - return "qtr yyyy"; + return Resources.QuarterNavigatableLabelFormatProvider_GetUnits_qtr_yyyy; } private static int GetQuarterNumber(DateTime min) @@ -37,15 +38,15 @@ switch (GetQuarterNumber(labelValue)) //localization is your own responsibility here { case 1: - return "1st Qtr " + labelValue.Year; + return string.Format(Resources.QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__1st_Qtr_, labelValue.Year); case 2: - return "2nd Qtr " + labelValue.Year; + return string.Format(Resources.QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__2nd_Qtr_, labelValue.Year); case 3: - return "3rd Qtr " + labelValue.Year; + return string.Format(Resources.QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__3rd_Qtr_, labelValue.Year); case 4: - return "4th Qtr " + labelValue.Year; + return string.Format(Resources.QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__4th_Qtr_, labelValue.Year); default: - return ""; + return Resources.QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__Unknown_quarter_; } } } Index: Core/Common/src/Core.Common.Controls.Swf/Charting/Series/ChartSeriesFactory.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Charting/Series/ChartSeriesFactory.cs (.../ChartSeriesFactory.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/Charting/Series/ChartSeriesFactory.cs (.../ChartSeriesFactory.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,4 +1,5 @@ using System; +using Core.Common.Controls.Swf.Properties; namespace Core.Common.Controls.Swf.Charting.Series { @@ -54,7 +55,7 @@ case ChartSeriesType.PolygonSeries: return CreatePolygonSeries(); default: - throw new ArgumentOutOfRangeException("unsupported chartSeriesType"); + throw new ArgumentOutOfRangeException(Resources.ChartSeriesFactory_CreateSeries_unsupported_chartSeriesType); } } } Index: Core/Common/src/Core.Common.Controls.Swf/Charting/Series/PolygonSeries.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Charting/Series/PolygonSeries.cs (.../PolygonSeries.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/Charting/Series/PolygonSeries.cs (.../PolygonSeries.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -3,6 +3,7 @@ using System.Drawing; using System.Drawing.Drawing2D; using System.Linq; +using Core.Common.Controls.Swf.Properties; using Steema.TeeChart.Drawing; namespace Core.Common.Controls.Swf.Charting.Series @@ -43,7 +44,7 @@ if (XValues.Count != YValues.Count) { // Just to be sure. I think TeeChart already accounts for this in Add methods. - throw new Exception("Number of X values should be equal to the number of Y values"); + throw new Exception(Resources.PolygonSeries_Draw_Number_of_X_values_should_be_equal_to_the_number_of_Y_values); } var g = Chart.Graphics3D; Index: Core/Common/src/Core.Common.Controls.Swf/Charting/TeeChartHelper.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Charting/TeeChartHelper.cs (.../TeeChartHelper.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/Charting/TeeChartHelper.cs (.../TeeChartHelper.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,6 +1,7 @@ using System; using System.Drawing; using System.Reflection; +using Core.Common.Controls.Swf.Properties; using Core.GIS.NetTopologySuite.Utilities; using Steema.TeeChart.Tools; @@ -54,7 +55,7 @@ } } //THIS is done because Tool.GetFirstLastSeries(series, out tmpMin, out tmpMax)) is not documented (unable to find) - Assert.IsTrue(result >= -1, "Should not return indexes below -1!!"); + Assert.IsTrue(result >= -1, Resources.TeeChartHelper_GetNearestPoint_Should_not_return_indexes_below__1__); return result; } Index: Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/AddPointTool.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/AddPointTool.cs (.../AddPointTool.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/AddPointTool.cs (.../AddPointTool.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -2,6 +2,7 @@ using System.Drawing; using System.Windows.Forms; using Core.Common.Controls.Swf.Charting.Series; +using Core.Common.Controls.Swf.Properties; using log4net; using Steema.TeeChart; using Steema.TeeChart.Styles; @@ -127,13 +128,13 @@ protected override void OnMouseUp(MouseEventArgs e) { - log.Debug("AddPointTool : Up"); + log.Debug(Resources.AddPointTool_OnMouseUp_AddPointTool___Up); dragging = false; } protected override void OnMouseDown(MouseEventArgs e) { - log.Debug("AddPointTool : Down"); + log.Debug(Resources.AddPointTool_OnMouseDown_AddPointTool___Down); Point p = new Point(e.X, e.Y); //button == Button.Left if (Steema.TeeChart.Utils.GetMouseButton(e) == button) Index: Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/ChartViewSeriesToolBase.cs =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/ChartViewSeriesToolBase.cs (.../ChartViewSeriesToolBase.cs) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/ChartViewSeriesToolBase.cs (.../ChartViewSeriesToolBase.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -51,7 +51,7 @@ { if ((value > LastSelectedSeries.Count - 1)) { - throw new ArgumentException("Selected index outside range of series"); + throw new ArgumentException(Resources.ChartViewSeriesToolBase_SelectedPointIndex_Selected_index_outside_range_of_series); } selectedPointIndex = value; @@ -78,7 +78,7 @@ } else { - throw new InvalidOperationException("LastSelectedSeries is null!"); + throw new InvalidOperationException(Resources.ChartViewSeriesToolBase_SelectedPointIndex_LastSelectedSeries_is_null_); } } } @@ -204,7 +204,7 @@ return matchingSeries; } } - throw new ArgumentException("Unknown TeeChart series: not related to any known ChartSeries"); + throw new ArgumentException(Resources.ChartViewSeriesToolBase_GetChartSeriesFromInternalSeries_Unknown_TeeChart_series__not_related_to_any_known_ChartSeries); } /// Index: Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/EditPointTool.cs =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/EditPointTool.cs (.../EditPointTool.cs) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/EditPointTool.cs (.../EditPointTool.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -154,13 +154,13 @@ SelectedPointIndex = -1; return; } - throw new NotImplementedException("Deletion not implemented for this type of datasource."); + throw new NotImplementedException(Resources.KeyEvent_Deletion_not_implemented_for_this_type_of_datasource_); } } protected override void OnMouseDown(MouseEventArgs e) { - log.Debug("EditPointTool : Down"); + log.Debug(Resources.EditPointTool_OnMouseDown_EditPointTool___Down); Point p = new Point(e.X, e.Y); @@ -271,7 +271,7 @@ protected override void OnMouseUp(MouseEventArgs e) { - log.Debug("EditPointTool : Up"); + log.Debug(Resources.EditPointTool_OnMouseUp_EditPointTool___Up); if (Steema.TeeChart.Utils.GetMouseButton(e) != MouseButtons.Left) { @@ -361,7 +361,7 @@ double lowerLimit = LastSelectedSeries.XValues[SelectedPointIndex - 1]; if (xValue < lowerLimit) { - log.DebugFormat("Fixing x value (left limit) {0} => {1}", xValue, lowerLimit + clippingTolerance); + log.DebugFormat(Resources.EditPointTool_CalculateXValue_left_limit, xValue, lowerLimit + clippingTolerance); xValue = lowerLimit + clippingTolerance; } } @@ -371,7 +371,7 @@ double upperLimit = LastSelectedSeries.XValues[SelectedPointIndex + 1]; if (xValue > upperLimit) { - log.DebugFormat("Fixing x value (right limit) {0} => {1}", xValue, upperLimit - clippingTolerance); + log.DebugFormat(Resources.EditPointTool_CalculateXValue_right_limit, xValue, upperLimit - clippingTolerance); xValue = upperLimit - clippingTolerance; } } Index: Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/ExportChartAsImageChartTool.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/ExportChartAsImageChartTool.cs (.../ExportChartAsImageChartTool.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/ExportChartAsImageChartTool.cs (.../ExportChartAsImageChartTool.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,5 +1,6 @@ using System; using System.Windows.Forms; +using Core.Common.Controls.Swf.Properties; namespace Core.Common.Controls.Swf.Charting.Tools { @@ -40,7 +41,7 @@ menu.Items.Add(new ToolStripSeparator()); } - menu.Items.Add(new ToolStripMenuItem("Export as Image...", null, ExportChartEventHandler)); + menu.Items.Add(new ToolStripMenuItem(Resources.KeyEvent_Deletion_not_implemented_for_this_type_of_datasource_, null, ExportChartEventHandler)); } private void ExportChartEventHandler(object sender, EventArgs e) Index: Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/SelectPointTool.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/SelectPointTool.cs (.../SelectPointTool.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/Charting/Tools/SelectPointTool.cs (.../SelectPointTool.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -6,6 +6,7 @@ using System.Reflection; using System.Windows.Forms; using Core.Common.Controls.Swf.Charting.Series; +using Core.Common.Controls.Swf.Properties; using Core.Common.Utils.Collections; using Core.Common.Utils.Collections.Generic; using log4net; @@ -258,7 +259,7 @@ } else { - throw new NotImplementedException("Deletion not implemented for this type of datasource."); + throw new NotImplementedException(Resources.KeyEvent_Deletion_not_implemented_for_this_type_of_datasource_); } //// delete selected point from the series @@ -270,7 +271,7 @@ protected override void OnMouseUp(MouseEventArgs e) { - log.Debug("SelectPointTool : Up"); + log.Debug(Resources.SelectPointTool_OnMouseUp_SelectPointTool___Up); selectedPoints.Clear(); AddClickedPoint(e.X, e.Y); Invalidate(); Index: Core/Common/src/Core.Common.Controls.Swf/Charting/YearNavigatableLabelFormatProvider.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Charting/YearNavigatableLabelFormatProvider.cs (.../YearNavigatableLabelFormatProvider.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/Charting/YearNavigatableLabelFormatProvider.cs (.../YearNavigatableLabelFormatProvider.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,4 +1,5 @@ using System; +using Core.Common.Controls.Swf.Properties; using Core.Common.Utils; namespace Core.Common.Controls.Swf.Charting @@ -15,7 +16,7 @@ public override string GetUnits(TimeSpan duration) { - return "yyyy"; + return Resources.YearNavigatableLabelFormatProvider_GetUnits_yyyy; } public override string GetRangeLabel(DateTime min, DateTime max) @@ -24,7 +25,7 @@ { return min.Year.ToString(); } - return min.Year + " till " + max.Year; + return string.Format(Resources.RangeLabel__0__till__1_, min.Year, max.Year); } } } \ No newline at end of file Index: Core/Common/src/Core.Common.Controls.Swf/ClonableToolStripMenuItem.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/ClonableToolStripMenuItem.cs (.../ClonableToolStripMenuItem.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/ClonableToolStripMenuItem.cs (.../ClonableToolStripMenuItem.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.Windows.Forms; +using Core.Common.Controls.Swf.Properties; namespace Core.Common.Controls.Swf { @@ -88,7 +89,7 @@ } else { - throw new InvalidOperationException("Unclonable subitems in menu item"); + throw new InvalidOperationException(Resources.ClonableToolStripMenuItem_Clone_Unclonable_subitems_in_menu_item); } } Index: Core/Common/src/Core.Common.Controls.Swf/CollapsibleSplitter.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/CollapsibleSplitter.cs (.../CollapsibleSplitter.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/CollapsibleSplitter.cs (.../CollapsibleSplitter.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -42,6 +42,7 @@ using System.Drawing; using System.Windows.Forms; using System.Windows.Forms.Design; +using Core.Common.Controls.Swf.Properties; namespace Core.Common.Controls.Swf { @@ -814,7 +815,7 @@ else { - throw new Exception("The Collapsible Splitter control cannot have the Filled or None Dockstyle property"); + throw new Exception(Resources.CollapsibleSplitter_OnPaint_The_Collapsible_Splitter_control_cannot_have_the_Filled_or_None_Dockstyle_property); } // dispose the Graphics object Index: Core/Common/src/Core.Common.Controls.Swf/ExceptionDialog.Designer.cs =================================================================== diff -u -r293be5aa0c9cfb58fea075f0ce6943fdfb310406 -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/ExceptionDialog.Designer.cs (.../ExceptionDialog.Designer.cs) (revision 293be5aa0c9cfb58fea075f0ce6943fdfb310406) +++ Core/Common/src/Core.Common.Controls.Swf/ExceptionDialog.Designer.cs (.../ExceptionDialog.Designer.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,4 +1,6 @@ -namespace Core.Common.Controls.Swf +using Core.Common.Controls.Swf.Properties; + +namespace Core.Common.Controls.Swf { partial class ExceptionDialog { @@ -35,113 +37,68 @@ this.exceptionTextBox = new System.Windows.Forms.RichTextBox(); this.richTextBox1 = new System.Windows.Forms.RichTextBox(); this.buttonExit = new System.Windows.Forms.Button(); - this.ContinueButton = new System.Windows.Forms.Button(); this.buttonOpenLog = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // buttonRestart // - this.buttonRestart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + resources.ApplyResources(this.buttonRestart, "buttonRestart"); this.buttonRestart.DialogResult = System.Windows.Forms.DialogResult.OK; - this.buttonRestart.Location = new System.Drawing.Point(449, 238); this.buttonRestart.Name = "buttonRestart"; - this.buttonRestart.Size = new System.Drawing.Size(75, 23); - this.buttonRestart.TabIndex = 2; - this.buttonRestart.Text = "Restart"; this.buttonRestart.UseVisualStyleBackColor = true; this.buttonRestart.Click += new System.EventHandler(this.buttonRestart_Click); // // pictureBox1 // - this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); - this.pictureBox1.Location = new System.Drawing.Point(12, 12); + resources.ApplyResources(this.pictureBox1, "pictureBox1"); this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(23, 50); - this.pictureBox1.TabIndex = 5; this.pictureBox1.TabStop = false; // // buttonCopyTextToClipboard // - this.buttonCopyTextToClipboard.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.buttonCopyTextToClipboard.Location = new System.Drawing.Point(43, 238); + resources.ApplyResources(this.buttonCopyTextToClipboard, "buttonCopyTextToClipboard"); this.buttonCopyTextToClipboard.Name = "buttonCopyTextToClipboard"; - this.buttonCopyTextToClipboard.Size = new System.Drawing.Size(124, 23); - this.buttonCopyTextToClipboard.TabIndex = 4; - this.buttonCopyTextToClipboard.Text = "Copy Text to Clipboard"; this.buttonCopyTextToClipboard.UseVisualStyleBackColor = true; this.buttonCopyTextToClipboard.Click += new System.EventHandler(this.buttonCopyTextToClipboard_Click); // // exceptionTextBox // - this.exceptionTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); + resources.ApplyResources(this.exceptionTextBox, "exceptionTextBox"); this.exceptionTextBox.BackColor = System.Drawing.SystemColors.ControlLight; this.exceptionTextBox.ForeColor = System.Drawing.Color.Black; - this.exceptionTextBox.Location = new System.Drawing.Point(41, 36); this.exceptionTextBox.Name = "exceptionTextBox"; this.exceptionTextBox.ReadOnly = true; - this.exceptionTextBox.Size = new System.Drawing.Size(483, 196); - this.exceptionTextBox.TabIndex = 3; - this.exceptionTextBox.Text = "Bla-bla-bla."; // // richTextBox1 // - this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); + resources.ApplyResources(this.richTextBox1, "richTextBox1"); this.richTextBox1.BackColor = System.Drawing.SystemColors.ButtonFace; this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.richTextBox1.Location = new System.Drawing.Point(41, 12); this.richTextBox1.Name = "richTextBox1"; this.richTextBox1.ReadOnly = true; - this.richTextBox1.Size = new System.Drawing.Size(483, 20); - this.richTextBox1.TabIndex = 3; - this.richTextBox1.Text = "An unhandled exception has occurred. Ringtoets needs to be restarted. "; // // buttonExit // - this.buttonExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + resources.ApplyResources(this.buttonExit, "buttonExit"); this.buttonExit.DialogResult = System.Windows.Forms.DialogResult.OK; - this.buttonExit.Location = new System.Drawing.Point(368, 238); this.buttonExit.Name = "buttonExit"; - this.buttonExit.Size = new System.Drawing.Size(75, 23); - this.buttonExit.TabIndex = 1; - this.buttonExit.Text = "Exit"; this.buttonExit.UseVisualStyleBackColor = true; this.buttonExit.Click += new System.EventHandler(this.buttonExit_Click); // - // buttonContinue - // - this.ContinueButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.ContinueButton.DialogResult = System.Windows.Forms.DialogResult.OK; - this.ContinueButton.Location = new System.Drawing.Point(287, 238); - this.ContinueButton.Name = "ContinueButton"; - this.ContinueButton.Size = new System.Drawing.Size(75, 23); - this.ContinueButton.TabIndex = 0; - this.ContinueButton.Text = "Continue"; - this.ContinueButton.UseVisualStyleBackColor = true; - this.ContinueButton.Click += new System.EventHandler(this.buttonContinue_Click); - // // buttonOpenLog // - this.buttonOpenLog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.buttonOpenLog.Location = new System.Drawing.Point(173, 238); + resources.ApplyResources(this.buttonOpenLog, "buttonOpenLog"); this.buttonOpenLog.Name = "buttonOpenLog"; - this.buttonOpenLog.Size = new System.Drawing.Size(86, 23); - this.buttonOpenLog.TabIndex = 6; - this.buttonOpenLog.Text = "Open Log File"; this.buttonOpenLog.UseVisualStyleBackColor = true; this.buttonOpenLog.Click += new System.EventHandler(this.buttonOpenLog_Click); // // ExceptionDialog // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(536, 273); this.ControlBox = false; this.Controls.Add(this.buttonOpenLog); - this.Controls.Add(this.ContinueButton); this.Controls.Add(this.buttonExit); this.Controls.Add(this.pictureBox1); this.Controls.Add(this.exceptionTextBox); @@ -151,7 +108,6 @@ this.Name = "ExceptionDialog"; this.ShowIcon = false; this.ShowInTaskbar = false; - this.Text = "Critical Error"; ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); Index: Core/Common/src/Core.Common.Controls.Swf/ExceptionDialog.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/ExceptionDialog.cs (.../ExceptionDialog.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/ExceptionDialog.cs (.../ExceptionDialog.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -2,6 +2,7 @@ using System.Linq; using System.Reflection; using System.Windows.Forms; +using Core.Common.Controls.Swf.Properties; namespace Core.Common.Controls.Swf { @@ -74,16 +75,17 @@ if (exception.InnerException != null) { - str += "Inner Exception:\n"; - str += exception.InnerException.ToString(); + str += string.Format(Resources.ExceptionDialog_GetExceptionText_Inner_exceptions, + Environment.NewLine, + exception.InnerException); } if (exception is ReflectionTypeLoadException) { var reflException = exception as ReflectionTypeLoadException; - str += "Loader Exceptions:\n"; - str = reflException.LoaderExceptions.Aggregate(str, (current, ex) => current + (ex + "\n")); + str += Resources.ExceptionDialog_GetExceptionText_Loader_exceptions + Environment.NewLine; + str = reflException.LoaderExceptions.Aggregate(str, (current, ex) => current + (ex + Environment.NewLine)); } return str; Index: Core/Common/src/Core.Common.Controls.Swf/ExceptionDialog.resx =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/ExceptionDialog.resx (.../ExceptionDialog.resx) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/ExceptionDialog.resx (.../ExceptionDialog.resx) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -117,7 +117,36 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Bottom, Right + + + 449, 238 + + + 75, 23 + + + + 2 + + + Herstarten + + + buttonRestart + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 6 + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29m @@ -137,4 +166,178 @@ 1wAAAABJRU5ErkJggg== + + 12, 12 + + + 23, 50 + + + 5 + + + pictureBox1 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 2 + + + Bottom, Left + + + 43, 238 + + + 124, 23 + + + 4 + + + Kopieer naar klembord + + + buttonCopyTextToClipboard + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 5 + + + Top, Bottom, Left, Right + + + 41, 36 + + + 483, 196 + + + 3 + + + Bla-bla-bla. + + + exceptionTextBox + + + System.Windows.Forms.RichTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 3 + + + Top, Left, Right + + + 41, 12 + + + 483, 20 + + + 3 + + + Een onafgehandelde exceptie is opgetreden. Ringtoets moet herstart worden. + + + richTextBox1 + + + System.Windows.Forms.RichTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 4 + + + Bottom, Right + + + 368, 238 + + + 75, 23 + + + 1 + + + Afsluiten + + + buttonExit + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + Bottom, Left + + + 173, 238 + + + 112, 23 + + + 6 + + + Open Log bestand + + + buttonOpenLog + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + True + + + 6, 13 + + + 536, 273 + + + Kritieke fout + + + ExceptionDialog + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file Index: Core/Common/src/Core.Common.Controls.Swf/ExportImageHelper.cs =================================================================== diff -u -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845 -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/ExportImageHelper.cs (.../ExportImageHelper.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845) +++ Core/Common/src/Core.Common.Controls.Swf/ExportImageHelper.cs (.../ExportImageHelper.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -63,7 +63,7 @@ Filter = filter, FilterIndex = 1, RestoreDirectory = true, - Title = Resources.ExportImageHelper_ExportWithDialog_Export_as_image + Title = Resources.Export_as_Image___ }; if (saveFileDialog.ShowDialog() != DialogResult.OK) @@ -108,15 +108,9 @@ private static string GetFileFormatFilter(Dictionary imageFormats) { - var filter = new StringBuilder(); - - foreach (var imageFormatExt in imageFormats.Keys) - { - filter.AppendFormat("{0} files (*.{0})|", imageFormatExt); - filter.AppendFormat("*.{0}|", imageFormatExt); - } - filter.Append("All files (*.*)|*.*"); - return filter.ToString(); + List filters = imageFormats.Keys.Select(ext => string.Format(Resources.ExportImageHelper_Format_0_as_filter, ext)).ToList(); + filters.Add(Resources.AllFilesFilter); + return string.Join("|",filters); } } } \ No newline at end of file Index: Core/Common/src/Core.Common.Controls.Swf/FileSystemTreeView.cs =================================================================== diff -u -r7ba405dea8ce47a0076e9dd61838b80cc4b2febb -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/FileSystemTreeView.cs (.../FileSystemTreeView.cs) (revision 7ba405dea8ce47a0076e9dd61838b80cc4b2febb) +++ Core/Common/src/Core.Common.Controls.Swf/FileSystemTreeView.cs (.../FileSystemTreeView.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -29,7 +29,7 @@ Data = new ComputerInfo { - HostName = "My Computer" + HostName = Resources.FileSystemTreeView_FileSystemTreeView_My_Computer }; Nodes[0].Expand(); Index: Core/Common/src/Core.Common.Controls.Swf/FindAndReplaceControl.Designer.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/FindAndReplaceControl.Designer.cs (.../FindAndReplaceControl.Designer.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/FindAndReplaceControl.Designer.cs (.../FindAndReplaceControl.Designer.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -31,10 +31,8 @@ this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FindAndReplaceControl)); this.label1 = new System.Windows.Forms.Label(); - this.FindTextBox = new System.Windows.Forms.TextBox(); this.buttonClose = new System.Windows.Forms.Button(); this.labelReplaceWith = new System.Windows.Forms.Label(); - this.ReplaceTextBox = new System.Windows.Forms.TextBox(); this.toolTip1 = new System.Windows.Forms.ToolTip(this.components); this.buttonReplace = new System.Windows.Forms.Button(); this.buttonFind = new System.Windows.Forms.Button(); @@ -43,12 +41,11 @@ // // label1 // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(4, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(53, 13); this.label1.TabIndex = 5; this.label1.Text = "Find what"; + resources.ApplyResources(this.label1, "label1"); // // textBoxFind // @@ -63,29 +60,25 @@ // // buttonClose // - this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.buttonClose.FlatAppearance.BorderSize = 0; this.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonClose.Image = global::Core.Common.Controls.Swf.Properties.Resources.cross; this.buttonClose.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.buttonClose.Location = new System.Drawing.Point(340, 5); this.buttonClose.Name = "buttonClose"; - this.buttonClose.Size = new System.Drawing.Size(24, 20); - this.buttonClose.TabIndex = 4; - this.buttonClose.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.toolTip1.SetToolTip(this.buttonClose, "Close"); + this.toolTip1.SetToolTip(this.buttonClose, resources.GetString("buttonClose.ToolTip")); this.buttonClose.UseVisualStyleBackColor = true; this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click); this.buttonClose.KeyDown += new System.Windows.Forms.KeyEventHandler(this.button_KeyDown); + resources.ApplyResources(this.buttonClose, "buttonClose"); // // labelReplaceWith // - this.labelReplaceWith.AutoSize = true; - this.labelReplaceWith.Location = new System.Drawing.Point(4, 34); this.labelReplaceWith.Name = "labelReplaceWith"; this.labelReplaceWith.Size = new System.Drawing.Size(69, 13); this.labelReplaceWith.TabIndex = 6; this.labelReplaceWith.Text = "Replace with"; + resources.ApplyResources(this.labelReplaceWith, "labelReplaceWith"); // // textBoxReplace // @@ -99,37 +92,31 @@ // // buttonReplace // - this.buttonReplace.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.buttonReplace.FlatAppearance.BorderSize = 0; this.buttonReplace.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonReplace.Image = ((System.Drawing.Image)(resources.GetObject("buttonReplace.Image"))); this.buttonReplace.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.buttonReplace.Location = new System.Drawing.Point(310, 30); this.buttonReplace.Name = "buttonReplace"; - this.buttonReplace.Size = new System.Drawing.Size(24, 21); - this.buttonReplace.TabIndex = 3; - this.buttonReplace.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.toolTip1.SetToolTip(this.buttonReplace, "Replace"); + this.toolTip1.SetToolTip(this.buttonReplace, resources.GetString("buttonReplace.ToolTip")); this.buttonReplace.UseVisualStyleBackColor = true; this.buttonReplace.Click += new System.EventHandler(this.buttonReplace_Click); this.buttonReplace.KeyDown += new System.Windows.Forms.KeyEventHandler(this.button_KeyDown); + resources.ApplyResources(this.buttonReplace, "buttonReplace"); // // buttonFind // - this.buttonFind.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.buttonFind.FlatAppearance.BorderSize = 0; this.buttonFind.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.buttonFind.Image = global::Core.Common.Controls.Swf.Properties.Resources.binocular; this.buttonFind.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.buttonFind.Location = new System.Drawing.Point(310, 5); this.buttonFind.Name = "buttonFind"; - this.buttonFind.Size = new System.Drawing.Size(24, 20); - this.buttonFind.TabIndex = 2; - this.buttonFind.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.toolTip1.SetToolTip(this.buttonFind, "Find next"); + this.toolTip1.SetToolTip(this.buttonFind, resources.GetString("buttonFind.ToolTip")); this.buttonFind.UseVisualStyleBackColor = true; this.buttonFind.Click += new System.EventHandler(this.buttonFind_Click); this.buttonFind.KeyDown += new System.Windows.Forms.KeyEventHandler(this.button_KeyDown); + resources.ApplyResources(this.buttonFind, "buttonFind"); // // buttonReplaceAll // @@ -140,18 +127,15 @@ this.buttonReplaceAll.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.buttonReplaceAll.Location = new System.Drawing.Point(340, 30); this.buttonReplaceAll.Name = "buttonReplaceAll"; - this.buttonReplaceAll.Size = new System.Drawing.Size(24, 21); - this.buttonReplaceAll.TabIndex = 5; - this.buttonReplaceAll.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.toolTip1.SetToolTip(this.buttonReplaceAll, "Replace all"); + this.toolTip1.SetToolTip(this.buttonReplaceAll, resources.GetString("buttonReplaceAll.ToolTip")); this.buttonReplaceAll.UseVisualStyleBackColor = true; this.buttonReplaceAll.Click += new System.EventHandler(this.buttonReplaceAll_Click); this.buttonReplaceAll.KeyDown += new System.Windows.Forms.KeyEventHandler(this.button_KeyDown); + resources.ApplyResources(this.buttonReplaceAll, "buttonReplaceAll"); // // FindAndReplaceControl // - this.AutoSize = true; - this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + resources.ApplyResources(this, "$this"); this.BackColor = System.Drawing.SystemColors.Control; this.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.Controls.Add(this.buttonReplace); Index: Core/Common/src/Core.Common.Controls.Swf/FindAndReplaceControl.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/FindAndReplaceControl.cs (.../FindAndReplaceControl.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/FindAndReplaceControl.cs (.../FindAndReplaceControl.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -3,6 +3,7 @@ using System.Linq; using System.Text.RegularExpressions; using System.Windows.Forms; +using Core.Common.Controls.Swf.Properties; using log4net; namespace Core.Common.Controls.Swf @@ -103,14 +104,14 @@ if (string.IsNullOrEmpty(textToSearch)) { - Log.Warn("There is no text to search."); + Log.Warn(Resources.FindAndReplaceControl_FindNext_There_is_no_text_to_search_); return; } var nextMatch = matches.OfType().FirstOrDefault(m => m.Index > GetCurrentPosition()); if (nextMatch == null) { - Log.Info("End of document has been reached."); + Log.Info(Resources.FindAndReplaceControl_FindNext_End_of_document_has_been_reached_); nextMatch = matches.OfType().FirstOrDefault(); } @@ -180,7 +181,7 @@ { ReplaceText(match.Index, match.Length, ReplaceTextBox.Text); } - Log.InfoFormat("Replaced {0} occurrences of {1} with {2}", matches.Count, FindTextBox.Text, ReplaceTextBox.Text); + Log.InfoFormat(Resources.FindAndReplaceControl_buttonReplaceAll_Click_Replaced__0__occurrences_of__1__with__2_, matches.Count, FindTextBox.Text, ReplaceTextBox.Text); } private void button_KeyDown(object sender, KeyEventArgs e) Index: Core/Common/src/Core.Common.Controls.Swf/FindAndReplaceControl.resx =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/FindAndReplaceControl.resx (.../FindAndReplaceControl.resx) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/FindAndReplaceControl.resx (.../FindAndReplaceControl.resx) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -117,10 +117,108 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 17, 17 - + + + True + + + 4, 9 + + + 53, 13 + + + 5 + + + Wat zoeken + + + label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 3 + + + + Top, Right + + + Flat + + + MiddleLeft + + + 340, 5 + + + 24, 20 + + + 4 + + + ImageBeforeText + + + 17, 17 + + + Sluiten + + + buttonClose + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 2 + + + True + + + 4, 34 + + + 69, 13 + + + 6 + + + Vervangen door + + + labelReplaceWith + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 4 + + + Top, Right + + + Flat + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 @@ -133,6 +231,78 @@ 0hPUWrE+1H5Iwz1zIAfb4P82AKqgBiggAPUQhBDQv1vgBvydVh+ogxP1zkb45wAAAABJRU5ErkJggg== + + MiddleLeft + + + 310, 30 + + + 24, 21 + + + 3 + + + ImageBeforeText + + + Vervangen + + + buttonReplace + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + Top, Right + + + Flat + + + MiddleLeft + + + 310, 5 + + + 24, 20 + + + 2 + + + ImageBeforeText + + + Volgende zoeken + + + buttonFind + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 5 + + + Top, Right + + + Flat + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 @@ -145,4 +315,58 @@ LMEyyFACViAFqyDp8s8EFiwox/kF3GVM7iRSgmoAAAAASUVORK5CYII= + + MiddleLeft + + + 340, 30 + + + 24, 21 + + + 5 + + + ImageBeforeText + + + Alles vervangen + + + buttonReplaceAll + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + True + + + True + + + GrowAndShrink + + + 368, 54 + + + toolTip1 + + + System.Windows.Forms.ToolTip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + FindAndReplaceControl + + + System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file Index: Core/Common/src/Core.Common.Controls.Swf/ImageResolutionDialog.Designer.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/ImageResolutionDialog.Designer.cs (.../ImageResolutionDialog.Designer.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/ImageResolutionDialog.Designer.cs (.../ImageResolutionDialog.Designer.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -28,6 +28,7 @@ /// private void InitializeComponent() { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImageResolutionDialog)); this.trackBar1 = new System.Windows.Forms.TrackBar(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); @@ -51,13 +52,10 @@ // // trackBar1 // - this.trackBar1.Dock = System.Windows.Forms.DockStyle.Fill; - this.trackBar1.Location = new System.Drawing.Point(0, 0); + resources.ApplyResources(this.trackBar1, "trackBar1"); this.trackBar1.Maximum = 500; this.trackBar1.Minimum = 1; this.trackBar1.Name = "trackBar1"; - this.trackBar1.Size = new System.Drawing.Size(449, 74); - this.trackBar1.TabIndex = 0; this.trackBar1.TickFrequency = 20; this.trackBar1.TickStyle = System.Windows.Forms.TickStyle.TopLeft; this.trackBar1.Value = 100; @@ -66,24 +64,16 @@ // pictureBox1 // this.pictureBox1.BackColor = System.Drawing.Color.White; - this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; + resources.ApplyResources(this.pictureBox1, "pictureBox1"); this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.pictureBox1.Cursor = System.Windows.Forms.Cursors.Default; - this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill; - this.pictureBox1.Location = new System.Drawing.Point(0, 0); this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(449, 294); - this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage; - this.pictureBox1.TabIndex = 1; this.pictureBox1.TabStop = false; // // splitContainer1 // - this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; - this.splitContainer1.IsSplitterFixed = true; - this.splitContainer1.Location = new System.Drawing.Point(0, 0); + resources.ApplyResources(this.splitContainer1, "splitContainer1"); this.splitContainer1.Name = "splitContainer1"; - this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // @@ -98,102 +88,70 @@ // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.pictureBox1); - this.splitContainer1.Size = new System.Drawing.Size(449, 372); - this.splitContainer1.SplitterDistance = 74; - this.splitContainer1.TabIndex = 2; // // label1 // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(384, 45); + resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(15, 13); - this.label1.TabIndex = 7; - this.label1.Text = "%"; // // textBoxPercentage // - this.textBoxPercentage.Location = new System.Drawing.Point(321, 38); + resources.ApplyResources(this.textBoxPercentage, "textBoxPercentage"); this.textBoxPercentage.Name = "textBoxPercentage"; - this.textBoxPercentage.Size = new System.Drawing.Size(57, 20); - this.textBoxPercentage.TabIndex = 6; this.textBoxPercentage.TextChanged += new System.EventHandler(this.TextBoxPercentageTextChanged); // // labelHeight // - this.labelHeight.AutoSize = true; - this.labelHeight.Location = new System.Drawing.Point(156, 45); + resources.ApplyResources(this.labelHeight, "labelHeight"); this.labelHeight.Name = "labelHeight"; - this.labelHeight.Size = new System.Drawing.Size(38, 13); - this.labelHeight.TabIndex = 4; - this.labelHeight.Text = "Height"; // // widthLabel // - this.widthLabel.AutoSize = true; - this.widthLabel.Location = new System.Drawing.Point(9, 45); + resources.ApplyResources(this.widthLabel, "widthLabel"); this.widthLabel.Name = "widthLabel"; - this.widthLabel.Size = new System.Drawing.Size(35, 13); - this.widthLabel.TabIndex = 3; - this.widthLabel.Text = "Width"; // // textBoxHeight // - this.textBoxHeight.Location = new System.Drawing.Point(197, 38); + resources.ApplyResources(this.textBoxHeight, "textBoxHeight"); this.textBoxHeight.Name = "textBoxHeight"; - this.textBoxHeight.Size = new System.Drawing.Size(100, 20); - this.textBoxHeight.TabIndex = 2; this.textBoxHeight.TextChanged += new System.EventHandler(this.TextBoxHeightTextChanged); // // textBoxWidth // - this.textBoxWidth.Location = new System.Drawing.Point(50, 38); + resources.ApplyResources(this.textBoxWidth, "textBoxWidth"); this.textBoxWidth.Name = "textBoxWidth"; - this.textBoxWidth.Size = new System.Drawing.Size(100, 20); - this.textBoxWidth.TabIndex = 1; this.textBoxWidth.TextChanged += new System.EventHandler(this.TextBoxWidthTextChanged); // // panel1 // this.panel1.Controls.Add(this.button2); this.panel1.Controls.Add(this.button1); - this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; - this.panel1.Location = new System.Drawing.Point(0, 339); + resources.ApplyResources(this.panel1, "panel1"); this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(449, 33); - this.panel1.TabIndex = 3; // // button2 // - this.button2.Location = new System.Drawing.Point(370, 5); + resources.ApplyResources(this.button2, "button2"); this.button2.Name = "button2"; - this.button2.Size = new System.Drawing.Size(75, 23); - this.button2.TabIndex = 1; - this.button2.Text = "Cancel"; this.button2.UseVisualStyleBackColor = true; this.button2.Click += new System.EventHandler(this.CancelButtonClicked); // // button1 // - this.button1.Location = new System.Drawing.Point(289, 5); + resources.ApplyResources(this.button1, "button1"); this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(75, 23); - this.button1.TabIndex = 0; - this.button1.Text = "OK"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.OkButtonClicked); // // ImageResolutionDialog // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(449, 372); this.Controls.Add(this.panel1); this.Controls.Add(this.splitContainer1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Name = "ImageResolutionDialog"; this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; - this.Text = "Specify image export resolution"; this.TopMost = true; ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); Index: Core/Common/src/Core.Common.Controls.Swf/ImageResolutionDialog.resx =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/ImageResolutionDialog.resx (.../ImageResolutionDialog.resx) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/ImageResolutionDialog.resx (.../ImageResolutionDialog.resx) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -117,10 +117,358 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Fill + + + + 0, 0 + + + 449, 74 + + + + 0 + + + trackBar1 + + + System.Windows.Forms.TrackBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + splitContainer1.Panel1 + + + 6 + + + Center + + + Fill + + + 0, 0 + + + 449, 294 + + + CenterImage + + + 1 + + + pictureBox1 + + + System.Windows.Forms.PictureBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + splitContainer1.Panel2 + + + 0 + True + + Fill + + + True + + + 0, 0 + + + Horizontal + + + True + + + 384, 45 + + + 15, 13 + + + 7 + + + % + + + label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + splitContainer1.Panel1 + + + 0 + + + 321, 38 + + + 57, 20 + + + 6 + + + textBoxPercentage + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + splitContainer1.Panel1 + + + 1 + + + True + + + 156, 45 + + + 42, 13 + + + 4 + + + Hoogte + + + labelHeight + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + splitContainer1.Panel1 + + + 2 + + + True + + + 9, 45 + + + 44, 13 + + + 3 + + + Breedte + + + widthLabel + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + splitContainer1.Panel1 + + + 3 + + + 204, 38 + + + 93, 20 + + + 2 + + + textBoxHeight + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + splitContainer1.Panel1 + + + 4 + + + 59, 38 + + + 91, 20 + + + 1 + + + textBoxWidth + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + splitContainer1.Panel1 + + + 5 + + + splitContainer1.Panel1 + + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + splitContainer1 + + + 0 + + + splitContainer1.Panel2 + + + System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + splitContainer1 + + + 1 + + + 449, 372 + + + 74 + + + 2 + + + splitContainer1 + + + System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + 370, 5 + + + 75, 23 + + + 1 + + + Annuleren + + + button2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panel1 + + + 0 + + + 289, 5 + + + 75, 23 + + + 0 + + + OK + + + button1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + panel1 + + + 1 + + + Bottom + + + 0, 339 + + + 449, 33 + + + 3 + + + panel1 + + + System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + True + True + + 6, 13 + + + 449, 372 + + + Specificeer de beeldresolutie voor export + + + ImageResolutionDialog + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file Index: Core/Common/src/Core.Common.Controls.Swf/InputTextDialog.Designer.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/InputTextDialog.Designer.cs (.../InputTextDialog.Designer.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/InputTextDialog.Designer.cs (.../InputTextDialog.Designer.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -29,6 +29,7 @@ private void InitializeComponent() { this.components = new System.ComponentModel.Container(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InputTextDialog)); this.ButtonOk = new System.Windows.Forms.Button(); this.ButtonCancel = new System.Windows.Forms.Button(); this.textBox1 = new System.Windows.Forms.TextBox(); @@ -38,38 +39,25 @@ // // ButtonOk // - this.ButtonOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + resources.ApplyResources(this.ButtonOk, "ButtonOk"); this.ButtonOk.DialogResult = System.Windows.Forms.DialogResult.OK; - this.ButtonOk.Location = new System.Drawing.Point(85, 38); this.ButtonOk.Name = "ButtonOk"; - this.ButtonOk.Size = new System.Drawing.Size(75, 23); - this.ButtonOk.TabIndex = 0; - this.ButtonOk.Text = "OK"; this.ButtonOk.UseVisualStyleBackColor = true; this.ButtonOk.Click += new System.EventHandler(this.ButtonOkClick); // // ButtonCancel // - this.ButtonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + resources.ApplyResources(this.ButtonCancel, "ButtonCancel"); this.ButtonCancel.CausesValidation = false; this.ButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.ButtonCancel.Location = new System.Drawing.Point(166, 38); this.ButtonCancel.Name = "ButtonCancel"; - this.ButtonCancel.Size = new System.Drawing.Size(75, 23); - this.ButtonCancel.TabIndex = 1; - this.ButtonCancel.Text = "Cancel"; this.ButtonCancel.UseVisualStyleBackColor = true; this.ButtonCancel.Click += new System.EventHandler(this.ButtonCancelClick); // // textBox1 // - this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) - | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.textBox1.Location = new System.Drawing.Point(12, 12); + resources.ApplyResources(this.textBox1, "textBox1"); this.textBox1.Name = "textBox1"; - this.textBox1.Size = new System.Drawing.Size(227, 20); - this.textBox1.TabIndex = 2; // // errorProvider // @@ -78,10 +66,9 @@ // InputTextDialog // this.AcceptButton = this.ButtonOk; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.ButtonCancel; - this.ClientSize = new System.Drawing.Size(251, 65); this.Controls.Add(this.textBox1); this.Controls.Add(this.ButtonCancel); this.Controls.Add(this.ButtonOk); @@ -91,8 +78,6 @@ this.Name = "InputTextDialog"; this.ShowIcon = false; this.ShowInTaskbar = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Search..."; this.Activated += new System.EventHandler(this.InputTextDialogActivated); ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit(); this.ResumeLayout(false); Index: Core/Common/src/Core.Common.Controls.Swf/InputTextDialog.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/InputTextDialog.cs (.../InputTextDialog.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/InputTextDialog.cs (.../InputTextDialog.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,6 +1,7 @@ using System; using System.ComponentModel; using System.Windows.Forms; +using Core.Common.Controls.Swf.Properties; namespace Core.Common.Controls.Swf { @@ -17,7 +18,7 @@ InitialText = ""; textBox1.Validating += textBox1_Validating; errorProvider.SetIconAlignment(ButtonOk, ErrorIconAlignment.MiddleLeft); - ValidationErrorMsg = "Please verify the input is valid"; + ValidationErrorMsg = Resources.InputTextDialog_InputTextDialog_Please_verify_the_input_is_valid; } public bool Multiline Index: Core/Common/src/Core.Common.Controls.Swf/InputTextDialog.resx =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/InputTextDialog.resx (.../InputTextDialog.resx) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/InputTextDialog.resx (.../InputTextDialog.resx) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -117,7 +117,115 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Bottom, Right + + + + 85, 38 + + + 75, 23 + + + + 0 + + + OK + + + ButtonOk + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 2 + + + Bottom, Right + + + 166, 38 + + + 75, 23 + + + 1 + + + Annuleren + + + ButtonCancel + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + Top, Bottom, Left, Right + + + 12, 12 + + + 227, 20 + + + 2 + + + textBox1 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + 17, 17 + + True + + + 6, 13 + + + 251, 65 + + + CenterParent + + + Zoeken … + + + errorProvider + + + System.Windows.Forms.ErrorProvider, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + InputTextDialog + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file Index: Core/Common/src/Core.Common.Controls.Swf/ModalHelper.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/ModalHelper.cs (.../ModalHelper.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/ModalHelper.cs (.../ModalHelper.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,5 +1,6 @@ using System; using System.Windows.Forms; +using Core.Common.Controls.Swf.Properties; namespace Core.Common.Controls.Swf { @@ -27,7 +28,7 @@ { if (MainWindow == null) { - throw new InvalidOperationException("Main window not injected"); + throw new InvalidOperationException(Resources.ModalHelper_ShowModal_Main_window_not_injected); } return f.ShowDialog(MainWindow); Index: Core/Common/src/Core.Common.Controls.Swf/OpenUrlDialog.Designer.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/OpenUrlDialog.Designer.cs (.../OpenUrlDialog.Designer.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/OpenUrlDialog.Designer.cs (.../OpenUrlDialog.Designer.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -28,6 +28,7 @@ /// private void InitializeComponent() { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OpenUrlDialog)); this.buttonCancel = new System.Windows.Forms.Button(); this.buttonOk = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); @@ -37,53 +38,39 @@ // buttonCancel // this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; - this.buttonCancel.Location = new System.Drawing.Point(317, 61); + resources.ApplyResources(this.buttonCancel, "buttonCancel"); this.buttonCancel.Name = "buttonCancel"; - this.buttonCancel.Size = new System.Drawing.Size(75, 23); - this.buttonCancel.TabIndex = 2; - this.buttonCancel.Text = "Cancel"; this.buttonCancel.UseVisualStyleBackColor = true; // // buttonOk // this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.OK; - this.buttonOk.Location = new System.Drawing.Point(235, 61); + resources.ApplyResources(this.buttonOk, "buttonOk"); this.buttonOk.Name = "buttonOk"; - this.buttonOk.Size = new System.Drawing.Size(75, 23); - this.buttonOk.TabIndex = 1; - this.buttonOk.Text = "OK"; this.buttonOk.UseVisualStyleBackColor = true; // // label1 // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(15, 29); + resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(56, 13); - this.label1.TabIndex = 4; - this.label1.Text = "Web Link:"; // // urlComboBox // this.urlComboBox.FormattingEnabled = true; - this.urlComboBox.Location = new System.Drawing.Point(77, 26); + resources.ApplyResources(this.urlComboBox, "urlComboBox"); this.urlComboBox.Name = "urlComboBox"; - this.urlComboBox.Size = new System.Drawing.Size(332, 21); - this.urlComboBox.TabIndex = 5; // // OpenUrlDialog // this.AcceptButton = this.buttonOk; - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.buttonCancel; - this.ClientSize = new System.Drawing.Size(421, 101); this.Controls.Add(this.urlComboBox); this.Controls.Add(this.buttonCancel); this.Controls.Add(this.buttonOk); this.Controls.Add(this.label1); this.Name = "OpenUrlDialog"; - this.Text = "Open web link..."; this.ResumeLayout(false); this.PerformLayout(); Index: Core/Common/src/Core.Common.Controls.Swf/OpenUrlDialog.resx =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/OpenUrlDialog.resx (.../OpenUrlDialog.resx) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/OpenUrlDialog.resx (.../OpenUrlDialog.resx) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -117,4 +117,120 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 317, 61 + + + 75, 23 + + + + 2 + + + Annuleren + + + buttonCancel + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + 235, 61 + + + 75, 23 + + + 1 + + + OK + + + buttonOk + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 2 + + + True + + + 15, 29 + + + 56, 13 + + + 4 + + + Weblink: + + + label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 3 + + + 77, 26 + + + 332, 21 + + + 5 + + + urlComboBox + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + True + + + 6, 13 + + + 421, 101 + + + Openen weblink... + + + OpenUrlDialog + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file Index: Core/Common/src/Core.Common.Controls.Swf/ProgressBarDialog.Designer.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/ProgressBarDialog.Designer.cs (.../ProgressBarDialog.Designer.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/ProgressBarDialog.Designer.cs (.../ProgressBarDialog.Designer.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -28,35 +28,27 @@ /// private void InitializeComponent() { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProgressBarDialog)); this.progressBar1 = new System.Windows.Forms.ProgressBar(); this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // progressBar1 // - this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.progressBar1.Location = new System.Drawing.Point(12, 58); + resources.ApplyResources(this.progressBar1, "progressBar1"); this.progressBar1.MarqueeAnimationSpeed = 20; this.progressBar1.Name = "progressBar1"; - this.progressBar1.Size = new System.Drawing.Size(620, 23); this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee; - this.progressBar1.TabIndex = 0; // // label1 // - this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(12, 21); + resources.ApplyResources(this.label1, "label1"); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(89, 13); - this.label1.TabIndex = 1; - this.label1.Text = ""; // // ProgressBarDialog // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(644, 93); this.ControlBox = false; this.Controls.Add(this.label1); this.Controls.Add(this.progressBar1); @@ -66,8 +58,6 @@ this.Name = "ProgressBarDialog"; this.ShowIcon = false; this.ShowInTaskbar = false; - this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; - this.Text = "Please wait..."; this.ResumeLayout(false); this.PerformLayout(); Index: Core/Common/src/Core.Common.Controls.Swf/ProgressBarDialog.resx =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/ProgressBarDialog.resx (.../ProgressBarDialog.resx) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/ProgressBarDialog.resx (.../ProgressBarDialog.resx) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -112,9 +112,84 @@ 2.0 - System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Bottom, Left, Right + + + + 12, 58 + + + 620, 23 + + + + 0 + + + progressBar1 + + + System.Windows.Forms.ProgressBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + True + + + 12, 21 + + + 138, 13 + + + 1 + + + <ingevuld door consument> + + + label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + True + + + 6, 13 + + + 644, 93 + + + CenterParent + + + Een ogenblik geduld a.u.b. ... + + + ProgressBarDialog + + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file Index: Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.Designer.cs =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -61,6 +61,33 @@ } /// + /// Looks up a localized string similar to AddPointTool: naar beneden. + /// + internal static string AddPointTool_OnMouseDown_AddPointTool___Down { + get { + return ResourceManager.GetString("AddPointTool_OnMouseDown_AddPointTool___Down", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to AddPointTool: naar boven. + /// + internal static string AddPointTool_OnMouseUp_AddPointTool___Up { + get { + return ResourceManager.GetString("AddPointTool_OnMouseUp_AddPointTool___Up", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Alle bestanden (*.*)|*.*. + /// + internal static string AllFilesFilter { + get { + return ResourceManager.GetString("AllFilesFilter", resourceCulture); + } + } + + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap binocular { @@ -137,6 +164,34 @@ } /// + /// Looks up a localized string similar to ChartSeriesType niet ondersteund. + /// + internal static string ChartSeriesFactory_CreateSeries_unsupported_chartSeriesType { + get { + return ResourceManager.GetString("ChartSeriesFactory_CreateSeries_unsupported_chartSeriesType", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Kan diagram niet tekenen. + /// + internal static string ChartView_TeeChartBeforeDraw_Can_not_draw_chart { + get { + return ResourceManager.GetString("ChartView_TeeChartBeforeDraw_Can_not_draw_chart", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Onbekende TeeChart serie: houdt geen verband met een bekende ChartSeries. + /// + internal static string ChartViewSeriesToolBase_GetChartSeriesFromInternalSeries_Unknown_TeeChart_series__not_related_to_any_known_ChartSeries { + get { + return ResourceManager.GetString("ChartViewSeriesToolBase_GetChartSeriesFromInternalSeries_Unknown_TeeChart_series_" + + "_not_related_to_any_known_ChartSeries", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Dit programma accepteert alleen {0} als series. /// internal static string ChartViewSeriesToolBase_LastSelectedSeries_This_tool_only_accepts__0__as_series { @@ -146,6 +201,44 @@ } /// + /// Looks up a localized string similar to LastSelectedSeries is 'null'!. + /// + internal static string ChartViewSeriesToolBase_SelectedPointIndex_LastSelectedSeries_is_null_ { + get { + return ResourceManager.GetString("ChartViewSeriesToolBase_SelectedPointIndex_LastSelectedSeries_is_null_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Geselecteerde index is buiten bereik van de serie. + /// + internal static string ChartViewSeriesToolBase_SelectedPointIndex_Selected_index_outside_range_of_series { + get { + return ResourceManager.GetString("ChartViewSeriesToolBase_SelectedPointIndex_Selected_index_outside_range_of_series" + + "", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Niet te klonen subitems in menu-item. + /// + internal static string ClonableToolStripMenuItem_Clone_Unclonable_subitems_in_menu_item { + get { + return ResourceManager.GetString("ClonableToolStripMenuItem_Clone_Unclonable_subitems_in_menu_item", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to De inklapbare splitser kan geen "Dockstyle" "Filled: of "None" hebben. + /// + internal static string CollapsibleSplitter_OnPaint_The_Collapsible_Splitter_control_cannot_have_the_Filled_or_None_Dockstyle_property { + get { + return ResourceManager.GetString("CollapsibleSplitter_OnPaint_The_Collapsible_Splitter_control_cannot_have_the_Fill" + + "ed_or_None_Dockstyle_property", resourceCulture); + } + } + + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap computer { @@ -236,6 +329,24 @@ } /// + /// Looks up a localized string similar to X-waarde wordt vastgelegd (linker limiet) {0} => {1}. + /// + internal static string EditPointTool_CalculateXValue_left_limit { + get { + return ResourceManager.GetString("EditPointTool_CalculateXValue_left_limit", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to X-waarde wordt vastgelegd (rechter limiet) {0} => {1}. + /// + internal static string EditPointTool_CalculateXValue_right_limit { + get { + return ResourceManager.GetString("EditPointTool_CalculateXValue_right_limit", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Geen cursor toegewezen aan {0}. /// internal static string EditPointTool_GetCursorIcon_No_cursor_assigned_for__0_ { @@ -245,15 +356,107 @@ } /// - /// Looks up a localized string similar to Exporteer als afbeelding. + /// Looks up a localized string similar to EditPointTool: naar beneden. /// - internal static string ExportImageHelper_ExportWithDialog_Export_as_image { + internal static string EditPointTool_OnMouseDown_EditPointTool___Down { get { - return ResourceManager.GetString("ExportImageHelper_ExportWithDialog_Export_as_image", resourceCulture); + return ResourceManager.GetString("EditPointTool_OnMouseDown_EditPointTool___Down", resourceCulture); } } /// + /// Looks up a localized string similar to EditPointTool: naar boven. + /// + internal static string EditPointTool_OnMouseUp_EditPointTool___Up { + get { + return ResourceManager.GetString("EditPointTool_OnMouseUp_EditPointTool___Up", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Interne fout:{1}{2}. + /// + internal static string ExceptionDialog_GetExceptionText_Inner_exceptions { + get { + return ResourceManager.GetString("ExceptionDialog_GetExceptionText_Inner_exceptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Foutmelding van de loader:. + /// + internal static string ExceptionDialog_GetExceptionText_Loader_exceptions { + get { + return ResourceManager.GetString("ExceptionDialog_GetExceptionText_Loader_exceptions", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Een onafgehandelde exceptie is opgetreden. Ringtoets moet herstart worden.. + /// + internal static string ExceptionDialog_InitializeComponent_An_unhandled_exception_has_occurred__Ringtoets_needs_to_be_restarted__ { + get { + return ResourceManager.GetString("ExceptionDialog_InitializeComponent_An_unhandled_exception_has_occurred__Ringtoet" + + "s_needs_to_be_restarted__", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Exporteer als afbeelding.... + /// + internal static string Export_as_Image___ { + get { + return ResourceManager.GetString("Export_as_Image___", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} bestanden (*.{0})|*.{0}. + /// + internal static string ExportImageHelper_Format_0_as_filter { + get { + return ResourceManager.GetString("ExportImageHelper_Format_0_as_filter", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Mijn Computer. + /// + internal static string FileSystemTreeView_FileSystemTreeView_My_Computer { + get { + return ResourceManager.GetString("FileSystemTreeView_FileSystemTreeView_My_Computer", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} exemplaren van {1} zijn met {2} vervangen. + /// + internal static string FindAndReplaceControl_buttonReplaceAll_Click_Replaced__0__occurrences_of__1__with__2_ { + get { + return ResourceManager.GetString("FindAndReplaceControl_buttonReplaceAll_Click_Replaced__0__occurrences_of__1__with" + + "__2_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Einde van document is bereikt.. + /// + internal static string FindAndReplaceControl_FindNext_End_of_document_has_been_reached_ { + get { + return ResourceManager.GetString("FindAndReplaceControl_FindNext_End_of_document_has_been_reached_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Er is geen tekst om te zoeken.. + /// + internal static string FindAndReplaceControl_FindNext_There_is_no_text_to_search_ { + get { + return ResourceManager.GetString("FindAndReplaceControl_FindNext_There_is_no_text_to_search_", resourceCulture); + } + } + + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap folder { @@ -294,6 +497,33 @@ } /// + /// Looks up a localized string similar to Controleer of de invoer geldig is. + /// + internal static string InputTextDialog_InputTextDialog_Please_verify_the_input_is_valid { + get { + return ResourceManager.GetString("InputTextDialog_InputTextDialog_Please_verify_the_input_is_valid", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Verwijderen is niet geïmplementeerd voor dit type databron.. + /// + internal static string KeyEvent_Deletion_not_implemented_for_this_type_of_datasource_ { + get { + return ResourceManager.GetString("KeyEvent_Deletion_not_implemented_for_this_type_of_datasource_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Hoofdvenster niet geïnjecteerd. + /// + internal static string ModalHelper_ShowModal_Main_window_not_injected { + get { + return ResourceManager.GetString("ModalHelper_ShowModal_Main_window_not_injected", resourceCulture); + } + } + + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap page_white { @@ -333,6 +563,79 @@ } /// + /// Looks up a localized string similar to Aantal X-waarden moet gelijk zijn aan het aantal Y-waarden. + /// + internal static string PolygonSeries_Draw_Number_of_X_values_should_be_equal_to_the_number_of_Y_values { + get { + return ResourceManager.GetString("PolygonSeries_Draw_Number_of_X_values_should_be_equal_to_the_number_of_Y_values", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 1e kwartaal {0}. + /// + internal static string QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__1st_Qtr_ { + get { + return ResourceManager.GetString("QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__1st_Qtr_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 2e kw. {0}. + /// + internal static string QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__2nd_Qtr_ { + get { + return ResourceManager.GetString("QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__2nd_Qtr_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 3e kw. {0}. + /// + internal static string QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__3rd_Qtr_ { + get { + return ResourceManager.GetString("QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__3rd_Qtr_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to 4e kw. {0}. + /// + internal static string QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__4th_Qtr_ { + get { + return ResourceManager.GetString("QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__4th_Qtr_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Onbekend kwartaal. + /// + internal static string QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__Unknown_quarter_ { + get { + return ResourceManager.GetString("QuarterNavigatableLabelFormatProvider_GetQuarterStringForDateTime__Unknown_quarte" + + "r_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to kw. yyyy. + /// + internal static string QuarterNavigatableLabelFormatProvider_GetUnits_qtr_yyyy { + get { + return ResourceManager.GetString("QuarterNavigatableLabelFormatProvider_GetUnits_qtr_yyyy", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to {0} tot {1}. + /// + internal static string RangeLabel__0__till__1_ { + get { + return ResourceManager.GetString("RangeLabel__0__till__1_", resourceCulture); + } + } + + /// /// Looks up a localized string similar to seconden. /// internal static string RulerTool_GetDefaultDifferenceString__seconds { @@ -352,6 +655,33 @@ } /// + /// Looks up a localized string similar to Verwijderen is niet geïmplementeerd voor dit type databron.. + /// + internal static string SelectPointTool_KeyEvent_Deletion_not_implemented_for_this_type_of_datasource_ { + get { + return ResourceManager.GetString("SelectPointTool_KeyEvent_Deletion_not_implemented_for_this_type_of_datasource_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to SelectPointTool: naar boven. + /// + internal static string SelectPointTool_OnMouseUp_SelectPointTool___Up { + get { + return ResourceManager.GetString("SelectPointTool_OnMouseUp_SelectPointTool___Up", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Shape bestanden |*.shp. + /// + internal static string Shape_files_filter { + get { + return ResourceManager.GetString("Shape_files_filter", resourceCulture); + } + } + + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap table_edit { @@ -362,6 +692,15 @@ } /// + /// Looks up a localized string similar to Het is niet toegestaan om rijen aan deze tabel toe te voegen. + /// + internal static string TableView_AddNewRowToDataSource_Adding_rows_to_this_table_is_not_allowed { + get { + return ResourceManager.GetString("TableView_AddNewRowToDataSource_Adding_rows_to_this_table_is_not_allowed", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Ongebonden kolommen van type {0} worden niet ondersteund.. /// internal static string TableView_AddUnboundColumn_Unbound_columns_of_type__0__not_supported_ { @@ -398,6 +737,15 @@ } /// + /// Looks up a localized string similar to Kan tekenreeks {0} niet omzetten naar {1} om te plakken. + /// + internal static string TableView_ConvertToColumnValue_Unable_to_convert_string__0__to__1__for_paste { + get { + return ResourceManager.GetString("TableView_ConvertToColumnValue_Unable_to_convert_string__0__to__1__for_paste", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Waarde wordt gewijzigd {0}. /// internal static string TableView_DxGridViewCellValueChanging_Value_Changing__0_ { @@ -407,6 +755,16 @@ } /// + /// Looks up a localized string similar to Niet in staat om cellen te selecteren wanneer tableView RowSelect ingeschakeld is. Gebruik in plaats daarvan SelectRow.. + /// + internal static string TableView_SelectCells_Unable_to_select_cells_when_tableView_has_RowSelect_enabled__Use_SelectRow_instead_ { + get { + return ResourceManager.GetString("TableView_SelectCells_Unable_to_select_cells_when_tableView_has_RowSelect_enabled" + + "__Use_SelectRow_instead_", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Actie {0} wordt niet ondersteund door de TableView. /// internal static string TableView_SelectedCellsCollectionChanged_Action__0__is_not_supported_by_the_TableView { @@ -417,6 +775,15 @@ } /// + /// Looks up a localized string similar to Kan waarde in cel [{0}, {1}] niet instellen reden: {2}. + /// + internal static string TableView_SetCellValueInternal_Can_not_set_value_into_cell___0____1___reason__2_ { + get { + return ResourceManager.GetString("TableView_SetCellValueInternal_Can_not_set_value_into_cell___0____1___reason__2_", resourceCulture); + } + } + + /// /// Looks up a localized string similar to nieuwe Tabel. /// internal static string TableView_TableView_new_Table { @@ -426,6 +793,147 @@ } /// + /// Looks up a localized string similar to Copy all headers. + /// + internal static string TableView_UpdateColumnHeaderMenu_Copy_all_headers { + get { + return ResourceManager.GetString("TableView_UpdateColumnHeaderMenu_Copy_all_headers", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Pin kolom vast. + /// + internal static string TableView_UpdateColumnHeaderMenu_Pin_Column { + get { + return ResourceManager.GetString("TableView_UpdateColumnHeaderMenu_Pin_Column", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Maak kolom los. + /// + internal static string TableView_UpdateColumnHeaderMenu_Unpin_Column { + get { + return ResourceManager.GetString("TableView_UpdateColumnHeaderMenu_Unpin_Column", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Selectie gewijzigd event firen. + /// + internal static string TableView_UpdateSelectionFromGridControl_Firing_selection_changed_event { + get { + return ResourceManager.GetString("TableView_UpdateSelectionFromGridControl_Firing_selection_changed_event", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Kan waarde voor rij {0} niet instellen, reden: {1}. + /// + internal static string TableView_ValidateAndCommitRow_Can_not_set_value_for_row__0___reason___1_ { + get { + return ResourceManager.GetString("TableView_ValidateAndCommitRow_Can_not_set_value_for_row__0___reason___1_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to <aangepast>. + /// + internal static string TableViewColumn_SetXtraGridCustomFormatterCore__custom_ { + get { + return ResourceManager.GetString("TableViewColumn_SetXtraGridCustomFormatterCore__custom_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wilt u de waarde corrigeren? + /// + ///Kies Ja om de waarde zelf te corrigeren. Kies Nee als u de oorspronkelijke waarde wilt terugkrijgen.. + /// + internal static string TableViewExceptionMessageController_GetLocalizedString_ { + get { + return ResourceManager.GetString("TableViewExceptionMessageController_GetLocalizedString_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Kan niet plakken in een gefilterde tableview.. + /// + internal static string TableViewPasteController_CanPaste_Cannot_paste_into_filtered_tableview_ { + get { + return ResourceManager.GetString("TableViewPasteController_CanPaste_Cannot_paste_into_filtered_tableview_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Kan niet plakken in gesorteerde kolom. + /// + internal static string TableViewPasteController_CanPaste_Cannot_paste_into_sorted_column { + get { + return ResourceManager.GetString("TableViewPasteController_CanPaste_Cannot_paste_into_sorted_column", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Er zijn geen waardes om te plakken (headers worden overgeslagen).. + /// + internal static string TableViewPasteController_CanPaste_There_are_no_values_to_paste__headers_are_skipped__ { + get { + return ResourceManager.GetString("TableViewPasteController_CanPaste_There_are_no_values_to_paste__headers_are_skipp" + + "ed__", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Kan niet in niet-rechthoekige selectie plakken. + /// + internal static string TableViewPasteController_GetPasteTargetSelection_Cannot_paste_into_non_rectangular_selection { + get { + return ResourceManager.GetString("TableViewPasteController_GetPasteTargetSelection_Cannot_paste_into_non_rectangula" + + "r_selection", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Kan de waarde in cel [{0}, {1}] niet plakken. Rij {0} wordt overgeslagen. + /// + internal static string TableViewPasteController_PasteCellsToRow_Can_not_paste_value_into_cell___0____1____Row__0__will_be_skipped { + get { + return ResourceManager.GetString("TableViewPasteController_PasteCellsToRow_Can_not_paste_value_into_cell___0____1__" + + "__Row__0__will_be_skipped", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Plakken waarden mislukt: {0}. + /// + internal static string TableViewPasteController_PasteCellsToRow_Pasting_values_failed___0_ { + get { + return ResourceManager.GetString("TableViewPasteController_PasteCellsToRow_Pasting_values_failed___0_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Ongeldige geplate rij {0} wordt overgeslagen. + /// + internal static string TableViewPasteController_PasteCellsToRow_Skipping_invalid_row__0__from_pasting { + get { + return ResourceManager.GetString("TableViewPasteController_PasteCellsToRow_Skipping_invalid_row__0__from_pasting", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Klembord bevat geen tekst, hierdoor kan het niet worden geplakt op het rooster.. + /// + internal static string TableViewPasteController_PasteClipboardContents_Clipboard_does_not_contain_text__so_it_cannot_be_pasted_to_the_grid_ { + get { + return ResourceManager.GetString("TableViewPasteController_PasteClipboardContents_Clipboard_does_not_contain_text__" + + "so_it_cannot_be_pasted_to_the_grid_", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Ongeldige rijnummer {0}. /// internal static string TableViewPasteController_PasteValuesCore_Invalid_row_number__0_ { @@ -435,6 +943,42 @@ } /// + /// Looks up a localized string similar to Ongeldige rij: {0}. + /// + internal static string TableViewPasteController_SafeSetCellValue_Invalid_row_reason_0_ { + get { + return ResourceManager.GetString("TableViewPasteController_SafeSetCellValue_Invalid_row_reason_0_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Validatie van cel is mislukt: {0}. + /// + internal static string TableViewValidator_ValidateCell_Validation_of_cell_failed_0_ { + get { + return ResourceManager.GetString("TableViewValidator_ValidateCell_Validation_of_cell_failed_0_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Validatie van rij is mislukt: {0}. + /// + internal static string TableViewValidator_ValidateRow_Validation_of_row_failed_0_ { + get { + return ResourceManager.GetString("TableViewValidator_ValidateRow_Validation_of_row_failed_0_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Zou geen indices lager dan -1 moeten teruggeven!. + /// + internal static string TeeChartHelper_GetNearestPoint_Should_not_return_indexes_below__1__ { + get { + return ResourceManager.GetString("TeeChartHelper_GetNearestPoint_Should_not_return_indexes_below__1__", resourceCulture); + } + } + + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// internal static System.Drawing.Bitmap tick { @@ -445,6 +989,24 @@ } /// + /// Looks up a localized string similar to Datumtijd notatie niet zoals verwacht. + /// + internal static string TimeSpanEditor_GetTimeSymbolAtPosition_Datetime_format_not_as_expected { + get { + return ResourceManager.GetString("TimeSpanEditor_GetTimeSymbolAtPosition_Datetime_format_not_as_expected", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to De methode of operatie is niet geïmplementeerd.. + /// + internal static string TreeNodeList_GetEnumerator_The_method_or_operation_is_not_implemented_ { + get { + return ResourceManager.GetString("TreeNodeList_GetEnumerator_The_method_or_operation_is_not_implemented_", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Weet u zeker dat u het volgende item wilt verwijderen: {0}. /// internal static string TreeView_DeleteNodeData_Are_you_sure_you_want_to_delete_the_following_item___0_ { @@ -454,6 +1016,51 @@ } /// + /// Looks up a localized string similar to Bevestigen. + /// + internal static string TreeView_DeleteNodeData_Confirm { + get { + return ResourceManager.GetString("TreeView_DeleteNodeData_Confirm", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Het geselecteerde item kan niet worden verwijderd. + /// + internal static string TreeView_DeleteNodeData_The_selected_item_cannot_be_removed { + get { + return ResourceManager.GetString("TreeView_DeleteNodeData_The_selected_item_cannot_be_removed", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fout tijdens slepen/neerzetten: {0}. + /// + internal static string TreeView_TreeViewDragDrop_Error_during_drag_drop_0_ { + get { + return ResourceManager.GetString("TreeView_TreeViewDragDrop_Error_during_drag_drop_0_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Niet in staat om node presenter te vinden voor 'null' object. + /// + internal static string TreeViewController_OnNodeChecked_Unable_to_resolve_node_presenter_for_null_data { + get { + return ResourceManager.GetString("TreeViewController_OnNodeChecked_Unable_to_resolve_node_presenter_for_null_data", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Structuurweergave mag niet leeg zijn. + /// + internal static string TreeViewController_TreeViewController_Tree_view_can_t_be_null { + get { + return ResourceManager.GetString("TreeViewController_TreeViewController_Tree_view_can_t_be_null", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Kan INodePresenter voor {0} niet vinden, zorg ervoor dat u het aan de Presenters verzameling voor een TreeView hebt toegevoegd. /// internal static string TreeViewController_UpdateNode_Can_t_find_INodePresenter_for__0___make_sure_you_added_it_to_Presenters_collection_of_a_TreeView { @@ -462,5 +1069,52 @@ "ded_it_to_Presenters_collection_of_a_TreeView", resourceCulture); } } + + /// + /// Looks up a localized string similar to Kan het object ("treeNode.Presenter") niet vinden om de boomstructuur weer te geven: {0}. + /// + internal static string TreeViewController_UpdateNode_Can_t_find_node_presenter_for_tree_view__object_ { + get { + return ResourceManager.GetString("TreeViewController_UpdateNode_Can_t_find_node_presenter_for_tree_view__object_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to OnNodeRenamed moet zijn geimplementeerd in de afgeleide klasse. + /// + internal static string TreeViewNodePresenterBase_OnNodeRenamed_OnNodeRenamed_must_be_implemented_in_derived_class { + get { + return ResourceManager.GetString("TreeViewNodePresenterBase_OnNodeRenamed_OnNodeRenamed_must_be_implemented_in_deri" + + "ved_class", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Er is een fout opgetreden. Verifieer de invoer alstublieft. {1}{1}Error: {1}{0}. + /// + internal static string WizardDialog_WizardControl1NextClick_An_error_occurred__please_verify_your_input___1__1_Error___1__0_ { + get { + return ResourceManager.GetString("WizardDialog_WizardControl1NextClick_An_error_occurred__please_verify_your_input_" + + "__1__1_Error___1__0_", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Fout opgetreden. + /// + internal static string WizardDialog_WizardControl1NextClick_Error_occurred { + get { + return ResourceManager.GetString("WizardDialog_WizardControl1NextClick_Error_occurred", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to yyyy. + /// + internal static string YearNavigatableLabelFormatProvider_GetUnits_yyyy { + get { + return ResourceManager.GetString("YearNavigatableLabelFormatProvider_GetUnits_yyyy", resourceCulture); + } + } } } Index: Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.resx =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.resx (.../Resources.resx) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.resx (.../Resources.resx) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -187,9 +187,6 @@ Argument bevat geen bestandsnaam - - Exporteer als afbeelding - nieuwe Tabel @@ -244,4 +241,222 @@ Kan INodePresenter voor {0} niet vinden, zorg ervoor dat u het aan de Presenters verzameling voor een TreeView hebt toegevoegd + + Kan diagram niet tekenen + + + 1e kwartaal {0} + + + 2e kw. {0} + + + 3e kw. {0} + + + 4e kw. {0} + + + Onbekend kwartaal + + + ChartSeriesType niet ondersteund + + + Aantal X-waarden moet gelijk zijn aan het aantal Y-waarden + + + Zou geen indices lager dan -1 moeten teruggeven! + + + Geselecteerde index is buiten bereik van de serie + + + LastSelectedSeries is 'null'! + + + Onbekende TeeChart serie: houdt geen verband met een bekende ChartSeries + + + Verwijderen is niet geïmplementeerd voor dit type databron. + + + X-waarde wordt vastgelegd (linker limiet) {0} => {1} + + + X-waarde wordt vastgelegd (rechter limiet) {0} => {1} + + + Exporteer als afbeelding... + + + Verwijderen is niet geïmplementeerd voor dit type databron. + + + Niet te klonen subitems in menu-item + + + De inklapbare splitser kan geen "Dockstyle" "Filled: of "None" hebben + + + Interne fout:{1}{2} + + + Foutmelding van de loader: + + + Een onafgehandelde exceptie is opgetreden. Ringtoets moet herstart worden. + + + Alle bestanden (*.*)|*.* + + + Shape bestanden |*.shp + + + {0} tot {1} + + + kw. yyyy + + + yyyy + + + {0} bestanden (*.{0})|*.{0} + + + Er is een fout opgetreden. Verifieer de invoer alstublieft. {1}{1}Error: {1}{0} + + + Fout opgetreden + + + OnNodeRenamed moet zijn geimplementeerd in de afgeleide klasse + + + Kan het object ("treeNode.Presenter") niet vinden om de boomstructuur weer te geven: {0} + + + Niet in staat om node presenter te vinden voor 'null' object + + + Structuurweergave mag niet leeg zijn + + + Fout tijdens slepen/neerzetten: {0} + + + Bevestigen + + + Het geselecteerde item kan niet worden verwijderd + + + De methode of operatie is niet geïmplementeerd. + + + Datumtijd notatie niet zoals verwacht + + + Validatie van cel is mislukt: {0} + + + Validatie van rij is mislukt: {0} + + + Ongeldige rij: {0} + + + Plakken waarden mislukt: {0} + + + Ongeldige geplate rij {0} wordt overgeslagen + + + Kan de waarde in cel [{0}, {1}] niet plakken. Rij {0} wordt overgeslagen + + + Kan niet plakken in een gefilterde tableview. + + + Kan niet plakken in gesorteerde kolom + + + Er zijn geen waardes om te plakken (headers worden overgeslagen). + + + Kan niet in niet-rechthoekige selectie plakken + + + Klembord bevat geen tekst, hierdoor kan het niet worden geplakt op het rooster. + + + Wilt u de waarde corrigeren? + +Kies Ja om de waarde zelf te corrigeren. Kies Nee als u de oorspronkelijke waarde wilt terugkrijgen. + + + <aangepast> + + + Het is niet toegestaan om rijen aan deze tabel toe te voegen + + + Niet in staat om cellen te selecteren wanneer tableView RowSelect ingeschakeld is. Gebruik in plaats daarvan SelectRow. + + + Kan tekenreeks {0} niet omzetten naar {1} om te plakken + + + Kan waarde in cel [{0}, {1}] niet instellen reden: {2} + + + Kan waarde voor rij {0} niet instellen, reden: {1} + + + Copy all headers + + + Maak kolom los + + + Pin kolom vast + + + Selectie gewijzigd event firen + + + Hoofdvenster niet geïnjecteerd + + + Controleer of de invoer geldig is + + + {0} exemplaren van {1} zijn met {2} vervangen + + + Er is geen tekst om te zoeken. + + + Einde van document is bereikt. + + + Mijn Computer + + + SelectPointTool: naar boven + + + EditPointTool: naar boven + + + EditPointTool: naar beneden + + + AddPointTool: naar beneden + + + AddPointTool: naar boven + \ No newline at end of file Index: Core/Common/src/Core.Common.Controls.Swf/Table/TableView.cs =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Table/TableView.cs (.../TableView.cs) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Controls.Swf/Table/TableView.cs (.../TableView.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -613,7 +613,7 @@ { if (SelectionChanged != null) { - Log.DebugFormat("Firing selection changed event"); + Log.DebugFormat(Resources.TableView_UpdateSelectionFromGridControl_Firing_selection_changed_event); SelectionChanged(this, new TableSelectionChangedEventArgs(selectedCells.ToArray())); } } @@ -708,7 +708,7 @@ { var pinColumnMenuItem = new DXMenuCheckItem { - Caption = viewColumn.Pinned ? "Unpin Column" : "Pin Column", + Caption = viewColumn.Pinned ? Resources.TableView_UpdateColumnHeaderMenu_Unpin_Column : Resources.TableView_UpdateColumnHeaderMenu_Pin_Column, Checked = viewColumn.Pinned, Image = Resources.pin }; @@ -720,7 +720,7 @@ var copyHeadersColumnMenuItem = new DXMenuItem { - Caption = "Copy all headers", + Caption = Resources.TableView_UpdateColumnHeaderMenu_Copy_all_headers, Image = Resources.CopyHS }; @@ -753,7 +753,7 @@ string errorText; if (!tableViewValidator.ValidateRow(rowIndex, out errorText)) { - Log.ErrorFormat("Can not set value for row {0}, reason: {1}", rowIndex, errorText); + Log.ErrorFormat(Resources.TableView_ValidateAndCommitRow_Can_not_set_value_for_row__0___reason___1_, rowIndex, errorText); dxGridView.CancelUpdateCurrentRow(); tableViewValidator.RefreshRowData(); dxGridView.DeleteRow(rowIndex); @@ -784,14 +784,14 @@ : value; if (objectValue == null) { - Log.ErrorFormat("Can not set value into cell [{0}, {1}] reason:{2}", rowIndex, col.AbsoluteIndex, "No conversion from string possible"); + Log.ErrorFormat(Resources.TableView_SetCellValueInternal_Can_not_set_value_into_cell___0____1___reason__2_, rowIndex, col.AbsoluteIndex, "No conversion from string possible"); return false; } string error; if (!tableViewValidator.ValidateCell(new TableViewCell(rowIndex, GetColumnByDxColumn(col)), objectValue, out error)) { - Log.ErrorFormat("Can not set value into cell [{0}, {1}] reason:{2}", rowIndex, col.AbsoluteIndex, error); + Log.ErrorFormat(Resources.TableView_SetCellValueInternal_Can_not_set_value_into_cell___0____1___reason__2_, rowIndex, col.AbsoluteIndex, error); return false; } @@ -830,7 +830,7 @@ } } - Log.WarnFormat("Unable to convert string {0} to {1} for paste", cellValue, columnType); + Log.WarnFormat(Resources.TableView_ConvertToColumnValue_Unable_to_convert_string__0__to__1__for_paste, cellValue, columnType); return null; } } @@ -1652,7 +1652,7 @@ dxGridView.BeginSelection(); if (RowSelect) { - throw new InvalidOperationException("Unable to select cells when tableView has RowSelect enabled. Use SelectRow instead."); + throw new InvalidOperationException(Resources.TableView_SelectCells_Unable_to_select_cells_when_tableView_has_RowSelect_enabled__Use_SelectRow_instead_); } if (clearOldSelection) @@ -1937,7 +1937,7 @@ if (!bindingSource.AllowNew) { - Log.Debug("Adding rows to this table is not allowed"); + Log.Debug(Resources.TableView_AddNewRowToDataSource_Adding_rows_to_this_table_is_not_allowed); return; } bindingSource.AddNew(); Index: Core/Common/src/Core.Common.Controls.Swf/Table/TableViewColumn.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Table/TableViewColumn.cs (.../TableViewColumn.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/Table/TableViewColumn.cs (.../TableViewColumn.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -2,6 +2,7 @@ using System.Drawing; using System.Linq; using System.Windows.Forms; +using Core.Common.Controls.Swf.Properties; using DevExpress.Data; using DevExpress.Utils; using DevExpress.XtraGrid; @@ -394,7 +395,7 @@ dxFormatInfo.FormatType = FormatType.Custom; dxFormatInfo.Format = new TableViewCellFormatterProvider(value); - dxFormatInfo.FormatString = ""; //must be non null/empty for custom formatting to work + dxFormatInfo.FormatString = Resources.TableViewColumn_SetXtraGridCustomFormatterCore__custom_; //must be non null/empty for custom formatting to work } private FormatType GetFormatType(string value) Index: Core/Common/src/Core.Common.Controls.Swf/Table/TableViewExceptionMessageController.cs =================================================================== diff -u -rdd1a980616ea0f7eaf5593353dc8012a09f4c8c1 -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Table/TableViewExceptionMessageController.cs (.../TableViewExceptionMessageController.cs) (revision dd1a980616ea0f7eaf5593353dc8012a09f4c8c1) +++ Core/Common/src/Core.Common.Controls.Swf/Table/TableViewExceptionMessageController.cs (.../TableViewExceptionMessageController.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,4 +1,5 @@ -using DevExpress.XtraGrid.Localization; +using Core.Common.Controls.Swf.Properties; +using DevExpress.XtraGrid.Localization; namespace Core.Common.Controls.Swf.Table { @@ -7,8 +8,7 @@ public override string GetLocalizedString(GridStringId id) { return id == GridStringId.ColumnViewExceptionMessage - ? " Do you want to correct the value?\n\n" + - "Choose Yes to correct the value yourself. Choose No to revert to the original value." + ? Resources.TableViewExceptionMessageController_GetLocalizedString_ : base.GetLocalizedString(id); } } Index: Core/Common/src/Core.Common.Controls.Swf/Table/TableViewPasteController.cs =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Table/TableViewPasteController.cs (.../TableViewPasteController.cs) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Controls.Swf/Table/TableViewPasteController.cs (.../TableViewPasteController.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -48,7 +48,7 @@ // for now only allow to paste text if (!Clipboard.ContainsText()) { - Log.Debug("Clipboard does not contain text, so it cannot be pasted to the grid."); + Log.Debug(Resources.TableViewPasteController_PasteClipboardContents_Clipboard_does_not_contain_text__so_it_cannot_be_pasted_to_the_grid_); return; } @@ -161,7 +161,7 @@ if (selection == null) { - errorMessage = "Cannot paste into non rectangular selection"; + errorMessage = Resources.TableViewPasteController_GetPasteTargetSelection_Cannot_paste_into_non_rectangular_selection; } return selection; @@ -221,7 +221,7 @@ if (clipboardLines.Length == 0) { - errorMessage = "There are no values to paste (headers are skipped)."; + errorMessage = Resources.TableViewPasteController_CanPaste_There_are_no_values_to_paste__headers_are_skipped__; return false; } @@ -236,12 +236,12 @@ select col).Any(); if (sortedColumnExists) { - errorMessage = "Cannot paste into sorted column"; //todo: add name of column here? + errorMessage = Resources.TableViewPasteController_CanPaste_Cannot_paste_into_sorted_column; //todo: add name of column here? return false; } if (TableView.Columns.Any(col => !string.IsNullOrEmpty(col.FilterString))) { - errorMessage = "Cannot paste into filtered tableview."; //todo: add name of column here? + errorMessage = Resources.TableViewPasteController_CanPaste_Cannot_paste_into_filtered_tableview_; //todo: add name of column here? return false; } return true; @@ -292,7 +292,7 @@ { if (!SafeSetCellValue(index, startColumnIndex + i, content[i%contentWidth])) { - Log.ErrorFormat("Can not paste value into cell [{0}, {1}]. Row {0} will be skipped", + Log.ErrorFormat(Resources.TableViewPasteController_PasteCellsToRow_Can_not_paste_value_into_cell___0____1____Row__0__will_be_skipped, startRowIndex, startColumnIndex + i); if (addNewRow) { @@ -314,7 +314,7 @@ } if (!SafeSetRowCellValues(index, startColumnIndex, values)) { - Log.ErrorFormat("Skipping invalid row {0} from pasting", + Log.ErrorFormat(Resources.TableViewPasteController_PasteCellsToRow_Skipping_invalid_row__0__from_pasting, startRowIndex); if (addNewRow) { @@ -328,7 +328,7 @@ } catch (Exception e) { - Log.ErrorFormat("Pasting values failed: {0}", e.Message); + Log.ErrorFormat(Resources.TableViewPasteController_PasteCellsToRow_Pasting_values_failed___0_, e.Message); } finally { @@ -437,7 +437,7 @@ } catch (Exception e) { - Log.ErrorFormat("Invalid row reason: {0}", e.Message); + Log.ErrorFormat(Resources.TableViewPasteController_SafeSetCellValue_Invalid_row_reason_0_, e.Message); return false; } } @@ -450,7 +450,7 @@ } catch (Exception e) { - Log.ErrorFormat("Invalid row reason: {0}", e.Message); + Log.ErrorFormat(Resources.TableViewPasteController_SafeSetCellValue_Invalid_row_reason_0_, e.Message); return false; } } Index: Core/Common/src/Core.Common.Controls.Swf/Table/Validation/TableViewValidator.cs =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/Table/Validation/TableViewValidator.cs (.../TableViewValidator.cs) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Controls.Swf/Table/Validation/TableViewValidator.cs (.../TableViewValidator.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,5 +1,6 @@ using System; using System.Linq; +using Core.Common.Controls.Swf.Properties; using DevExpress.XtraEditors.Controls; using DevExpress.XtraGrid.Views.Base; using DevExpress.XtraGrid.Views.Grid; @@ -39,7 +40,7 @@ if (!result.Valid) { - firstError = "Validation of row failed: " + result.ErrorText; + firstError = string.Format(Resources.TableViewValidator_ValidateRow_Validation_of_row_failed_0_, result.ErrorText); tableView.SetColumnError(result.ColumnIndex == -1 ? null : tableView.Columns[result.ColumnIndex], result.ErrorText); return false; @@ -60,7 +61,7 @@ var result = tableView.InputValidator(cell, newValue); if (!result.Item2) { - error = "Validation of cell failed: " + result.Item1; + error = string.Format(Resources.TableViewValidator_ValidateCell_Validation_of_cell_failed_0_, result.Item1); return false; } } Index: Core/Common/src/Core.Common.Controls.Swf/TimeSpanEditor.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/TimeSpanEditor.cs (.../TimeSpanEditor.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/TimeSpanEditor.cs (.../TimeSpanEditor.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -6,6 +6,7 @@ using System.Text; using System.Text.RegularExpressions; using System.Windows.Forms; +using Core.Common.Controls.Swf.Properties; namespace Core.Common.Controls.Swf { @@ -189,7 +190,7 @@ if (!Char.IsLetter(timeSymbol) || !TimeSymbols.ContainsKey(timeSymbol)) { - throw new InvalidOperationException("Datetime format not as expected"); + throw new InvalidOperationException(Resources.TimeSpanEditor_GetTimeSymbolAtPosition_Datetime_format_not_as_expected); } return timeSymbol; } Index: Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeNodeList.cs =================================================================== diff -u -rdd1a980616ea0f7eaf5593353dc8012a09f4c8c1 -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeNodeList.cs (.../TreeNodeList.cs) (revision dd1a980616ea0f7eaf5593353dc8012a09f4c8c1) +++ Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeNodeList.cs (.../TreeNodeList.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -3,6 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Windows.Forms; +using Core.Common.Controls.Swf.Properties; namespace Core.Common.Controls.Swf.TreeViewControls { @@ -132,7 +133,7 @@ IEnumerator IEnumerable.GetEnumerator() { - throw new NotImplementedException("The method or operation is not implemented."); + throw new NotImplementedException(Resources.TreeNodeList_GetEnumerator_The_method_or_operation_is_not_implemented_); } #endregion Index: Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeView.cs =================================================================== diff -u -r1172c118dff047475dcae7a2cbc2716ea866ce35 -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeView.cs (.../TreeView.cs) (revision 1172c118dff047475dcae7a2cbc2716ea866ce35) +++ Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeView.cs (.../TreeView.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -296,12 +296,12 @@ { if (!SelectedNodeCanDelete()) { - MessageBox.Show("The selected item cannot be removed", "Confirm", MessageBoxButtons.OK); + MessageBox.Show(Resources.TreeView_DeleteNodeData_The_selected_item_cannot_be_removed, Resources.TreeView_DeleteNodeData_Confirm, MessageBoxButtons.OK); return; } var message = string.Format(Resources.TreeView_DeleteNodeData_Are_you_sure_you_want_to_delete_the_following_item___0_, SelectedNode.Text); - if (MessageBox.Show(message, "Confirm", MessageBoxButtons.OKCancel) != DialogResult.OK) + if (MessageBox.Show(message, Resources.TreeView_DeleteNodeData_Confirm, MessageBoxButtons.OKCancel) != DialogResult.OK) { return; } @@ -1030,7 +1030,7 @@ } catch (Exception ex) { - log.Error("Error during drag/drop : " + ex.Message); + log.Error(string.Format(Resources.TreeView_TreeViewDragDrop_Error_during_drag_drop_0_, ex.Message)); } } Index: Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeViewController.cs =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeViewController.cs (.../TreeViewController.cs) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeViewController.cs (.../TreeViewController.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -28,7 +28,7 @@ { if (treeView == null) { - throw new ArgumentException("Tree view can't be null"); + throw new ArgumentException(Resources.TreeViewController_TreeViewController_Tree_view_can_t_be_null); } this.treeView = treeView; @@ -127,7 +127,7 @@ if (node.Tag == null) { - throw new InvalidOperationException("Unable to resolve node presenter for null data"); + throw new InvalidOperationException(Resources.TreeViewController_OnNodeChecked_Unable_to_resolve_node_presenter_for_null_data); } node.Presenter.OnNodeChecked(node); @@ -160,7 +160,7 @@ if (nodePresenter == null) { - Log.Debug("Can't find node presenter for tree view, object:" + tag); + Log.Debug(string.Format(Resources.TreeViewController_UpdateNode_Can_t_find_node_presenter_for_tree_view__object_, tag)); return; } Index: Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeViewNodePresenterBase.cs =================================================================== diff -u -r125002b7df54bc7ec7190146cd9b23458999c60e -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeViewNodePresenterBase.cs (.../TreeViewNodePresenterBase.cs) (revision 125002b7df54bc7ec7190146cd9b23458999c60e) +++ Core/Common/src/Core.Common.Controls.Swf/TreeViewControls/TreeViewNodePresenterBase.cs (.../TreeViewNodePresenterBase.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -3,6 +3,7 @@ using System.ComponentModel; using System.Linq; using System.Windows.Forms; +using Core.Common.Controls.Swf.Properties; using Core.Common.Utils.Collections; namespace Core.Common.Controls.Swf.TreeViewControls @@ -40,7 +41,7 @@ } else { - throw new InvalidOperationException("OnNodeRenamed must be implemented in derived class"); + throw new InvalidOperationException(Resources.TreeViewNodePresenterBase_OnNodeRenamed_OnNodeRenamed_must_be_implemented_in_derived_class); } } Index: Core/Common/src/Core.Common.Controls.Swf/WizardDialog.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/WizardDialog.cs (.../WizardDialog.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/WizardDialog.cs (.../WizardDialog.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -4,6 +4,7 @@ using System.Drawing; using System.Linq; using System.Windows.Forms; +using Core.Common.Controls.Swf.Properties; using Core.Common.Utils.Collections.Generic; using DevExpress.XtraWizard; @@ -245,7 +246,7 @@ } catch (Exception ee) { - MessageBox.Show("An error occurred, please verify your input. \n\nError: \n" + ee.Message, "Error occurred", MessageBoxButtons.OK, MessageBoxIcon.Warning); + ShowExceptionInMessageWindow(ee); e.Handled = true; } } @@ -270,13 +271,19 @@ } catch (Exception ee) { - MessageBox.Show("An error occurred, please verify your input. \n\nError: \n" + ee.Message, "Error occurred", MessageBoxButtons.OK, MessageBoxIcon.Warning); + ShowExceptionInMessageWindow(ee); e.Handled = true; } } } } + private void ShowExceptionInMessageWindow(Exception ee) + { + var message = string.Format(Resources.WizardDialog_WizardControl1NextClick_An_error_occurred__please_verify_your_input___1__1_Error___1__0_, ee.Message, Environment.NewLine); + MessageBox.Show(message, Resources.WizardDialog_WizardControl1NextClick_Error_occurred, MessageBoxButtons.OK, MessageBoxIcon.Warning); + } + private void WizardControl1CancelClick(object sender, CancelEventArgs e) { DialogResult = DialogResult.Cancel; Index: Core/Common/src/Core.Common.Controls.Swf/WizardPages/SelectFileWizardPage.Designer.cs =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/WizardPages/SelectFileWizardPage.Designer.cs (.../SelectFileWizardPage.Designer.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/WizardPages/SelectFileWizardPage.Designer.cs (.../SelectFileWizardPage.Designer.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -1,3 +1,5 @@ +using Core.Common.Controls.Swf.Properties; + namespace Core.Common.Controls.Swf.WizardPages { partial class SelectFileWizardPage @@ -28,6 +30,7 @@ /// private void InitializeComponent() { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectFileWizardPage)); this.buttonOpenFile = new System.Windows.Forms.Button(); this.textBox1 = new System.Windows.Forms.TextBox(); this.lblDescription = new System.Windows.Forms.Label(); @@ -37,59 +40,42 @@ // // buttonOpenFile // - this.buttonOpenFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + resources.ApplyResources(this.buttonOpenFile, "buttonOpenFile"); this.buttonOpenFile.BackColor = System.Drawing.SystemColors.Control; - this.buttonOpenFile.Location = new System.Drawing.Point(437, 8); this.buttonOpenFile.Name = "buttonOpenFile"; - this.buttonOpenFile.Size = new System.Drawing.Size(27, 23); - this.buttonOpenFile.TabIndex = 5; - this.buttonOpenFile.Text = "..."; this.buttonOpenFile.UseVisualStyleBackColor = false; this.buttonOpenFile.Click += new System.EventHandler(this.buttonOpenFile_Click); // // textBox1 // - this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) - | System.Windows.Forms.AnchorStyles.Right))); - this.textBox1.Location = new System.Drawing.Point(80, 9); + resources.ApplyResources(this.textBox1, "textBox1"); this.textBox1.Name = "textBox1"; this.textBox1.ReadOnly = true; - this.textBox1.Size = new System.Drawing.Size(339, 20); - this.textBox1.TabIndex = 4; // // lblDescription // - this.lblDescription.AutoSize = true; - this.lblDescription.Location = new System.Drawing.Point(3, 12); + resources.ApplyResources(this.lblDescription, "lblDescription"); this.lblDescription.Name = "lblDescription"; - this.lblDescription.Size = new System.Drawing.Size(49, 13); - this.lblDescription.TabIndex = 3; - this.lblDescription.Text = "Filename"; // // openFileDialog // - this.openFileDialog.Filter = "Shape files |*.shp"; + this.openFileDialog.Filter = global::Core.Common.Controls.Swf.Properties.Resources.Shape_files_filter; // // labelErrorMessage // - this.labelErrorMessage.AutoSize = true; - this.labelErrorMessage.Dock = System.Windows.Forms.DockStyle.Bottom; - this.labelErrorMessage.Location = new System.Drawing.Point(0, 211); + resources.ApplyResources(this.labelErrorMessage, "labelErrorMessage"); this.labelErrorMessage.Name = "labelErrorMessage"; - this.labelErrorMessage.Size = new System.Drawing.Size(0, 13); - this.labelErrorMessage.TabIndex = 3; // // SelectFileWizardPage // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + resources.ApplyResources(this, "$this"); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.Transparent; this.Controls.Add(this.buttonOpenFile); this.Controls.Add(this.textBox1); this.Controls.Add(this.labelErrorMessage); this.Controls.Add(this.lblDescription); this.Name = "SelectFileWizardPage"; - this.Size = new System.Drawing.Size(464, 224); this.ResumeLayout(false); this.PerformLayout(); Index: Core/Common/src/Core.Common.Controls.Swf/WizardPages/SelectFileWizardPage.resx =================================================================== diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Controls.Swf/WizardPages/SelectFileWizardPage.resx (.../SelectFileWizardPage.resx) (revision a950714ad9510756331d862aa35695fa0b2ed03b) +++ Core/Common/src/Core.Common.Controls.Swf/WizardPages/SelectFileWizardPage.resx (.../SelectFileWizardPage.resx) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -117,10 +117,139 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Top, Right + + + + 437, 8 + + + 27, 23 + + + + 5 + + + ... + + + buttonOpenFile + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + Top, Left, Right + + + 86, 9 + + + 333, 20 + + + 4 + + + textBox1 + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 1 + + + True + + + 3, 12 + + + 77, 13 + + + 3 + + + Bestandsnaam + + + lblDescription + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 3 + 17, 17 + + True + + + Bottom + + + 0, 211 + + + 0, 13 + + + 3 + + + labelErrorMessage + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 2 + + + True + 58 + + 6, 13 + + + 464, 224 + + + openFileDialog + + + System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + SelectFileWizardPage + + + System.Windows.Forms.UserControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + \ No newline at end of file Index: Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Gui/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -80,15 +80,6 @@ } /// - /// Looks up a localized string similar to Alle bestanden (*.*)|*.*. - /// - public static string AllFilesFilter { - get { - return ResourceManager.GetString("AllFilesFilter", resourceCulture); - } - } - - /// /// Looks up a localized string similar to "Ringtoets" wordt gestart.... /// public static string App_App_Starting_Ringtoets____ { Index: Core/Common/src/Core.Common.Gui/Properties/Resources.resx =================================================================== diff -u -rd6de3bdcd7e2211019e39ddf883926fb8d7b13bd -rf43e90a16e94b36691e0ebb8e9ffa5989678b093 --- Core/Common/src/Core.Common.Gui/Properties/Resources.resx (.../Resources.resx) (revision d6de3bdcd7e2211019e39ddf883926fb8d7b13bd) +++ Core/Common/src/Core.Common.Gui/Properties/Resources.resx (.../Resources.resx) (revision f43e90a16e94b36691e0ebb8e9ffa5989678b093) @@ -308,9 +308,6 @@ ..\Resources\chart_curve.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - Alle bestanden (*.*)|*.* - niet gedefinieerd