diff --git a/minisqlquery-master/src/MiniSqlQuery/MainForm.cs b/minisqlquery-master/src/MiniSqlQuery/MainForm.cs
index 835ee33..0cdb7ae 100644
--- a/minisqlquery-master/src/MiniSqlQuery/MainForm.cs
+++ b/minisqlquery-master/src/MiniSqlQuery/MainForm.cs
@@ -228,11 +228,11 @@ namespace MiniSqlQuery
{
if (count.Value == 1)
{
- result = "1 row";
+ result = "1 ��";
}
else
{
- result = count.Value + " rows";
+ result = count.Value + " ��";
}
}
@@ -256,7 +256,7 @@ namespace MiniSqlQuery
if (frm == null)
{
throw new InvalidOperationException(
- "The 'databaseInspector' must be a 'WeifenLuo.WinFormsUI.Docking.DockContent' based form.");
+ "��databaseInspector�������ǡ�WeifenLuo����WinFormsUI���Խӡ�����DockContent�ı����");
}
frm.Show(dockPanel, dockState);
@@ -417,7 +417,7 @@ namespace MiniSqlQuery
/// <param name="connectionName">The connection name.</param>
private void SetWindowTitle(string connectionName)
{
- Text = string.Format("Mini SQL Query [{0}]", connectionName);
+ Text = string.Format("����SQL��ѯ [{0}]", connectionName);
}
/// <summary>The window drag drop.</summary>