Index: Core/Common/src/Core.Common.Controls.Swf/Charting/Chart.cs
===================================================================
diff -u -r125002b7df54bc7ec7190146cd9b23458999c60e -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/src/Core.Common.Controls.Swf/Charting/Chart.cs (.../Chart.cs) (revision 125002b7df54bc7ec7190146cd9b23458999c60e)
+++ Core/Common/src/Core.Common.Controls.Swf/Charting/Chart.cs (.../Chart.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -5,6 +5,7 @@
using System.Linq;
using System.Windows.Forms;
using Core.Common.Controls.Swf.Charting.Series;
+using Core.Common.Controls.Swf.Properties;
using Core.Common.Utils.Aop;
using Core.Common.Utils.Collections;
using Core.Common.Utils.Collections.Generic;
@@ -230,7 +231,7 @@
{
if (string.IsNullOrEmpty(filename))
{
- throw new ArgumentException("Argument should not be null", "filename");
+ throw new ArgumentException(Resources.Chart_ExportAsImage_Argument_should_not_be_null, "filename");
}
var dir = Path.GetDirectoryName(filename);
@@ -239,12 +240,12 @@
if (string.IsNullOrEmpty(ext))
{
- throw new ArgumentException("Argument should have an extension", "filename");
+ throw new ArgumentException(Resources.Chart_ExportAsImage_Argument_should_have_an_extension, "filename");
}
if (string.IsNullOrEmpty(filenameWithoutExtension))
{
- throw new ArgumentException("Argument did not contain a filename", "filename");
+ throw new ArgumentException(Resources.Chart_ExportAsImage_Argument_did_not_contain_a_filename, "filename");
}
if (ext == ".svg")
Index: Core/Common/src/Core.Common.Controls.Swf/ExportImageHelper.cs
===================================================================
diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/src/Core.Common.Controls.Swf/ExportImageHelper.cs (.../ExportImageHelper.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b)
+++ Core/Common/src/Core.Common.Controls.Swf/ExportImageHelper.cs (.../ExportImageHelper.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -5,6 +5,7 @@
using System.Linq;
using System.Text;
using System.Windows.Forms;
+using Core.Common.Controls.Swf.Properties;
namespace Core.Common.Controls.Swf
{
@@ -62,7 +63,7 @@
Filter = filter,
FilterIndex = 1,
RestoreDirectory = true,
- Title = "Export as image"
+ Title = Resources.ExportImageHelper_ExportWithDialog_Export_as_image
};
if (saveFileDialog.ShowDialog() != DialogResult.OK)
Index: Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.Designer.cs
===================================================================
diff -u -ra8968c8a87f7a864c7451c09e5bff6b6fedf98cc -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision a8968c8a87f7a864c7451c09e5bff6b6fedf98cc)
+++ Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -71,6 +71,33 @@
}
///
+ /// Looks up a localized string similar to Argument bevat geen bestandsnaam.
+ ///
+ internal static string Chart_ExportAsImage_Argument_did_not_contain_a_filename {
+ get {
+ return ResourceManager.GetString("Chart_ExportAsImage_Argument_did_not_contain_a_filename", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Bestandsnaam moet een extensie hebben..
+ ///
+ internal static string Chart_ExportAsImage_Argument_should_have_an_extension {
+ get {
+ return ResourceManager.GetString("Chart_ExportAsImage_Argument_should_have_an_extension", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Argument kan niet de waarde 'null' hebben.
+ ///
+ internal static string Chart_ExportAsImage_Argument_should_not_be_null {
+ get {
+ return ResourceManager.GetString("Chart_ExportAsImage_Argument_should_not_be_null", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap computer {
@@ -161,6 +188,15 @@
}
///
+ /// Looks up a localized string similar to Exporteer als afbeelding.
+ ///
+ internal static string ExportImageHelper_ExportWithDialog_Export_as_image {
+ get {
+ return ResourceManager.GetString("ExportImageHelper_ExportWithDialog_Export_as_image", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap folder {
@@ -250,6 +286,42 @@
}
///
+ /// Looks up a localized string similar to Kopiëren.
+ ///
+ internal static string TableView_ConfigureContextMenu_Copy {
+ get {
+ return ResourceManager.GetString("TableView_ConfigureContextMenu_Copy", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Verwijderen.
+ ///
+ internal static string TableView_ConfigureContextMenu_Delete {
+ get {
+ return ResourceManager.GetString("TableView_ConfigureContextMenu_Delete", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to Plakken.
+ ///
+ internal static string TableView_ConfigureContextMenu_Paste {
+ get {
+ return ResourceManager.GetString("TableView_ConfigureContextMenu_Paste", resourceCulture);
+ }
+ }
+
+ ///
+ /// Looks up a localized string similar to nieuwe Tabel.
+ ///
+ internal static string TableView_TableView_new_Table {
+ get {
+ return ResourceManager.GetString("TableView_TableView_new_Table", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized resource of type System.Drawing.Bitmap.
///
internal static System.Drawing.Bitmap tick {
Index: Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.resx
===================================================================
diff -u -r67e117952bef2b1524aebb434c654c2c9be77dbd -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.resx (.../Resources.resx) (revision 67e117952bef2b1524aebb434c654c2c9be77dbd)
+++ Core/Common/src/Core.Common.Controls.Swf/Properties/Resources.resx (.../Resources.resx) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -178,4 +178,28 @@
..\Resources\funnel--minus.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ Argument kan niet de waarde 'null' hebben
+
+
+ Bestandsnaam moet een extensie hebben.
+
+
+ Argument bevat geen bestandsnaam
+
+
+ Exporteer als afbeelding
+
+
+ nieuwe Tabel
+
+
+ Kopiëren
+
+
+ Plakken
+
+
+ Verwijderen
+
\ No newline at end of file
Index: Core/Common/src/Core.Common.Controls.Swf/Table/TableView.cs
===================================================================
diff -u -r22469012664426d8196f8cd350cde57a8a50bc70 -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/src/Core.Common.Controls.Swf/Table/TableView.cs (.../TableView.cs) (revision 22469012664426d8196f8cd350cde57a8a50bc70)
+++ Core/Common/src/Core.Common.Controls.Swf/Table/TableView.cs (.../TableView.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -86,7 +86,7 @@
dxGridView.OptionsBehavior.CopyToClipboardWithColumnHeaders = false; //mimic behavior of 8.2
GridLocalizer.Active = new TableViewExceptionMessageController();
- Text = "new Table";
+ Text = Resources.TableView_TableView_new_Table;
ReadOnlyCellForeColor = Color.Black; //just use black as a default to increase readability
ReadOnlyCellBackColor = Color.FromArgb(255, 244, 244, 244);
@@ -2485,15 +2485,15 @@
{
var btnCopy = new ToolStripMenuItem
{
- Name = "btnCopy", Image = Resources.CopyHS, Size = new Size(116, 22), Text = "Copy", Tag = "btnCopy"
+ Name = "btnCopy", Image = Resources.CopyHS, Size = new Size(116, 22), Text = Resources.TableView_ConfigureContextMenu_Copy, Tag = "btnCopy"
};
var btnPaste = new ToolStripMenuItem
{
- Name = "btnPaste", Image = Resources.PasteHS, Size = new Size(116, 22), Text = "Paste", Tag = "btnPaste"
+ Name = "btnPaste", Image = Resources.PasteHS, Size = new Size(116, 22), Text = Resources.TableView_ConfigureContextMenu_Paste, Tag = "btnPaste"
};
var btnDelete = new ToolStripMenuItem
{
- Name = "btnDelete", Image = Resources.DeleteHS1, Size = new Size(116, 22), Text = "Delete", Tag = "btnDelete"
+ Name = "btnDelete", Image = Resources.DeleteHS1, Size = new Size(116, 22), Text = Resources.TableView_ConfigureContextMenu_Delete, Tag = "btnDelete"
};
btnCopy.Click += delegate { CopySelectionToClipboard(); };
Index: Core/Common/src/Core.Common.Utils/Collections/EnumerableExtensions.cs
===================================================================
diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/src/Core.Common.Utils/Collections/EnumerableExtensions.cs (.../EnumerableExtensions.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b)
+++ Core/Common/src/Core.Common.Utils/Collections/EnumerableExtensions.cs (.../EnumerableExtensions.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -1,7 +1,9 @@
using System;
using System.Collections;
using System.Collections.Generic;
+using System.Globalization;
using System.Linq;
+using Core.Common.Utils.Properties;
namespace Core.Common.Utils.Collections
{
@@ -87,7 +89,7 @@
{
if (groupSize <= 0)
{
- throw new ArgumentException("GroupSize must be greater than 0", "groupSize");
+ throw new ArgumentException(Resource.EnumerableExtensions_SplitInGroups_GroupSize_must_be_greater_than_0, "groupSize");
}
var countSoFar = 0;
@@ -128,7 +130,7 @@
public static string ConvertToString(this IEnumerable values)
{
- return String.Join(",", values.Select(v => v.ToString()).ToArray());
+ return String.Join(CultureInfo.CurrentCulture.TextInfo.ListSeparator, values.Select(v => v.ToString()).ToArray());
}
public static IEnumerable QuickSort(this IEnumerable list)
Index: Core/Common/src/Core.Common.Utils/IO/ZipFileUtils.cs
===================================================================
diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/src/Core.Common.Utils/IO/ZipFileUtils.cs (.../ZipFileUtils.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b)
+++ Core/Common/src/Core.Common.Utils/IO/ZipFileUtils.cs (.../ZipFileUtils.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.IO;
+using Core.Common.Utils.Properties;
using ICSharpCode.SharpZipLib.Zip;
namespace Core.Common.Utils.IO
@@ -158,9 +159,11 @@
}
// Ensure a reasonable size of buffer is used without being prohibitive.
- if (buffer.Length < 128)
+ var minimumBufferSize = 128;
+ if (buffer.Length < minimumBufferSize)
{
- throw new ArgumentException("Buffer is too small", "buffer");
+ var exceptionMessage = string.Format(Resource.ZipFileUtils_StreamUtilsCopy_Buffer_is_too_small_Should_be_at_least_0_, minimumBufferSize);
+ throw new ArgumentException(exceptionMessage, "buffer");
}
bool copying = true;
Index: Core/Common/src/Core.Common.Utils/Properties/Resource.Designer.cs
===================================================================
diff -u -r67e117952bef2b1524aebb434c654c2c9be77dbd -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/src/Core.Common.Utils/Properties/Resource.Designer.cs (.../Resource.Designer.cs) (revision 67e117952bef2b1524aebb434c654c2c9be77dbd)
+++ Core/Common/src/Core.Common.Utils/Properties/Resource.Designer.cs (.../Resource.Designer.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -61,6 +61,15 @@
}
///
+ /// Looks up a localized string similar to Parameter 'GroupSize' moet groter zijn dan 0.
+ ///
+ internal static string EnumerableExtensions_SplitInGroups_GroupSize_must_be_greater_than_0 {
+ get {
+ return ResourceManager.GetString("EnumerableExtensions_SplitInGroups_GroupSize_must_be_greater_than_0", resourceCulture);
+ }
+ }
+
+ ///
/// Looks up a localized string similar to Geprobeerd te vervangen "features" in "feature spatial data", maar kon "feature" niet vinden in de oorspronkelijke "context": {0}.
///
internal static string ObjectHelper_CouldNotFindFeatureInOriginalContext {
@@ -86,5 +95,14 @@
return ResourceManager.GetString("strTill", resourceCulture);
}
}
+
+ ///
+ /// Looks up a localized string similar to De buffer is te klein: buffer moet minstens {0} byte groot zijn..
+ ///
+ internal static string ZipFileUtils_StreamUtilsCopy_Buffer_is_too_small_Should_be_at_least_0_ {
+ get {
+ return ResourceManager.GetString("ZipFileUtils_StreamUtilsCopy_Buffer_is_too_small_Should_be_at_least_0_", resourceCulture);
+ }
+ }
}
}
Index: Core/Common/src/Core.Common.Utils/Properties/Resource.resx
===================================================================
diff -u -r67e117952bef2b1524aebb434c654c2c9be77dbd -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/src/Core.Common.Utils/Properties/Resource.resx (.../Resource.resx) (revision 67e117952bef2b1524aebb434c654c2c9be77dbd)
+++ Core/Common/src/Core.Common.Utils/Properties/Resource.resx (.../Resource.resx) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -126,4 +126,10 @@
Geprobeerd te vervangen "features" in "feature spatial data", maar kon "feature" niet vinden in de oorspronkelijke "context": {0}
+
+ Parameter 'GroupSize' moet groter zijn dan 0
+
+
+ De buffer is te klein: buffer moet minstens {0} byte groot zijn.
+
\ No newline at end of file
Index: Core/Common/test/Core.Common.Base.Tests/Controls/Swf/FindAndReplaceControlTest.cs
===================================================================
diff -u -r3debb2835679b29531ce363c17d5fde650cbdca3 -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/test/Core.Common.Base.Tests/Controls/Swf/FindAndReplaceControlTest.cs (.../FindAndReplaceControlTest.cs) (revision 3debb2835679b29531ce363c17d5fde650cbdca3)
+++ Core/Common/test/Core.Common.Base.Tests/Controls/Swf/FindAndReplaceControlTest.cs (.../FindAndReplaceControlTest.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -24,7 +24,7 @@
HighLightText = t => Assert.AreEqual("Test", t)
};
- findAndReplaceControl.FindTextBox.Text = "Test";
+ findAndReplaceControl.FindTextBox.Text = @"Test";
TypeUtils.CallPrivateMethod(findAndReplaceControl, "FindNext");
}
@@ -48,11 +48,17 @@
Assert.AreEqual(23, start);
Assert.AreEqual(4, length);
},
- HighLightText = t => Assert.AreEqual("Test", t)
+ HighLightText = t => Assert.AreEqual("Test", t),
+ FindTextBox =
+ {
+ Text = @"Test"
+ },
+ ReplaceTextBox =
+ {
+ Text = @"New test"
+ }
};
- findAndReplaceControl.FindTextBox.Text = "Test";
- findAndReplaceControl.ReplaceTextBox.Text = "New test";
// replace second "Test" occurrence (index 11) with "New test"
TypeUtils.CallPrivateMethod(findAndReplaceControl, "Replace");
Index: Core/Common/test/Core.Common.Base.Tests/Controls/Swf/TreeViewControls/TreeViewTest.cs
===================================================================
diff -u -r3debb2835679b29531ce363c17d5fde650cbdca3 -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/test/Core.Common.Base.Tests/Controls/Swf/TreeViewControls/TreeViewTest.cs (.../TreeViewTest.cs) (revision 3debb2835679b29531ce363c17d5fde650cbdca3)
+++ Core/Common/test/Core.Common.Base.Tests/Controls/Swf/TreeViewControls/TreeViewTest.cs (.../TreeViewTest.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -342,7 +342,7 @@
return stopwatch.ElapsedMilliseconds;
};
- Console.WriteLine("Elapsed time to perform action without tree view: " + processingAction());
+ Console.WriteLine(@"Elapsed time to perform action without tree view: " + processingAction());
var treeView = new TreeView
{
@@ -363,12 +363,12 @@
stopwatch.Start();
elapsedMillisecondsWithTreeView = processingAction();
- Console.WriteLine("Elapsed time to perform action with tree view: " + elapsedMillisecondsWithTreeView);
+ Console.WriteLine(@"Elapsed time to perform action with tree view: " + elapsedMillisecondsWithTreeView);
treeView.WaitUntilAllEventsAreProcessed();
stopwatch.Stop();
- Console.WriteLine("Elapsed time to refresh tree view: " + stopwatch.ElapsedMilliseconds);
+ Console.WriteLine(@"Elapsed time to refresh tree view: " + stopwatch.ElapsedMilliseconds);
};
WindowsFormsTestHelper.ShowModal(treeView, onShow);
Index: Core/Common/test/Core.Common.TestUtils/GuiTestHelper.cs
===================================================================
diff -u -r019659033f11f75408fd860bdca238616244491a -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/test/Core.Common.TestUtils/GuiTestHelper.cs (.../GuiTestHelper.cs) (revision 019659033f11f75408fd860bdca238616244491a)
+++ Core/Common/test/Core.Common.TestUtils/GuiTestHelper.cs (.../GuiTestHelper.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -152,7 +152,7 @@
{
public DialogResult Show(string text, string caption, MessageBoxButtons buttons)
{
- Console.WriteLine("MessageBox: " + caption + ". " + text);
+ Console.WriteLine(@"MessageBox: {0}. {1}",caption,text);
if (buttons == MessageBoxButtons.YesNoCancel || buttons == MessageBoxButtons.YesNo)
{
Index: Core/Common/test/Core.Common.TestUtils/TestHelper.cs
===================================================================
diff -u -rf1c02b2d47dc561deec70a24128d8dd49d9bed6a -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/test/Core.Common.TestUtils/TestHelper.cs (.../TestHelper.cs) (revision f1c02b2d47dc561deec70a24128d8dd49d9bed6a)
+++ Core/Common/test/Core.Common.TestUtils/TestHelper.cs (.../TestHelper.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -398,18 +398,18 @@
{
if (!includeCharts)
{
- File.AppendAllText(path, "View with charts
");
+ File.AppendAllText(path, @"View with charts
");
}
if (machineRank != 1.0f)
{
- File.AppendAllText(path, "Machine performance rank (multiplier):" + machineRank + "
");
- File.AppendAllText(path, "Time is in milliseconds
");
+ File.AppendAllText(path, String.Format("Machine performance rank (multiplier):{0}
", machineRank));
+ File.AppendAllText(path, @"Time is in milliseconds
");
File.AppendAllText(path, String.Format("\n| Time | Name | {0}MaxTime | ActualTime | RankedActualTime | Percentage |
", includeCharts ? "Chart | " : ""));
}
else
{
- File.AppendAllText(path, "Time is in milliseconds
");
+ File.AppendAllText(path, @"Time is in milliseconds
");
File.AppendAllText(path, String.Format("\n| Time | Name | {0}MaxTime | ActualTime | Percentage |
", includeCharts ? "Chart | " : ""));
}
}
Index: Core/Common/test/Core.Common.TestUtils/WpfTestHelper.xaml.cs
===================================================================
diff -u -ra950714ad9510756331d862aa35695fa0b2ed03b -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/test/Core.Common.TestUtils/WpfTestHelper.xaml.cs (.../WpfTestHelper.xaml.cs) (revision a950714ad9510756331d862aa35695fa0b2ed03b)
+++ Core/Common/test/Core.Common.TestUtils/WpfTestHelper.xaml.cs (.../WpfTestHelper.xaml.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -95,7 +95,7 @@
private static void WindowOnClosed(object sender, EventArgs eventArgs)
{
- Console.WriteLine("Closed");
+ Console.WriteLine(@"Closed");
}
private void ThrowIfPropertyObjectsContainsActionDueToLikelyMisuse(object[] propertyObjects)
Index: Core/Common/test/Core.Common.Tests/Gui/Forms/AvalonDockDockingManagerTest.cs
===================================================================
diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/test/Core.Common.Tests/Gui/Forms/AvalonDockDockingManagerTest.cs (.../AvalonDockDockingManagerTest.cs) (revision eee6c7815d1e418eac38c1c552fb279c0887ef55)
+++ Core/Common/test/Core.Common.Tests/Gui/Forms/AvalonDockDockingManagerTest.cs (.../AvalonDockDockingManagerTest.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -28,7 +28,7 @@
var layout = TypeUtils.CallPrivateMethod(dock, "GetLayoutContent", view);
Assert.AreEqual("", layout.Title);
- view.Text = "Test";
+ view.Text = @"Test";
Assert.AreEqual("Test", layout.Title);
}
Index: Core/Common/test/Core.Common.Tests/Gui/ViewListTest.cs
===================================================================
diff -u -reee6c7815d1e418eac38c1c552fb279c0887ef55 -r6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845
--- Core/Common/test/Core.Common.Tests/Gui/ViewListTest.cs (.../ViewListTest.cs) (revision eee6c7815d1e418eac38c1c552fb279c0887ef55)
+++ Core/Common/test/Core.Common.Tests/Gui/ViewListTest.cs (.../ViewListTest.cs) (revision 6a3a7c7e3442a1c99598c8f0fe7bd95062bc8845)
@@ -24,7 +24,7 @@
var view = new ToolWindowTestControl
{
- Text = "text"
+ Text = @"text"
};
var senders = new List